##// END OF EJS Templates
packaging: updated JS dependencies with new node2nix and nodejs12
marcink -
r4762:b514ae27 python3
parent child Browse files
Show More
@@ -1,72 +1,72 b''
1
1
2 .PHONY: clean docs docs-clean docs-cleanup test test-clean test-only test-only-postgres test-only-mysql web-build generate-pkgs pip-packages build-nix
2 .PHONY: clean docs docs-clean docs-cleanup test test-clean test-only test-only-postgres test-only-mysql web-build generate-pkgs pip-packages build-nix
3
3
4 NODE_PATH=./node_modules
4 NODE_PATH=./node_modules
5 WEBPACK=./node_binaries/webpack
5 WEBPACK=./node_binaries/webpack
6 GRUNT=./node_binaries/grunt
6 GRUNT=./node_binaries/grunt
7 # set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py
7 # set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py
8 OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES}
8 OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES}
9
9
10 clean:
10 clean:
11 make test-clean
11 make test-clean
12 find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
12 find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
13
13
14 test:
14 test:
15 make test-clean
15 make test-clean
16 make test-only
16 make test-only
17
17
18 test-clean:
18 test-clean:
19 rm -rf coverage.xml htmlcov junit.xml pylint.log result
19 rm -rf coverage.xml htmlcov junit.xml pylint.log result
20 find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';'
20 find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';'
21 find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';'
21 find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';'
22
22
23 test-only:
23 test-only:
24 PYTHONHASHSEED=random \
24 PYTHONHASHSEED=random \
25 py.test -x -vv -r xw -p no:sugar --cov=rhodecode \
25 py.test -x -vv -r xw -p no:sugar --cov=rhodecode \
26 --cov-report=term-missing --cov-report=html \
26 --cov-report=term-missing --cov-report=html \
27 rhodecode
27 rhodecode
28
28
29 test-only-mysql:
29 test-only-mysql:
30 PYTHONHASHSEED=random \
30 PYTHONHASHSEED=random \
31 py.test -x -vv -r xw -p no:sugar --cov=rhodecode \
31 py.test -x -vv -r xw -p no:sugar --cov=rhodecode \
32 --cov-report=term-missing --cov-report=html \
32 --cov-report=term-missing --cov-report=html \
33 --ini-config-override='{"app:main": {"sqlalchemy.db1.url": "mysql://root:qweqwe@localhost/rhodecode_test?charset=utf8"}}' \
33 --ini-config-override='{"app:main": {"sqlalchemy.db1.url": "mysql://root:qweqwe@localhost/rhodecode_test?charset=utf8"}}' \
34 rhodecode
34 rhodecode
35
35
36 test-only-postgres:
36 test-only-postgres:
37 PYTHONHASHSEED=random \
37 PYTHONHASHSEED=random \
38 py.test -x -vv -r xw -p no:sugar --cov=rhodecode \
38 py.test -x -vv -r xw -p no:sugar --cov=rhodecode \
39 --cov-report=term-missing --cov-report=html \
39 --cov-report=term-missing --cov-report=html \
40 --ini-config-override='{"app:main": {"sqlalchemy.db1.url": "postgresql://postgres:qweqwe@localhost/rhodecode_test"}}' \
40 --ini-config-override='{"app:main": {"sqlalchemy.db1.url": "postgresql://postgres:qweqwe@localhost/rhodecode_test"}}' \
41 rhodecode
41 rhodecode
42
42
43
43
44 docs:
44 docs:
45 (cd docs; nix-build default.nix -o result; make clean html)
45 (cd docs; nix-build default.nix -o result; make clean html)
46
46
47 docs-clean:
47 docs-clean:
48 (cd docs; make clean)
48 (cd docs; make clean)
49
49
50 docs-cleanup:
50 docs-cleanup:
51 (cd docs; make cleanup)
51 (cd docs; make cleanup)
52
52
53 web-build:
53 web-build:
54 NODE_PATH=$(NODE_PATH) $(GRUNT)
54 NODE_PATH=$(NODE_PATH) $(GRUNT)
55
55
56 generate-pkgs:
56 generate-pkgs:
57 nix-shell pkgs/shell-generate.nix --command "pip2nix generate --licenses --no-binary :all:"
57 nix-shell pkgs/shell-generate.nix --command "pip2nix generate --licenses --no-binary :all:"
58
58
59 pip-packages:
59 pip-packages:
60 python ${OUTDATED_PACKAGES}
60 python ${OUTDATED_PACKAGES}
61
61
62 generate-js-pkgs:
62 generate-js-pkgs:
63 rm -rf node_modules && \
63 rm -rf node_modules && \
64 nix-shell pkgs/shell-generate.nix --command "node2nix --input package.json -o pkgs/node-packages.nix -e pkgs/node-env.nix -c pkgs/node-default.nix -d --flatten --nodejs-8" && \
64 nix-shell pkgs/shell-generate.nix --command "node2nix --input package.json -o pkgs/node-packages.nix -e pkgs/node-env.nix -c pkgs/node-default.nix -d --flatten --nodejs-12" && \
65 sed -i -e 's/http:\/\//https:\/\//g' pkgs/node-packages.nix
65 sed -i -e 's/http:\/\//https:\/\//g' pkgs/node-packages.nix
66
66
67 generate-license-meta:
67 generate-license-meta:
68 nix-build pkgs/license-generate.nix -o result-license && \
68 nix-build pkgs/license-generate.nix -o result-license && \
69 cat result-license/licenses.json | python -m json.tool > rhodecode/config/licenses.json
69 cat result-license/licenses.json | python -m json.tool > rhodecode/config/licenses.json
70
70
71 build-nix:
71 build-nix:
72 nix-build --show-trace --option sandbox false --option max-jobs 4 --option cores 4
72 nix-build --show-trace --option sandbox false --option max-jobs 4 --option cores 4
@@ -1,542 +1,542 b''
1 # This file originates from node2nix
1 # This file originates from node2nix
2
2
3 {stdenv, nodejs, python2, utillinux, libtool, runCommand, writeTextFile}:
3 {stdenv, nodejs, python2, utillinux, libtool, runCommand, writeTextFile}:
4
4
5 let
5 let
6 python = if nodejs ? python then nodejs.python else python2;
6 python = if nodejs ? python then nodejs.python else python2;
7
7
8 # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
8 # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
9 tarWrapper = runCommand "tarWrapper" {} ''
9 tarWrapper = runCommand "tarWrapper" {} ''
10 mkdir -p $out/bin
10 mkdir -p $out/bin
11
11
12 cat > $out/bin/tar <<EOF
12 cat > $out/bin/tar <<EOF
13 #! ${stdenv.shell} -e
13 #! ${stdenv.shell} -e
14 $(type -p tar) "\$@" --warning=no-unknown-keyword
14 $(type -p tar) "\$@" --warning=no-unknown-keyword --delay-directory-restore
15 EOF
15 EOF
16
16
17 chmod +x $out/bin/tar
17 chmod +x $out/bin/tar
18 '';
18 '';
19
19
20 # Function that generates a TGZ file from a NPM project
20 # Function that generates a TGZ file from a NPM project
21 buildNodeSourceDist =
21 buildNodeSourceDist =
22 { name, version, src, ... }:
22 { name, version, src, ... }:
23
23
24 stdenv.mkDerivation {
24 stdenv.mkDerivation {
25 name = "node-tarball-${name}-${version}";
25 name = "node-tarball-${name}-${version}";
26 inherit src;
26 inherit src;
27 buildInputs = [ nodejs ];
27 buildInputs = [ nodejs ];
28 buildPhase = ''
28 buildPhase = ''
29 export HOME=$TMPDIR
29 export HOME=$TMPDIR
30 tgzFile=$(npm pack | tail -n 1) # Hooks to the pack command will add output (https://docs.npmjs.com/misc/scripts)
30 tgzFile=$(npm pack | tail -n 1) # Hooks to the pack command will add output (https://docs.npmjs.com/misc/scripts)
31 '';
31 '';
32 installPhase = ''
32 installPhase = ''
33 mkdir -p $out/tarballs
33 mkdir -p $out/tarballs
34 mv $tgzFile $out/tarballs
34 mv $tgzFile $out/tarballs
35 mkdir -p $out/nix-support
35 mkdir -p $out/nix-support
36 echo "file source-dist $out/tarballs/$tgzFile" >> $out/nix-support/hydra-build-products
36 echo "file source-dist $out/tarballs/$tgzFile" >> $out/nix-support/hydra-build-products
37 '';
37 '';
38 };
38 };
39
39
40 includeDependencies = {dependencies}:
40 includeDependencies = {dependencies}:
41 stdenv.lib.optionalString (dependencies != [])
41 stdenv.lib.optionalString (dependencies != [])
42 (stdenv.lib.concatMapStrings (dependency:
42 (stdenv.lib.concatMapStrings (dependency:
43 ''
43 ''
44 # Bundle the dependencies of the package
44 # Bundle the dependencies of the package
45 mkdir -p node_modules
45 mkdir -p node_modules
46 cd node_modules
46 cd node_modules
47
47
48 # Only include dependencies if they don't exist. They may also be bundled in the package.
48 # Only include dependencies if they don't exist. They may also be bundled in the package.
49 if [ ! -e "${dependency.name}" ]
49 if [ ! -e "${dependency.name}" ]
50 then
50 then
51 ${composePackage dependency}
51 ${composePackage dependency}
52 fi
52 fi
53
53
54 cd ..
54 cd ..
55 ''
55 ''
56 ) dependencies);
56 ) dependencies);
57
57
58 # Recursively composes the dependencies of a package
58 # Recursively composes the dependencies of a package
59 composePackage = { name, packageName, src, dependencies ? [], ... }@args:
59 composePackage = { name, packageName, src, dependencies ? [], ... }@args:
60 ''
60 builtins.addErrorContext "while evaluating node package '${packageName}'" ''
61 DIR=$(pwd)
61 DIR=$(pwd)
62 cd $TMPDIR
62 cd $TMPDIR
63
63
64 unpackFile ${src}
64 unpackFile ${src}
65
65
66 # Make the base dir in which the target dependency resides first
66 # Make the base dir in which the target dependency resides first
67 mkdir -p "$(dirname "$DIR/${packageName}")"
67 mkdir -p "$(dirname "$DIR/${packageName}")"
68
68
69 if [ -f "${src}" ]
69 if [ -f "${src}" ]
70 then
70 then
71 # Figure out what directory has been unpacked
71 # Figure out what directory has been unpacked
72 packageDir="$(find . -maxdepth 1 -type d | tail -1)"
72 packageDir="$(find . -maxdepth 1 -type d | tail -1)"
73
73
74 # Restore write permissions to make building work
74 # Restore write permissions to make building work
75 find "$packageDir" -type d -print0 | xargs -0 chmod u+x
75 find "$packageDir" -type d -exec chmod u+x {} \;
76 chmod -R u+w "$packageDir"
76 chmod -R u+w "$packageDir"
77
77
78 # Move the extracted tarball into the output folder
78 # Move the extracted tarball into the output folder
79 mv "$packageDir" "$DIR/${packageName}"
79 mv "$packageDir" "$DIR/${packageName}"
80 elif [ -d "${src}" ]
80 elif [ -d "${src}" ]
81 then
81 then
82 # Get a stripped name (without hash) of the source directory.
82 # Get a stripped name (without hash) of the source directory.
83 # On old nixpkgs it's already set internally.
83 # On old nixpkgs it's already set internally.
84 if [ -z "$strippedName" ]
84 if [ -z "$strippedName" ]
85 then
85 then
86 strippedName="$(stripHash ${src})"
86 strippedName="$(stripHash ${src})"
87 fi
87 fi
88
88
89 # Restore write permissions to make building work
89 # Restore write permissions to make building work
90 chmod -R u+w "$strippedName"
90 chmod -R u+w "$strippedName"
91
91
92 # Move the extracted directory into the output folder
92 # Move the extracted directory into the output folder
93 mv "$strippedName" "$DIR/${packageName}"
93 mv "$strippedName" "$DIR/${packageName}"
94 fi
94 fi
95
95
96 # Unset the stripped name to not confuse the next unpack step
96 # Unset the stripped name to not confuse the next unpack step
97 unset strippedName
97 unset strippedName
98
98
99 # Include the dependencies of the package
99 # Include the dependencies of the package
100 cd "$DIR/${packageName}"
100 cd "$DIR/${packageName}"
101 ${includeDependencies { inherit dependencies; }}
101 ${includeDependencies { inherit dependencies; }}
102 cd ..
102 cd ..
103 ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
103 ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
104 '';
104 '';
105
105
106 pinpointDependencies = {dependencies, production}:
106 pinpointDependencies = {dependencies, production}:
107 let
107 let
108 pinpointDependenciesFromPackageJSON = writeTextFile {
108 pinpointDependenciesFromPackageJSON = writeTextFile {
109 name = "pinpointDependencies.js";
109 name = "pinpointDependencies.js";
110 text = ''
110 text = ''
111 var fs = require('fs');
111 var fs = require('fs');
112 var path = require('path');
112 var path = require('path');
113
113
114 function resolveDependencyVersion(location, name) {
114 function resolveDependencyVersion(location, name) {
115 if(location == process.env['NIX_STORE']) {
115 if(location == process.env['NIX_STORE']) {
116 return null;
116 return null;
117 } else {
117 } else {
118 var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json");
118 var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json");
119
119
120 if(fs.existsSync(dependencyPackageJSON)) {
120 if(fs.existsSync(dependencyPackageJSON)) {
121 var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON));
121 var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON));
122
122
123 if(dependencyPackageObj.name == name) {
123 if(dependencyPackageObj.name == name) {
124 return dependencyPackageObj.version;
124 return dependencyPackageObj.version;
125 }
125 }
126 } else {
126 } else {
127 return resolveDependencyVersion(path.resolve(location, ".."), name);
127 return resolveDependencyVersion(path.resolve(location, ".."), name);
128 }
128 }
129 }
129 }
130 }
130 }
131
131
132 function replaceDependencies(dependencies) {
132 function replaceDependencies(dependencies) {
133 if(typeof dependencies == "object" && dependencies !== null) {
133 if(typeof dependencies == "object" && dependencies !== null) {
134 for(var dependency in dependencies) {
134 for(var dependency in dependencies) {
135 var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency);
135 var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency);
136
136
137 if(resolvedVersion === null) {
137 if(resolvedVersion === null) {
138 process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n");
138 process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n");
139 } else {
139 } else {
140 dependencies[dependency] = resolvedVersion;
140 dependencies[dependency] = resolvedVersion;
141 }
141 }
142 }
142 }
143 }
143 }
144 }
144 }
145
145
146 /* Read the package.json configuration */
146 /* Read the package.json configuration */
147 var packageObj = JSON.parse(fs.readFileSync('./package.json'));
147 var packageObj = JSON.parse(fs.readFileSync('./package.json'));
148
148
149 /* Pinpoint all dependencies */
149 /* Pinpoint all dependencies */
150 replaceDependencies(packageObj.dependencies);
150 replaceDependencies(packageObj.dependencies);
151 if(process.argv[2] == "development") {
151 if(process.argv[2] == "development") {
152 replaceDependencies(packageObj.devDependencies);
152 replaceDependencies(packageObj.devDependencies);
153 }
153 }
154 replaceDependencies(packageObj.optionalDependencies);
154 replaceDependencies(packageObj.optionalDependencies);
155
155
156 /* Write the fixed package.json file */
156 /* Write the fixed package.json file */
157 fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2));
157 fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2));
158 '';
158 '';
159 };
159 };
160 in
160 in
161 ''
161 ''
162 node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"}
162 node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"}
163
163
164 ${stdenv.lib.optionalString (dependencies != [])
164 ${stdenv.lib.optionalString (dependencies != [])
165 ''
165 ''
166 if [ -d node_modules ]
166 if [ -d node_modules ]
167 then
167 then
168 cd node_modules
168 cd node_modules
169 ${stdenv.lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies}
169 ${stdenv.lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies}
170 cd ..
170 cd ..
171 fi
171 fi
172 ''}
172 ''}
173 '';
173 '';
174
174
175 # Recursively traverses all dependencies of a package and pinpoints all
175 # Recursively traverses all dependencies of a package and pinpoints all
176 # dependencies in the package.json file to the versions that are actually
176 # dependencies in the package.json file to the versions that are actually
177 # being used.
177 # being used.
178
178
179 pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args:
179 pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args:
180 ''
180 ''
181 if [ -d "${packageName}" ]
181 if [ -d "${packageName}" ]
182 then
182 then
183 cd "${packageName}"
183 cd "${packageName}"
184 ${pinpointDependencies { inherit dependencies production; }}
184 ${pinpointDependencies { inherit dependencies production; }}
185 cd ..
185 cd ..
186 ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
186 ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
187 fi
187 fi
188 '';
188 '';
189
189
190 # Extract the Node.js source code which is used to compile packages with
190 # Extract the Node.js source code which is used to compile packages with
191 # native bindings
191 # native bindings
192 nodeSources = runCommand "node-sources" {} ''
192 nodeSources = runCommand "node-sources" {} ''
193 tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
193 tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
194 mv node-* $out
194 mv node-* $out
195 '';
195 '';
196
196
197 # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty)
197 # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty)
198 addIntegrityFieldsScript = writeTextFile {
198 addIntegrityFieldsScript = writeTextFile {
199 name = "addintegrityfields.js";
199 name = "addintegrityfields.js";
200 text = ''
200 text = ''
201 var fs = require('fs');
201 var fs = require('fs');
202 var path = require('path');
202 var path = require('path');
203
203
204 function augmentDependencies(baseDir, dependencies) {
204 function augmentDependencies(baseDir, dependencies) {
205 for(var dependencyName in dependencies) {
205 for(var dependencyName in dependencies) {
206 var dependency = dependencies[dependencyName];
206 var dependency = dependencies[dependencyName];
207
207
208 // Open package.json and augment metadata fields
208 // Open package.json and augment metadata fields
209 var packageJSONDir = path.join(baseDir, "node_modules", dependencyName);
209 var packageJSONDir = path.join(baseDir, "node_modules", dependencyName);
210 var packageJSONPath = path.join(packageJSONDir, "package.json");
210 var packageJSONPath = path.join(packageJSONDir, "package.json");
211
211
212 if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored
212 if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored
213 console.log("Adding metadata fields to: "+packageJSONPath);
213 console.log("Adding metadata fields to: "+packageJSONPath);
214 var packageObj = JSON.parse(fs.readFileSync(packageJSONPath));
214 var packageObj = JSON.parse(fs.readFileSync(packageJSONPath));
215
215
216 if(dependency.integrity) {
216 if(dependency.integrity) {
217 packageObj["_integrity"] = dependency.integrity;
217 packageObj["_integrity"] = dependency.integrity;
218 } else {
218 } else {
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.
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 packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories.
222 if(dependency.resolved) {
223 packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided
224 } else {
225 packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories.
226 }
227
228 if(dependency.from !== undefined) { // Adopt from property if one has been provided
229 packageObj["_from"] = dependency.from;
230 }
231
223 fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2));
232 fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2));
224 }
233 }
225
234
226 // Augment transitive dependencies
235 // Augment transitive dependencies
227 if(dependency.dependencies !== undefined) {
236 if(dependency.dependencies !== undefined) {
228 augmentDependencies(packageJSONDir, dependency.dependencies);
237 augmentDependencies(packageJSONDir, dependency.dependencies);
229 }
238 }
230 }
239 }
231 }
240 }
232
241
233 if(fs.existsSync("./package-lock.json")) {
242 if(fs.existsSync("./package-lock.json")) {
234 var packageLock = JSON.parse(fs.readFileSync("./package-lock.json"));
243 var packageLock = JSON.parse(fs.readFileSync("./package-lock.json"));
235
244
236 if(packageLock.lockfileVersion !== 1) {
245 if(packageLock.lockfileVersion !== 1) {
237 process.stderr.write("Sorry, I only understand lock file version 1!\n");
246 process.stderr.write("Sorry, I only understand lock file version 1!\n");
238 process.exit(1);
247 process.exit(1);
239 }
248 }
240
249
241 if(packageLock.dependencies !== undefined) {
250 if(packageLock.dependencies !== undefined) {
242 augmentDependencies(".", packageLock.dependencies);
251 augmentDependencies(".", packageLock.dependencies);
243 }
252 }
244 }
253 }
245 '';
254 '';
246 };
255 };
247
256
248 # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes
257 # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes
249 reconstructPackageLock = writeTextFile {
258 reconstructPackageLock = writeTextFile {
250 name = "addintegrityfields.js";
259 name = "addintegrityfields.js";
251 text = ''
260 text = ''
252 var fs = require('fs');
261 var fs = require('fs');
253 var path = require('path');
262 var path = require('path');
254
263
255 var packageObj = JSON.parse(fs.readFileSync("package.json"));
264 var packageObj = JSON.parse(fs.readFileSync("package.json"));
256
265
257 var lockObj = {
266 var lockObj = {
258 name: packageObj.name,
267 name: packageObj.name,
259 version: packageObj.version,
268 version: packageObj.version,
260 lockfileVersion: 1,
269 lockfileVersion: 1,
261 requires: true,
270 requires: true,
262 dependencies: {}
271 dependencies: {}
263 };
272 };
264
273
265 function augmentPackageJSON(filePath, dependencies) {
274 function augmentPackageJSON(filePath, dependencies) {
266 var packageJSON = path.join(filePath, "package.json");
275 var packageJSON = path.join(filePath, "package.json");
267 if(fs.existsSync(packageJSON)) {
276 if(fs.existsSync(packageJSON)) {
268 var packageObj = JSON.parse(fs.readFileSync(packageJSON));
277 var packageObj = JSON.parse(fs.readFileSync(packageJSON));
269 dependencies[packageObj.name] = {
278 dependencies[packageObj.name] = {
270 version: packageObj.version,
279 version: packageObj.version,
271 integrity: "sha1-000000000000000000000000000=",
280 integrity: "sha1-000000000000000000000000000=",
272 dependencies: {}
281 dependencies: {}
273 };
282 };
274 processDependencies(path.join(filePath, "node_modules"), dependencies[packageObj.name].dependencies);
283 processDependencies(path.join(filePath, "node_modules"), dependencies[packageObj.name].dependencies);
275 }
284 }
276 }
285 }
277
286
278 function processDependencies(dir, dependencies) {
287 function processDependencies(dir, dependencies) {
279 if(fs.existsSync(dir)) {
288 if(fs.existsSync(dir)) {
280 var files = fs.readdirSync(dir);
289 var files = fs.readdirSync(dir);
281
290
282 files.forEach(function(entry) {
291 files.forEach(function(entry) {
283 var filePath = path.join(dir, entry);
292 var filePath = path.join(dir, entry);
284 var stats = fs.statSync(filePath);
293 var stats = fs.statSync(filePath);
285
294
286 if(stats.isDirectory()) {
295 if(stats.isDirectory()) {
287 if(entry.substr(0, 1) == "@") {
296 if(entry.substr(0, 1) == "@") {
288 // When we encounter a namespace folder, augment all packages belonging to the scope
297 // When we encounter a namespace folder, augment all packages belonging to the scope
289 var pkgFiles = fs.readdirSync(filePath);
298 var pkgFiles = fs.readdirSync(filePath);
290
299
291 pkgFiles.forEach(function(entry) {
300 pkgFiles.forEach(function(entry) {
292 if(stats.isDirectory()) {
301 if(stats.isDirectory()) {
293 var pkgFilePath = path.join(filePath, entry);
302 var pkgFilePath = path.join(filePath, entry);
294 augmentPackageJSON(pkgFilePath, dependencies);
303 augmentPackageJSON(pkgFilePath, dependencies);
295 }
304 }
296 });
305 });
297 } else {
306 } else {
298 augmentPackageJSON(filePath, dependencies);
307 augmentPackageJSON(filePath, dependencies);
299 }
308 }
300 }
309 }
301 });
310 });
302 }
311 }
303 }
312 }
304
313
305 processDependencies("node_modules", lockObj.dependencies);
314 processDependencies("node_modules", lockObj.dependencies);
306
315
307 fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2));
316 fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2));
308 '';
317 '';
309 };
318 };
310
319
311 # Builds and composes an NPM package including all its dependencies
320 prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}:
312 buildNodePackage =
313 { name
314 , packageName
315 , version
316 , dependencies ? []
317 , buildInputs ? []
318 , production ? true
319 , npmFlags ? ""
320 , dontNpmInstall ? false
321 , bypassCache ? false
322 , preRebuild ? ""
323 , dontStrip ? true
324 , unpackPhase ? "true"
325 , buildPhase ? "true"
326 , ... }@args:
327
328 let
321 let
329 forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com";
322 forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com";
330 extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" ];
331 in
323 in
332 stdenv.mkDerivation ({
324 ''
333 name = "node-${name}-${version}";
334 buildInputs = [ tarWrapper python nodejs ]
335 ++ stdenv.lib.optional (stdenv.isLinux) utillinux
336 ++ stdenv.lib.optional (stdenv.isDarwin) libtool
337 ++ buildInputs;
338
339 inherit dontStrip; # Stripping may fail a build for some package deployments
340 inherit dontNpmInstall preRebuild unpackPhase buildPhase;
341
342 compositionScript = composePackage args;
343 pinpointDependenciesScript = pinpointDependenciesOfPackage args;
344
345 passAsFile = [ "compositionScript" "pinpointDependenciesScript" ];
346
347 installPhase = ''
348 # Create and enter a root node_modules/ folder
349 mkdir -p $out/lib/node_modules
350 cd $out/lib/node_modules
351
352 # Compose the package and all its dependencies
353 source $compositionScriptPath
354
355 # Pinpoint the versions of all dependencies to the ones that are actually being used
325 # Pinpoint the versions of all dependencies to the ones that are actually being used
356 echo "pinpointing versions of dependencies..."
326 echo "pinpointing versions of dependencies..."
357 source $pinpointDependenciesScriptPath
327 source $pinpointDependenciesScriptPath
358
328
359 # Patch the shebangs of the bundled modules to prevent them from
329 # Patch the shebangs of the bundled modules to prevent them from
360 # calling executables outside the Nix store as much as possible
330 # calling executables outside the Nix store as much as possible
361 patchShebangs .
331 patchShebangs .
362
332
363 # Deploy the Node.js package by running npm install. Since the
333 # Deploy the Node.js package by running npm install. Since the
364 # dependencies have been provided already by ourselves, it should not
334 # dependencies have been provided already by ourselves, it should not
365 # attempt to install them again, which is good, because we want to make
335 # attempt to install them again, which is good, because we want to make
366 # it Nix's responsibility. If it needs to install any dependencies
336 # it Nix's responsibility. If it needs to install any dependencies
367 # anyway (e.g. because the dependency parameters are
337 # anyway (e.g. because the dependency parameters are
368 # incomplete/incorrect), it fails.
338 # incomplete/incorrect), it fails.
369 #
339 #
370 # The other responsibilities of NPM are kept -- version checks, build
340 # The other responsibilities of NPM are kept -- version checks, build
371 # steps, postprocessing etc.
341 # steps, postprocessing etc.
372
342
373 export HOME=$TMPDIR
343 export HOME=$TMPDIR
374 cd "${packageName}"
344 cd "${packageName}"
375 runHook preRebuild
345 runHook preRebuild
376
346
377 ${stdenv.lib.optionalString bypassCache ''
347 ${stdenv.lib.optionalString bypassCache ''
378 if [ ! -f package-lock.json ]
348 ${stdenv.lib.optionalString reconstructLock ''
379 then
349 if [ -f package-lock.json ]
380 echo "No package-lock.json file found, reconstructing..."
350 then
381 node ${reconstructPackageLock}
351 echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!"
382 fi
352 echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!"
353 rm package-lock.json
354 else
355 echo "No package-lock.json file found, reconstructing..."
356 fi
357
358 node ${reconstructPackageLock}
359 ''}
383
360
384 node ${addIntegrityFieldsScript}
361 node ${addIntegrityFieldsScript}
385 ''}
362 ''}
386
363
387 npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${stdenv.lib.optionalString production "--production"} rebuild
364 npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${stdenv.lib.optionalString production "--production"} rebuild
388
365
389 if [ "$dontNpmInstall" != "1" ]
366 if [ "''${dontNpmInstall-}" != "1" ]
390 then
367 then
391 # NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
368 # NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
392 rm -f npm-shrinkwrap.json
369 rm -f npm-shrinkwrap.json
393
370
394 npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${stdenv.lib.optionalString production "--production"} install
371 npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${stdenv.lib.optionalString production "--production"} install
395 fi
372 fi
373 '';
374
375 # Builds and composes an NPM package including all its dependencies
376 buildNodePackage =
377 { name
378 , packageName
379 , version
380 , dependencies ? []
381 , buildInputs ? []
382 , production ? true
383 , npmFlags ? ""
384 , dontNpmInstall ? false
385 , bypassCache ? false
386 , reconstructLock ? false
387 , preRebuild ? ""
388 , dontStrip ? true
389 , unpackPhase ? "true"
390 , buildPhase ? "true"
391 , ... }@args:
392
393 let
394 extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" ];
395 in
396 stdenv.mkDerivation ({
397 name = "node_${name}-${version}";
398 buildInputs = [ tarWrapper python nodejs ]
399 ++ stdenv.lib.optional (stdenv.isLinux) utillinux
400 ++ stdenv.lib.optional (stdenv.isDarwin) libtool
401 ++ buildInputs;
402
403 inherit nodejs;
404
405 inherit dontStrip; # Stripping may fail a build for some package deployments
406 inherit dontNpmInstall preRebuild unpackPhase buildPhase;
407
408 compositionScript = composePackage args;
409 pinpointDependenciesScript = pinpointDependenciesOfPackage args;
410
411 passAsFile = [ "compositionScript" "pinpointDependenciesScript" ];
412
413 installPhase = ''
414 # Create and enter a root node_modules/ folder
415 mkdir -p $out/lib/node_modules
416 cd $out/lib/node_modules
417
418 # Compose the package and all its dependencies
419 source $compositionScriptPath
420
421 ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
396
422
397 # Create symlink to the deployed executable folder, if applicable
423 # Create symlink to the deployed executable folder, if applicable
398 if [ -d "$out/lib/node_modules/.bin" ]
424 if [ -d "$out/lib/node_modules/.bin" ]
399 then
425 then
400 ln -s $out/lib/node_modules/.bin $out/bin
426 ln -s $out/lib/node_modules/.bin $out/bin
401 fi
427 fi
402
428
403 # Create symlinks to the deployed manual page folders, if applicable
429 # Create symlinks to the deployed manual page folders, if applicable
404 if [ -d "$out/lib/node_modules/${packageName}/man" ]
430 if [ -d "$out/lib/node_modules/${packageName}/man" ]
405 then
431 then
406 mkdir -p $out/share
432 mkdir -p $out/share
407 for dir in "$out/lib/node_modules/${packageName}/man/"*
433 for dir in "$out/lib/node_modules/${packageName}/man/"*
408 do
434 do
409 mkdir -p $out/share/man/$(basename "$dir")
435 mkdir -p $out/share/man/$(basename "$dir")
410 for page in "$dir"/*
436 for page in "$dir"/*
411 do
437 do
412 ln -s $page $out/share/man/$(basename "$dir")
438 ln -s $page $out/share/man/$(basename "$dir")
413 done
439 done
414 done
440 done
415 fi
441 fi
416
442
417 # Run post install hook, if provided
443 # Run post install hook, if provided
418 runHook postInstall
444 runHook postInstall
419 '';
445 '';
420 } // extraArgs);
446 } // extraArgs);
421
447
422 # Builds a development shell
448 # Builds a development shell
423 buildNodeShell =
449 buildNodeShell =
424 { name
450 { name
425 , packageName
451 , packageName
426 , version
452 , version
427 , src
453 , src
428 , dependencies ? []
454 , dependencies ? []
429 , buildInputs ? []
455 , buildInputs ? []
430 , production ? true
456 , production ? true
431 , npmFlags ? ""
457 , npmFlags ? ""
432 , dontNpmInstall ? false
458 , dontNpmInstall ? false
433 , bypassCache ? false
459 , bypassCache ? false
460 , reconstructLock ? false
434 , dontStrip ? true
461 , dontStrip ? true
435 , unpackPhase ? "true"
462 , unpackPhase ? "true"
436 , buildPhase ? "true"
463 , buildPhase ? "true"
437 , ... }@args:
464 , ... }@args:
438
465
439 let
466 let
440 forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com";
441
442 extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ];
467 extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ];
443
468
444 nodeDependencies = stdenv.mkDerivation ({
469 nodeDependencies = stdenv.mkDerivation ({
445 name = "node-dependencies-${name}-${version}";
470 name = "node-dependencies-${name}-${version}";
446
471
447 buildInputs = [ tarWrapper python nodejs ]
472 buildInputs = [ tarWrapper python nodejs ]
448 ++ stdenv.lib.optional (stdenv.isLinux) utillinux
473 ++ stdenv.lib.optional (stdenv.isLinux) utillinux
449 ++ stdenv.lib.optional (stdenv.isDarwin) libtool
474 ++ stdenv.lib.optional (stdenv.isDarwin) libtool
450 ++ buildInputs;
475 ++ buildInputs;
451
476
452 inherit dontStrip; # Stripping may fail a build for some package deployments
477 inherit dontStrip; # Stripping may fail a build for some package deployments
453 inherit dontNpmInstall unpackPhase buildPhase;
478 inherit dontNpmInstall unpackPhase buildPhase;
454
479
455 includeScript = includeDependencies { inherit dependencies; };
480 includeScript = includeDependencies { inherit dependencies; };
456 pinpointDependenciesScript = pinpointDependenciesOfPackage args;
481 pinpointDependenciesScript = pinpointDependenciesOfPackage args;
457
482
458 passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
483 passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
459
484
460 installPhase = ''
485 installPhase = ''
461 mkdir -p $out/${packageName}
486 mkdir -p $out/${packageName}
462 cd $out/${packageName}
487 cd $out/${packageName}
463
488
464 source $includeScriptPath
489 source $includeScriptPath
465
490
466 # Create fake package.json to make the npm commands work properly
491 # Create fake package.json to make the npm commands work properly
467 cp ${src}/package.json .
492 cp ${src}/package.json .
468 chmod 644 package.json
493 chmod 644 package.json
469 ${stdenv.lib.optionalString bypassCache ''
494 ${stdenv.lib.optionalString bypassCache ''
470 if [ -f ${src}/package-lock.json ]
495 if [ -f ${src}/package-lock.json ]
471 then
496 then
472 cp ${src}/package-lock.json .
497 cp ${src}/package-lock.json .
473 fi
498 fi
474 ''}
499 ''}
475
500
476 # Pinpoint the versions of all dependencies to the ones that are actually being used
501 # Go to the parent folder to make sure that all packages are pinpointed
477 echo "pinpointing versions of dependencies..."
478 cd ..
502 cd ..
479 ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
503 ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
480
504
481 source $pinpointDependenciesScriptPath
505 ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
482 cd ${packageName}
483
484 # Patch the shebangs of the bundled modules to prevent them from
485 # calling executables outside the Nix store as much as possible
486 patchShebangs .
487
488 export HOME=$PWD
489
506
490 ${stdenv.lib.optionalString bypassCache ''
507 # Expose the executables that were installed
491 if [ ! -f package-lock.json ]
492 then
493 echo "No package-lock.json file found, reconstructing..."
494 node ${reconstructPackageLock}
495 fi
496
497 node ${addIntegrityFieldsScript}
498 ''}
499
500 npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${stdenv.lib.optionalString production "--production"} rebuild
501
502 ${stdenv.lib.optionalString (!dontNpmInstall) ''
503 # NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
504 rm -f npm-shrinkwrap.json
505
506 npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${stdenv.lib.optionalString production "--production"} install
507 ''}
508
509 cd ..
508 cd ..
510 ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
509 ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
511
510
512 mv ${packageName} lib
511 mv ${packageName} lib
513 ln -s $out/lib/node_modules/.bin $out/bin
512 ln -s $out/lib/node_modules/.bin $out/bin
514 '';
513 '';
515 } // extraArgs);
514 } // extraArgs);
516 in
515 in
517 stdenv.mkDerivation {
516 stdenv.mkDerivation {
518 name = "node-shell-${name}-${version}";
517 name = "node-shell-${name}-${version}";
519
518
520 buildInputs = [ python nodejs ] ++ stdenv.lib.optional (stdenv.isLinux) utillinux ++ buildInputs;
519 buildInputs = [ python nodejs ] ++ stdenv.lib.optional (stdenv.isLinux) utillinux ++ buildInputs;
521 buildCommand = ''
520 buildCommand = ''
522 mkdir -p $out/bin
521 mkdir -p $out/bin
523 cat > $out/bin/shell <<EOF
522 cat > $out/bin/shell <<EOF
524 #! ${stdenv.shell} -e
523 #! ${stdenv.shell} -e
525 $shellHook
524 $shellHook
526 exec ${stdenv.shell}
525 exec ${stdenv.shell}
527 EOF
526 EOF
528 chmod +x $out/bin/shell
527 chmod +x $out/bin/shell
529 '';
528 '';
530
529
531 # Provide the dependencies in a development shell through the NODE_PATH environment variable
530 # Provide the dependencies in a development shell through the NODE_PATH environment variable
532 inherit nodeDependencies;
531 inherit nodeDependencies;
533 shellHook = stdenv.lib.optionalString (dependencies != []) ''
532 shellHook = stdenv.lib.optionalString (dependencies != []) ''
534 export NODE_PATH=$nodeDependencies/lib/node_modules
533 export NODE_PATH=${nodeDependencies}/lib/node_modules
534 export PATH="${nodeDependencies}/bin:$PATH"
535 '';
535 '';
536 };
536 };
537 in
537 in
538 {
538 {
539 buildNodeSourceDist = stdenv.lib.makeOverridable buildNodeSourceDist;
539 buildNodeSourceDist = stdenv.lib.makeOverridable buildNodeSourceDist;
540 buildNodePackage = stdenv.lib.makeOverridable buildNodePackage;
540 buildNodePackage = stdenv.lib.makeOverridable buildNodePackage;
541 buildNodeShell = stdenv.lib.makeOverridable buildNodeShell;
541 buildNodeShell = stdenv.lib.makeOverridable buildNodeShell;
542 }
542 }
@@ -1,9234 +1,9293 b''
1 # This file has been generated by node2nix 1.6.0. Do not edit!
1 # This file has been generated by node2nix 1.8.0. Do not edit!
2
2
3 {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
3 {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
4
4
5 let
5 let
6 sources = {
6 sources = {
7 "@polymer/font-roboto-3.0.2" = {
7 "@polymer/font-roboto-3.0.2" = {
8 name = "_at_polymer_slash_font-roboto";
8 name = "_at_polymer_slash_font-roboto";
9 packageName = "@polymer/font-roboto";
9 packageName = "@polymer/font-roboto";
10 version = "3.0.2";
10 version = "3.0.2";
11 src = fetchurl {
11 src = fetchurl {
12 url = "https://registry.npmjs.org/@polymer/font-roboto/-/font-roboto-3.0.2.tgz";
12 url = "https://registry.npmjs.org/@polymer/font-roboto/-/font-roboto-3.0.2.tgz";
13 sha512 = "tx5TauYSmzsIvmSqepUPDYbs4/Ejz2XbZ1IkD7JEGqkdNUJlh+9KU85G56Tfdk/xjEZ8zorFfN09OSwiMrIQWA==";
13 sha512 = "tx5TauYSmzsIvmSqepUPDYbs4/Ejz2XbZ1IkD7JEGqkdNUJlh+9KU85G56Tfdk/xjEZ8zorFfN09OSwiMrIQWA==";
14 };
14 };
15 };
15 };
16 "@polymer/iron-a11y-announcer-3.0.2" = {
16 "@polymer/iron-a11y-announcer-3.0.2" = {
17 name = "_at_polymer_slash_iron-a11y-announcer";
17 name = "_at_polymer_slash_iron-a11y-announcer";
18 packageName = "@polymer/iron-a11y-announcer";
18 packageName = "@polymer/iron-a11y-announcer";
19 version = "3.0.2";
19 version = "3.0.2";
20 src = fetchurl {
20 src = fetchurl {
21 url = "https://registry.npmjs.org/@polymer/iron-a11y-announcer/-/iron-a11y-announcer-3.0.2.tgz";
21 url = "https://registry.npmjs.org/@polymer/iron-a11y-announcer/-/iron-a11y-announcer-3.0.2.tgz";
22 sha512 = "LqnMF39mXyxSSRbTHRzGbcJS8nU0NVTo2raBOgOlpxw5yfGJUVcwaTJ/qy5NtWCZLRfa4suycf0oAkuUjHTXHQ==";
22 sha512 = "LqnMF39mXyxSSRbTHRzGbcJS8nU0NVTo2raBOgOlpxw5yfGJUVcwaTJ/qy5NtWCZLRfa4suycf0oAkuUjHTXHQ==";
23 };
23 };
24 };
24 };
25 "@polymer/iron-a11y-keys-3.0.1" = {
25 "@polymer/iron-a11y-keys-3.0.1" = {
26 name = "_at_polymer_slash_iron-a11y-keys";
26 name = "_at_polymer_slash_iron-a11y-keys";
27 packageName = "@polymer/iron-a11y-keys";
27 packageName = "@polymer/iron-a11y-keys";
28 version = "3.0.1";
28 version = "3.0.1";
29 src = fetchurl {
29 src = fetchurl {
30 url = "https://registry.npmjs.org/@polymer/iron-a11y-keys/-/iron-a11y-keys-3.0.1.tgz";
30 url = "https://registry.npmjs.org/@polymer/iron-a11y-keys/-/iron-a11y-keys-3.0.1.tgz";
31 sha512 = "zmTi8xHeY4ZMJLAitW2hAmW5zXZ35hVy/eHQUFadAlOccuBK3oRRmoPRQRaZgpyJrCVFDAQRXXzzJtUDil/0CA==";
31 sha512 = "zmTi8xHeY4ZMJLAitW2hAmW5zXZ35hVy/eHQUFadAlOccuBK3oRRmoPRQRaZgpyJrCVFDAQRXXzzJtUDil/0CA==";
32 };
32 };
33 };
33 };
34 "@polymer/iron-a11y-keys-behavior-3.0.1" = {
34 "@polymer/iron-a11y-keys-behavior-3.0.1" = {
35 name = "_at_polymer_slash_iron-a11y-keys-behavior";
35 name = "_at_polymer_slash_iron-a11y-keys-behavior";
36 packageName = "@polymer/iron-a11y-keys-behavior";
36 packageName = "@polymer/iron-a11y-keys-behavior";
37 version = "3.0.1";
37 version = "3.0.1";
38 src = fetchurl {
38 src = fetchurl {
39 url = "https://registry.npmjs.org/@polymer/iron-a11y-keys-behavior/-/iron-a11y-keys-behavior-3.0.1.tgz";
39 url = "https://registry.npmjs.org/@polymer/iron-a11y-keys-behavior/-/iron-a11y-keys-behavior-3.0.1.tgz";
40 sha512 = "lnrjKq3ysbBPT/74l0Fj0U9H9C35Tpw2C/tpJ8a+5g8Y3YJs1WSZYnEl1yOkw6sEyaxOq/1DkzH0+60gGu5/PQ==";
40 sha512 = "lnrjKq3ysbBPT/74l0Fj0U9H9C35Tpw2C/tpJ8a+5g8Y3YJs1WSZYnEl1yOkw6sEyaxOq/1DkzH0+60gGu5/PQ==";
41 };
41 };
42 };
42 };
43 "@polymer/iron-ajax-3.0.1" = {
43 "@polymer/iron-ajax-3.0.1" = {
44 name = "_at_polymer_slash_iron-ajax";
44 name = "_at_polymer_slash_iron-ajax";
45 packageName = "@polymer/iron-ajax";
45 packageName = "@polymer/iron-ajax";
46 version = "3.0.1";
46 version = "3.0.1";
47 src = fetchurl {
47 src = fetchurl {
48 url = "https://registry.npmjs.org/@polymer/iron-ajax/-/iron-ajax-3.0.1.tgz";
48 url = "https://registry.npmjs.org/@polymer/iron-ajax/-/iron-ajax-3.0.1.tgz";
49 sha512 = "7+TPEAfWsRdhj1Y8UeF1759ktpVu+c3sG16rJiUC3wF9+woQ9xI1zUm2d59i7Yc3aDEJrR/Q8Y262KlOvyGVNg==";
49 sha512 = "7+TPEAfWsRdhj1Y8UeF1759ktpVu+c3sG16rJiUC3wF9+woQ9xI1zUm2d59i7Yc3aDEJrR/Q8Y262KlOvyGVNg==";
50 };
50 };
51 };
51 };
52 "@polymer/iron-autogrow-textarea-3.0.3" = {
52 "@polymer/iron-autogrow-textarea-3.0.3" = {
53 name = "_at_polymer_slash_iron-autogrow-textarea";
53 name = "_at_polymer_slash_iron-autogrow-textarea";
54 packageName = "@polymer/iron-autogrow-textarea";
54 packageName = "@polymer/iron-autogrow-textarea";
55 version = "3.0.3";
55 version = "3.0.3";
56 src = fetchurl {
56 src = fetchurl {
57 url = "https://registry.npmjs.org/@polymer/iron-autogrow-textarea/-/iron-autogrow-textarea-3.0.3.tgz";
57 url = "https://registry.npmjs.org/@polymer/iron-autogrow-textarea/-/iron-autogrow-textarea-3.0.3.tgz";
58 sha512 = "5r0VkWrIlm0JIp5E5wlnvkw7slK72lFRZXncmrsLZF+6n1dg2rI8jt7xpFzSmUWrqpcyXwyKaGaDvUjl3j4JLA==";
58 sha512 = "5r0VkWrIlm0JIp5E5wlnvkw7slK72lFRZXncmrsLZF+6n1dg2rI8jt7xpFzSmUWrqpcyXwyKaGaDvUjl3j4JLA==";
59 };
59 };
60 };
60 };
61 "@polymer/iron-behaviors-3.0.1" = {
61 "@polymer/iron-behaviors-3.0.1" = {
62 name = "_at_polymer_slash_iron-behaviors";
62 name = "_at_polymer_slash_iron-behaviors";
63 packageName = "@polymer/iron-behaviors";
63 packageName = "@polymer/iron-behaviors";
64 version = "3.0.1";
64 version = "3.0.1";
65 src = fetchurl {
65 src = fetchurl {
66 url = "https://registry.npmjs.org/@polymer/iron-behaviors/-/iron-behaviors-3.0.1.tgz";
66 url = "https://registry.npmjs.org/@polymer/iron-behaviors/-/iron-behaviors-3.0.1.tgz";
67 sha512 = "IMEwcv1lhf1HSQxuyWOUIL0lOBwmeaoSTpgCJeP9IBYnuB1SPQngmfRuHKgK6/m9LQ9F9miC7p3HeQQUdKAE0w==";
67 sha512 = "IMEwcv1lhf1HSQxuyWOUIL0lOBwmeaoSTpgCJeP9IBYnuB1SPQngmfRuHKgK6/m9LQ9F9miC7p3HeQQUdKAE0w==";
68 };
68 };
69 };
69 };
70 "@polymer/iron-checked-element-behavior-3.0.1" = {
70 "@polymer/iron-checked-element-behavior-3.0.1" = {
71 name = "_at_polymer_slash_iron-checked-element-behavior";
71 name = "_at_polymer_slash_iron-checked-element-behavior";
72 packageName = "@polymer/iron-checked-element-behavior";
72 packageName = "@polymer/iron-checked-element-behavior";
73 version = "3.0.1";
73 version = "3.0.1";
74 src = fetchurl {
74 src = fetchurl {
75 url = "https://registry.npmjs.org/@polymer/iron-checked-element-behavior/-/iron-checked-element-behavior-3.0.1.tgz";
75 url = "https://registry.npmjs.org/@polymer/iron-checked-element-behavior/-/iron-checked-element-behavior-3.0.1.tgz";
76 sha512 = "aDr0cbCNVq49q+pOqa6CZutFh+wWpwPMLpEth9swx+GkAj+gCURhuQkaUYhIo5f2egDbEioR1aeHMnPlU9dQZA==";
76 sha512 = "aDr0cbCNVq49q+pOqa6CZutFh+wWpwPMLpEth9swx+GkAj+gCURhuQkaUYhIo5f2egDbEioR1aeHMnPlU9dQZA==";
77 };
77 };
78 };
78 };
79 "@polymer/iron-fit-behavior-3.0.2" = {
79 "@polymer/iron-fit-behavior-3.0.2" = {
80 name = "_at_polymer_slash_iron-fit-behavior";
80 name = "_at_polymer_slash_iron-fit-behavior";
81 packageName = "@polymer/iron-fit-behavior";
81 packageName = "@polymer/iron-fit-behavior";
82 version = "3.0.2";
82 version = "3.0.2";
83 src = fetchurl {
83 src = fetchurl {
84 url = "https://registry.npmjs.org/@polymer/iron-fit-behavior/-/iron-fit-behavior-3.0.2.tgz";
84 url = "https://registry.npmjs.org/@polymer/iron-fit-behavior/-/iron-fit-behavior-3.0.2.tgz";
85 sha512 = "JndryJYbBR3gSN5IlST4rCHsd01+OyvYpRO6z5Zd3C6u5V/m07TwAtcf3aXwZ8WBNt2eLG28OcvdSO7XR2v2pg==";
85 sha512 = "JndryJYbBR3gSN5IlST4rCHsd01+OyvYpRO6z5Zd3C6u5V/m07TwAtcf3aXwZ8WBNt2eLG28OcvdSO7XR2v2pg==";
86 };
86 };
87 };
87 };
88 "@polymer/iron-flex-layout-3.0.1" = {
88 "@polymer/iron-flex-layout-3.0.1" = {
89 name = "_at_polymer_slash_iron-flex-layout";
89 name = "_at_polymer_slash_iron-flex-layout";
90 packageName = "@polymer/iron-flex-layout";
90 packageName = "@polymer/iron-flex-layout";
91 version = "3.0.1";
91 version = "3.0.1";
92 src = fetchurl {
92 src = fetchurl {
93 url = "https://registry.npmjs.org/@polymer/iron-flex-layout/-/iron-flex-layout-3.0.1.tgz";
93 url = "https://registry.npmjs.org/@polymer/iron-flex-layout/-/iron-flex-layout-3.0.1.tgz";
94 sha512 = "7gB869czArF+HZcPTVSgvA7tXYFze9EKckvM95NB7SqYF+NnsQyhoXgKnpFwGyo95lUjUW9TFDLUwDXnCYFtkw==";
94 sha512 = "7gB869czArF+HZcPTVSgvA7tXYFze9EKckvM95NB7SqYF+NnsQyhoXgKnpFwGyo95lUjUW9TFDLUwDXnCYFtkw==";
95 };
95 };
96 };
96 };
97 "@polymer/iron-form-element-behavior-3.0.1" = {
97 "@polymer/iron-form-element-behavior-3.0.1" = {
98 name = "_at_polymer_slash_iron-form-element-behavior";
98 name = "_at_polymer_slash_iron-form-element-behavior";
99 packageName = "@polymer/iron-form-element-behavior";
99 packageName = "@polymer/iron-form-element-behavior";
100 version = "3.0.1";
100 version = "3.0.1";
101 src = fetchurl {
101 src = fetchurl {
102 url = "https://registry.npmjs.org/@polymer/iron-form-element-behavior/-/iron-form-element-behavior-3.0.1.tgz";
102 url = "https://registry.npmjs.org/@polymer/iron-form-element-behavior/-/iron-form-element-behavior-3.0.1.tgz";
103 sha512 = "G/e2KXyL5AY7mMjmomHkGpgS0uAf4ovNpKhkuUTRnMuMJuf589bKqE85KN4ovE1Tzhv2hJoh/igyD6ekHiYU1A==";
103 sha512 = "G/e2KXyL5AY7mMjmomHkGpgS0uAf4ovNpKhkuUTRnMuMJuf589bKqE85KN4ovE1Tzhv2hJoh/igyD6ekHiYU1A==";
104 };
104 };
105 };
105 };
106 "@polymer/iron-meta-3.0.1" = {
106 "@polymer/iron-meta-3.0.1" = {
107 name = "_at_polymer_slash_iron-meta";
107 name = "_at_polymer_slash_iron-meta";
108 packageName = "@polymer/iron-meta";
108 packageName = "@polymer/iron-meta";
109 version = "3.0.1";
109 version = "3.0.1";
110 src = fetchurl {
110 src = fetchurl {
111 url = "https://registry.npmjs.org/@polymer/iron-meta/-/iron-meta-3.0.1.tgz";
111 url = "https://registry.npmjs.org/@polymer/iron-meta/-/iron-meta-3.0.1.tgz";
112 sha512 = "pWguPugiLYmWFV9UWxLWzZ6gm4wBwQdDy4VULKwdHCqR7OP7u98h+XDdGZsSlDPv6qoryV/e3tGHlTIT0mbzJA==";
112 sha512 = "pWguPugiLYmWFV9UWxLWzZ6gm4wBwQdDy4VULKwdHCqR7OP7u98h+XDdGZsSlDPv6qoryV/e3tGHlTIT0mbzJA==";
113 };
113 };
114 };
114 };
115 "@polymer/iron-overlay-behavior-3.0.3" = {
115 "@polymer/iron-overlay-behavior-3.0.3" = {
116 name = "_at_polymer_slash_iron-overlay-behavior";
116 name = "_at_polymer_slash_iron-overlay-behavior";
117 packageName = "@polymer/iron-overlay-behavior";
117 packageName = "@polymer/iron-overlay-behavior";
118 version = "3.0.3";
118 version = "3.0.3";
119 src = fetchurl {
119 src = fetchurl {
120 url = "https://registry.npmjs.org/@polymer/iron-overlay-behavior/-/iron-overlay-behavior-3.0.3.tgz";
120 url = "https://registry.npmjs.org/@polymer/iron-overlay-behavior/-/iron-overlay-behavior-3.0.3.tgz";
121 sha512 = "Q/Fp0+uOQQ145ebZ7T8Cxl4m1tUKYjyymkjcL2rXUm+aDQGb1wA1M1LYxUF5YBqd+9lipE0PTIiYwA2ZL/sznA==";
121 sha512 = "Q/Fp0+uOQQ145ebZ7T8Cxl4m1tUKYjyymkjcL2rXUm+aDQGb1wA1M1LYxUF5YBqd+9lipE0PTIiYwA2ZL/sznA==";
122 };
122 };
123 };
123 };
124 "@polymer/iron-resizable-behavior-3.0.1" = {
124 "@polymer/iron-resizable-behavior-3.0.1" = {
125 name = "_at_polymer_slash_iron-resizable-behavior";
125 name = "_at_polymer_slash_iron-resizable-behavior";
126 packageName = "@polymer/iron-resizable-behavior";
126 packageName = "@polymer/iron-resizable-behavior";
127 version = "3.0.1";
127 version = "3.0.1";
128 src = fetchurl {
128 src = fetchurl {
129 url = "https://registry.npmjs.org/@polymer/iron-resizable-behavior/-/iron-resizable-behavior-3.0.1.tgz";
129 url = "https://registry.npmjs.org/@polymer/iron-resizable-behavior/-/iron-resizable-behavior-3.0.1.tgz";
130 sha512 = "FyHxRxFspVoRaeZSWpT3y0C9awomb4tXXolIJcZ7RvXhMP632V5lez+ch5G5SwK0LpnAPkg35eB0LPMFv+YMMQ==";
130 sha512 = "FyHxRxFspVoRaeZSWpT3y0C9awomb4tXXolIJcZ7RvXhMP632V5lez+ch5G5SwK0LpnAPkg35eB0LPMFv+YMMQ==";
131 };
131 };
132 };
132 };
133 "@polymer/iron-validatable-behavior-3.0.1" = {
133 "@polymer/iron-validatable-behavior-3.0.1" = {
134 name = "_at_polymer_slash_iron-validatable-behavior";
134 name = "_at_polymer_slash_iron-validatable-behavior";
135 packageName = "@polymer/iron-validatable-behavior";
135 packageName = "@polymer/iron-validatable-behavior";
136 version = "3.0.1";
136 version = "3.0.1";
137 src = fetchurl {
137 src = fetchurl {
138 url = "https://registry.npmjs.org/@polymer/iron-validatable-behavior/-/iron-validatable-behavior-3.0.1.tgz";
138 url = "https://registry.npmjs.org/@polymer/iron-validatable-behavior/-/iron-validatable-behavior-3.0.1.tgz";
139 sha512 = "wwpYh6wOa4fNI+jH5EYKC7TVPYQ2OfgQqocWat7GsNWcsblKYhLYbwsvEY5nO0n2xKqNfZzDLrUom5INJN7msQ==";
139 sha512 = "wwpYh6wOa4fNI+jH5EYKC7TVPYQ2OfgQqocWat7GsNWcsblKYhLYbwsvEY5nO0n2xKqNfZzDLrUom5INJN7msQ==";
140 };
140 };
141 };
141 };
142 "@polymer/paper-behaviors-3.0.1" = {
142 "@polymer/paper-behaviors-3.0.1" = {
143 name = "_at_polymer_slash_paper-behaviors";
143 name = "_at_polymer_slash_paper-behaviors";
144 packageName = "@polymer/paper-behaviors";
144 packageName = "@polymer/paper-behaviors";
145 version = "3.0.1";
145 version = "3.0.1";
146 src = fetchurl {
146 src = fetchurl {
147 url = "https://registry.npmjs.org/@polymer/paper-behaviors/-/paper-behaviors-3.0.1.tgz";
147 url = "https://registry.npmjs.org/@polymer/paper-behaviors/-/paper-behaviors-3.0.1.tgz";
148 sha512 = "6knhj69fPJejv8qR0kCSUY+Q0XjaUf0OSnkjRjmTJPAwSrRYtgqE+l6P1FfA+py1X/cUjgne9EF5rMZAKJIg1g==";
148 sha512 = "6knhj69fPJejv8qR0kCSUY+Q0XjaUf0OSnkjRjmTJPAwSrRYtgqE+l6P1FfA+py1X/cUjgne9EF5rMZAKJIg1g==";
149 };
149 };
150 };
150 };
151 "@polymer/paper-button-3.0.1" = {
151 "@polymer/paper-button-3.0.1" = {
152 name = "_at_polymer_slash_paper-button";
152 name = "_at_polymer_slash_paper-button";
153 packageName = "@polymer/paper-button";
153 packageName = "@polymer/paper-button";
154 version = "3.0.1";
154 version = "3.0.1";
155 src = fetchurl {
155 src = fetchurl {
156 url = "https://registry.npmjs.org/@polymer/paper-button/-/paper-button-3.0.1.tgz";
156 url = "https://registry.npmjs.org/@polymer/paper-button/-/paper-button-3.0.1.tgz";
157 sha512 = "JRNBc+Oj9EWnmyLr7FcCr8T1KAnEHPh6mosln9BUdkM+qYaYsudSICh3cjTIbnj6AuF5OJidoLkM1dlyj0j6Zg==";
157 sha512 = "JRNBc+Oj9EWnmyLr7FcCr8T1KAnEHPh6mosln9BUdkM+qYaYsudSICh3cjTIbnj6AuF5OJidoLkM1dlyj0j6Zg==";
158 };
158 };
159 };
159 };
160 "@polymer/paper-ripple-3.0.2" = {
160 "@polymer/paper-ripple-3.0.2" = {
161 name = "_at_polymer_slash_paper-ripple";
161 name = "_at_polymer_slash_paper-ripple";
162 packageName = "@polymer/paper-ripple";
162 packageName = "@polymer/paper-ripple";
163 version = "3.0.2";
163 version = "3.0.2";
164 src = fetchurl {
164 src = fetchurl {
165 url = "https://registry.npmjs.org/@polymer/paper-ripple/-/paper-ripple-3.0.2.tgz";
165 url = "https://registry.npmjs.org/@polymer/paper-ripple/-/paper-ripple-3.0.2.tgz";
166 sha512 = "DnLNvYIMsiayeICroYxx6Q6Hg1cUU8HN2sbutXazlemAlGqdq80qz3TIaVdbpbt/pvjcFGX2HtntMlPstCge8Q==";
166 sha512 = "DnLNvYIMsiayeICroYxx6Q6Hg1cUU8HN2sbutXazlemAlGqdq80qz3TIaVdbpbt/pvjcFGX2HtntMlPstCge8Q==";
167 };
167 };
168 };
168 };
169 "@polymer/paper-spinner-3.0.2" = {
169 "@polymer/paper-spinner-3.0.2" = {
170 name = "_at_polymer_slash_paper-spinner";
170 name = "_at_polymer_slash_paper-spinner";
171 packageName = "@polymer/paper-spinner";
171 packageName = "@polymer/paper-spinner";
172 version = "3.0.2";
172 version = "3.0.2";
173 src = fetchurl {
173 src = fetchurl {
174 url = "https://registry.npmjs.org/@polymer/paper-spinner/-/paper-spinner-3.0.2.tgz";
174 url = "https://registry.npmjs.org/@polymer/paper-spinner/-/paper-spinner-3.0.2.tgz";
175 sha512 = "XUzu8/4NH+pnNZUTI2MxtOKFAr0EOsW7eGhTg3VBhTh7DDW/q3ewzwYRWnqNJokX9BEnxKMiXXaIeTEBq4k2dw==";
175 sha512 = "XUzu8/4NH+pnNZUTI2MxtOKFAr0EOsW7eGhTg3VBhTh7DDW/q3ewzwYRWnqNJokX9BEnxKMiXXaIeTEBq4k2dw==";
176 };
176 };
177 };
177 };
178 "@polymer/paper-styles-3.0.1" = {
178 "@polymer/paper-styles-3.0.1" = {
179 name = "_at_polymer_slash_paper-styles";
179 name = "_at_polymer_slash_paper-styles";
180 packageName = "@polymer/paper-styles";
180 packageName = "@polymer/paper-styles";
181 version = "3.0.1";
181 version = "3.0.1";
182 src = fetchurl {
182 src = fetchurl {
183 url = "https://registry.npmjs.org/@polymer/paper-styles/-/paper-styles-3.0.1.tgz";
183 url = "https://registry.npmjs.org/@polymer/paper-styles/-/paper-styles-3.0.1.tgz";
184 sha512 = "y6hmObLqlCx602TQiSBKHqjwkE7xmDiFkoxdYGaNjtv4xcysOTdVJsDR/R9UHwIaxJ7gHlthMSykir1nv78++g==";
184 sha512 = "y6hmObLqlCx602TQiSBKHqjwkE7xmDiFkoxdYGaNjtv4xcysOTdVJsDR/R9UHwIaxJ7gHlthMSykir1nv78++g==";
185 };
185 };
186 };
186 };
187 "@polymer/paper-toast-3.0.1" = {
187 "@polymer/paper-toast-3.0.1" = {
188 name = "_at_polymer_slash_paper-toast";
188 name = "_at_polymer_slash_paper-toast";
189 packageName = "@polymer/paper-toast";
189 packageName = "@polymer/paper-toast";
190 version = "3.0.1";
190 version = "3.0.1";
191 src = fetchurl {
191 src = fetchurl {
192 url = "https://registry.npmjs.org/@polymer/paper-toast/-/paper-toast-3.0.1.tgz";
192 url = "https://registry.npmjs.org/@polymer/paper-toast/-/paper-toast-3.0.1.tgz";
193 sha512 = "pizuogzObniDdICUc6dSLrnDt2VzzoRne1gCmbD6sfOATVv5tc8UfrqhA2iHngbNBEbniBiciS3iogdp5KTVUQ==";
193 sha512 = "pizuogzObniDdICUc6dSLrnDt2VzzoRne1gCmbD6sfOATVv5tc8UfrqhA2iHngbNBEbniBiciS3iogdp5KTVUQ==";
194 };
194 };
195 };
195 };
196 "@polymer/paper-toggle-button-3.0.1" = {
196 "@polymer/paper-toggle-button-3.0.1" = {
197 name = "_at_polymer_slash_paper-toggle-button";
197 name = "_at_polymer_slash_paper-toggle-button";
198 packageName = "@polymer/paper-toggle-button";
198 packageName = "@polymer/paper-toggle-button";
199 version = "3.0.1";
199 version = "3.0.1";
200 src = fetchurl {
200 src = fetchurl {
201 url = "https://registry.npmjs.org/@polymer/paper-toggle-button/-/paper-toggle-button-3.0.1.tgz";
201 url = "https://registry.npmjs.org/@polymer/paper-toggle-button/-/paper-toggle-button-3.0.1.tgz";
202 sha512 = "jadZB60fycT7YnSAH0H23LYo6/2HYmMZTtNr9LpdSIRFPLX6mqqxewex92cFz019bMKaRJgORn308hRlJo2u6A==";
202 sha512 = "jadZB60fycT7YnSAH0H23LYo6/2HYmMZTtNr9LpdSIRFPLX6mqqxewex92cFz019bMKaRJgORn308hRlJo2u6A==";
203 };
203 };
204 };
204 };
205 "@polymer/paper-tooltip-3.0.1" = {
205 "@polymer/paper-tooltip-3.0.1" = {
206 name = "_at_polymer_slash_paper-tooltip";
206 name = "_at_polymer_slash_paper-tooltip";
207 packageName = "@polymer/paper-tooltip";
207 packageName = "@polymer/paper-tooltip";
208 version = "3.0.1";
208 version = "3.0.1";
209 src = fetchurl {
209 src = fetchurl {
210 url = "https://registry.npmjs.org/@polymer/paper-tooltip/-/paper-tooltip-3.0.1.tgz";
210 url = "https://registry.npmjs.org/@polymer/paper-tooltip/-/paper-tooltip-3.0.1.tgz";
211 sha512 = "yiUk09opTEnE1lK+tb501ENb+yQBi4p++Ep0eGJAHesVYKVMPNgPphVKkIizkDaU+n0SE+zXfTsRbYyOMDYXSg==";
211 sha512 = "yiUk09opTEnE1lK+tb501ENb+yQBi4p++Ep0eGJAHesVYKVMPNgPphVKkIizkDaU+n0SE+zXfTsRbYyOMDYXSg==";
212 };
212 };
213 };
213 };
214 "@polymer/polymer-3.3.1" = {
214 "@polymer/polymer-3.4.1" = {
215 name = "_at_polymer_slash_polymer";
215 name = "_at_polymer_slash_polymer";
216 packageName = "@polymer/polymer";
216 packageName = "@polymer/polymer";
217 version = "3.3.1";
217 version = "3.4.1";
218 src = fetchurl {
218 src = fetchurl {
219 url = "https://registry.npmjs.org/@polymer/polymer/-/polymer-3.3.1.tgz";
219 url = "https://registry.npmjs.org/@polymer/polymer/-/polymer-3.4.1.tgz";
220 sha512 = "8KaB48tzyMjdsHdxo5KvCAaqmTe7rYDzQAoj/pyEfq9Fp4YfUaS+/xqwYj0GbiDAUNzwkmEQ7dw9cgnRNdKO8A==";
220 sha512 = "KPWnhDZibtqKrUz7enIPOiO4ZQoJNOuLwqrhV2MXzIt3VVnUVJVG5ORz4Z2sgO+UZ+/UZnPD0jqY+jmw/+a9mQ==";
221 };
221 };
222 };
222 };
223 "@types/clone-0.1.30" = {
223 "@types/clone-0.1.30" = {
224 name = "_at_types_slash_clone";
224 name = "_at_types_slash_clone";
225 packageName = "@types/clone";
225 packageName = "@types/clone";
226 version = "0.1.30";
226 version = "0.1.30";
227 src = fetchurl {
227 src = fetchurl {
228 url = "https://registry.npmjs.org/@types/clone/-/clone-0.1.30.tgz";
228 url = "https://registry.npmjs.org/@types/clone/-/clone-0.1.30.tgz";
229 sha1 = "e7365648c1b42136a59c7d5040637b3b5c83b614";
229 sha1 = "e7365648c1b42136a59c7d5040637b3b5c83b614";
230 };
230 };
231 };
231 };
232 "@types/node-6.14.10" = {
232 "@types/node-6.14.10" = {
233 name = "_at_types_slash_node";
233 name = "_at_types_slash_node";
234 packageName = "@types/node";
234 packageName = "@types/node";
235 version = "6.14.10";
235 version = "6.14.10";
236 src = fetchurl {
236 src = fetchurl {
237 url = "https://registry.npmjs.org/@types/node/-/node-6.14.10.tgz";
237 url = "https://registry.npmjs.org/@types/node/-/node-6.14.10.tgz";
238 sha512 = "pF4HjZGSog75kGq7B1InK/wt/N08BuPATo+7HRfv7gZUzccebwv/fmWVGs/j6LvSiLWpCuGGhql51M/wcQsNzA==";
238 sha512 = "pF4HjZGSog75kGq7B1InK/wt/N08BuPATo+7HRfv7gZUzccebwv/fmWVGs/j6LvSiLWpCuGGhql51M/wcQsNzA==";
239 };
239 };
240 };
240 };
241 "@types/parse5-2.2.34" = {
241 "@types/parse5-2.2.34" = {
242 name = "_at_types_slash_parse5";
242 name = "_at_types_slash_parse5";
243 packageName = "@types/parse5";
243 packageName = "@types/parse5";
244 version = "2.2.34";
244 version = "2.2.34";
245 src = fetchurl {
245 src = fetchurl {
246 url = "https://registry.npmjs.org/@types/parse5/-/parse5-2.2.34.tgz";
246 url = "https://registry.npmjs.org/@types/parse5/-/parse5-2.2.34.tgz";
247 sha1 = "e3870a10e82735a720f62d71dcd183ba78ef3a9d";
247 sha1 = "e3870a10e82735a720f62d71dcd183ba78ef3a9d";
248 };
248 };
249 };
249 };
250 "@webassemblyjs/ast-1.7.10" = {
250 "@webassemblyjs/ast-1.7.10" = {
251 name = "_at_webassemblyjs_slash_ast";
251 name = "_at_webassemblyjs_slash_ast";
252 packageName = "@webassemblyjs/ast";
252 packageName = "@webassemblyjs/ast";
253 version = "1.7.10";
253 version = "1.7.10";
254 src = fetchurl {
254 src = fetchurl {
255 url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.10.tgz";
255 url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.10.tgz";
256 sha512 = "wTUeaByYN2EA6qVqhbgavtGc7fLTOx0glG2IBsFlrFG51uXIGlYBTyIZMf4SPLo3v1bgV/7lBN3l7Z0R6Hswew==";
256 sha512 = "wTUeaByYN2EA6qVqhbgavtGc7fLTOx0glG2IBsFlrFG51uXIGlYBTyIZMf4SPLo3v1bgV/7lBN3l7Z0R6Hswew==";
257 };
257 };
258 };
258 };
259 "@webassemblyjs/floating-point-hex-parser-1.7.10" = {
259 "@webassemblyjs/floating-point-hex-parser-1.7.10" = {
260 name = "_at_webassemblyjs_slash_floating-point-hex-parser";
260 name = "_at_webassemblyjs_slash_floating-point-hex-parser";
261 packageName = "@webassemblyjs/floating-point-hex-parser";
261 packageName = "@webassemblyjs/floating-point-hex-parser";
262 version = "1.7.10";
262 version = "1.7.10";
263 src = fetchurl {
263 src = fetchurl {
264 url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.10.tgz";
264 url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.10.tgz";
265 sha512 = "gMsGbI6I3p/P1xL2UxqhNh1ga2HCsx5VBB2i5VvJFAaqAjd2PBTRULc3BpTydabUQEGlaZCzEUQhLoLG7TvEYQ==";
265 sha512 = "gMsGbI6I3p/P1xL2UxqhNh1ga2HCsx5VBB2i5VvJFAaqAjd2PBTRULc3BpTydabUQEGlaZCzEUQhLoLG7TvEYQ==";
266 };
266 };
267 };
267 };
268 "@webassemblyjs/helper-api-error-1.7.10" = {
268 "@webassemblyjs/helper-api-error-1.7.10" = {
269 name = "_at_webassemblyjs_slash_helper-api-error";
269 name = "_at_webassemblyjs_slash_helper-api-error";
270 packageName = "@webassemblyjs/helper-api-error";
270 packageName = "@webassemblyjs/helper-api-error";
271 version = "1.7.10";
271 version = "1.7.10";
272 src = fetchurl {
272 src = fetchurl {
273 url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.10.tgz";
273 url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.10.tgz";
274 sha512 = "DoYRlPWtuw3yd5BOr9XhtrmB6X1enYF0/54yNvQWGXZEPDF5PJVNI7zQ7gkcKfTESzp8bIBWailaFXEK/jjCsw==";
274 sha512 = "DoYRlPWtuw3yd5BOr9XhtrmB6X1enYF0/54yNvQWGXZEPDF5PJVNI7zQ7gkcKfTESzp8bIBWailaFXEK/jjCsw==";
275 };
275 };
276 };
276 };
277 "@webassemblyjs/helper-buffer-1.7.10" = {
277 "@webassemblyjs/helper-buffer-1.7.10" = {
278 name = "_at_webassemblyjs_slash_helper-buffer";
278 name = "_at_webassemblyjs_slash_helper-buffer";
279 packageName = "@webassemblyjs/helper-buffer";
279 packageName = "@webassemblyjs/helper-buffer";
280 version = "1.7.10";
280 version = "1.7.10";
281 src = fetchurl {
281 src = fetchurl {
282 url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.10.tgz";
282 url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.10.tgz";
283 sha512 = "+RMU3dt/dPh4EpVX4u5jxsOlw22tp3zjqE0m3ftU2tsYxnPULb4cyHlgaNd2KoWuwasCQqn8Mhr+TTdbtj3LlA==";
283 sha512 = "+RMU3dt/dPh4EpVX4u5jxsOlw22tp3zjqE0m3ftU2tsYxnPULb4cyHlgaNd2KoWuwasCQqn8Mhr+TTdbtj3LlA==";
284 };
284 };
285 };
285 };
286 "@webassemblyjs/helper-code-frame-1.7.10" = {
286 "@webassemblyjs/helper-code-frame-1.7.10" = {
287 name = "_at_webassemblyjs_slash_helper-code-frame";
287 name = "_at_webassemblyjs_slash_helper-code-frame";
288 packageName = "@webassemblyjs/helper-code-frame";
288 packageName = "@webassemblyjs/helper-code-frame";
289 version = "1.7.10";
289 version = "1.7.10";
290 src = fetchurl {
290 src = fetchurl {
291 url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.10.tgz";
291 url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.10.tgz";
292 sha512 = "UiytbpKAULOEab2hUZK2ywXen4gWJVrgxtwY3Kn+eZaaSWaRM8z/7dAXRSoamhKFiBh1uaqxzE/XD9BLlug3gw==";
292 sha512 = "UiytbpKAULOEab2hUZK2ywXen4gWJVrgxtwY3Kn+eZaaSWaRM8z/7dAXRSoamhKFiBh1uaqxzE/XD9BLlug3gw==";
293 };
293 };
294 };
294 };
295 "@webassemblyjs/helper-fsm-1.7.10" = {
295 "@webassemblyjs/helper-fsm-1.7.10" = {
296 name = "_at_webassemblyjs_slash_helper-fsm";
296 name = "_at_webassemblyjs_slash_helper-fsm";
297 packageName = "@webassemblyjs/helper-fsm";
297 packageName = "@webassemblyjs/helper-fsm";
298 version = "1.7.10";
298 version = "1.7.10";
299 src = fetchurl {
299 src = fetchurl {
300 url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.10.tgz";
300 url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.10.tgz";
301 sha512 = "w2vDtUK9xeSRtt5+RnnlRCI7wHEvLjF0XdnxJpgx+LJOvklTZPqWkuy/NhwHSLP19sm9H8dWxKeReMR7sCkGZA==";
301 sha512 = "w2vDtUK9xeSRtt5+RnnlRCI7wHEvLjF0XdnxJpgx+LJOvklTZPqWkuy/NhwHSLP19sm9H8dWxKeReMR7sCkGZA==";
302 };
302 };
303 };
303 };
304 "@webassemblyjs/helper-module-context-1.7.10" = {
304 "@webassemblyjs/helper-module-context-1.7.10" = {
305 name = "_at_webassemblyjs_slash_helper-module-context";
305 name = "_at_webassemblyjs_slash_helper-module-context";
306 packageName = "@webassemblyjs/helper-module-context";
306 packageName = "@webassemblyjs/helper-module-context";
307 version = "1.7.10";
307 version = "1.7.10";
308 src = fetchurl {
308 src = fetchurl {
309 url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.10.tgz";
309 url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.10.tgz";
310 sha512 = "yE5x/LzZ3XdPdREmJijxzfrf+BDRewvO0zl8kvORgSWmxpRrkqY39KZSq6TSgIWBxkK4SrzlS3BsMCv2s1FpsQ==";
310 sha512 = "yE5x/LzZ3XdPdREmJijxzfrf+BDRewvO0zl8kvORgSWmxpRrkqY39KZSq6TSgIWBxkK4SrzlS3BsMCv2s1FpsQ==";
311 };
311 };
312 };
312 };
313 "@webassemblyjs/helper-wasm-bytecode-1.7.10" = {
313 "@webassemblyjs/helper-wasm-bytecode-1.7.10" = {
314 name = "_at_webassemblyjs_slash_helper-wasm-bytecode";
314 name = "_at_webassemblyjs_slash_helper-wasm-bytecode";
315 packageName = "@webassemblyjs/helper-wasm-bytecode";
315 packageName = "@webassemblyjs/helper-wasm-bytecode";
316 version = "1.7.10";
316 version = "1.7.10";
317 src = fetchurl {
317 src = fetchurl {
318 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.10.tgz";
318 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.10.tgz";
319 sha512 = "u5qy4SJ/OrxKxZqJ9N3qH4ZQgHaAzsopsYwLvoWJY6Q33r8PhT3VPyNMaJ7ZFoqzBnZlCcS/0f4Sp8WBxylXfg==";
319 sha512 = "u5qy4SJ/OrxKxZqJ9N3qH4ZQgHaAzsopsYwLvoWJY6Q33r8PhT3VPyNMaJ7ZFoqzBnZlCcS/0f4Sp8WBxylXfg==";
320 };
320 };
321 };
321 };
322 "@webassemblyjs/helper-wasm-section-1.7.10" = {
322 "@webassemblyjs/helper-wasm-section-1.7.10" = {
323 name = "_at_webassemblyjs_slash_helper-wasm-section";
323 name = "_at_webassemblyjs_slash_helper-wasm-section";
324 packageName = "@webassemblyjs/helper-wasm-section";
324 packageName = "@webassemblyjs/helper-wasm-section";
325 version = "1.7.10";
325 version = "1.7.10";
326 src = fetchurl {
326 src = fetchurl {
327 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.10.tgz";
327 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.10.tgz";
328 sha512 = "Ecvww6sCkcjatcyctUrn22neSJHLN/TTzolMGG/N7S9rpbsTZ8c6Bl98GpSpV77EvzNijiNRHBG0+JO99qKz6g==";
328 sha512 = "Ecvww6sCkcjatcyctUrn22neSJHLN/TTzolMGG/N7S9rpbsTZ8c6Bl98GpSpV77EvzNijiNRHBG0+JO99qKz6g==";
329 };
329 };
330 };
330 };
331 "@webassemblyjs/ieee754-1.7.10" = {
331 "@webassemblyjs/ieee754-1.7.10" = {
332 name = "_at_webassemblyjs_slash_ieee754";
332 name = "_at_webassemblyjs_slash_ieee754";
333 packageName = "@webassemblyjs/ieee754";
333 packageName = "@webassemblyjs/ieee754";
334 version = "1.7.10";
334 version = "1.7.10";
335 src = fetchurl {
335 src = fetchurl {
336 url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.10.tgz";
336 url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.10.tgz";
337 sha512 = "HRcWcY+YWt4+s/CvQn+vnSPfRaD4KkuzQFt5MNaELXXHSjelHlSEA8ZcqT69q0GTIuLWZ6JaoKar4yWHVpZHsQ==";
337 sha512 = "HRcWcY+YWt4+s/CvQn+vnSPfRaD4KkuzQFt5MNaELXXHSjelHlSEA8ZcqT69q0GTIuLWZ6JaoKar4yWHVpZHsQ==";
338 };
338 };
339 };
339 };
340 "@webassemblyjs/leb128-1.7.10" = {
340 "@webassemblyjs/leb128-1.7.10" = {
341 name = "_at_webassemblyjs_slash_leb128";
341 name = "_at_webassemblyjs_slash_leb128";
342 packageName = "@webassemblyjs/leb128";
342 packageName = "@webassemblyjs/leb128";
343 version = "1.7.10";
343 version = "1.7.10";
344 src = fetchurl {
344 src = fetchurl {
345 url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.10.tgz";
345 url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.10.tgz";
346 sha512 = "og8MciYlA8hvzCLR71hCuZKPbVBfLQeHv7ImKZ4nlyxrYbG7uJHYtHiHu6OV9SqrGuD03H/HtXC4Bgdjfm9FHw==";
346 sha512 = "og8MciYlA8hvzCLR71hCuZKPbVBfLQeHv7ImKZ4nlyxrYbG7uJHYtHiHu6OV9SqrGuD03H/HtXC4Bgdjfm9FHw==";
347 };
347 };
348 };
348 };
349 "@webassemblyjs/utf8-1.7.10" = {
349 "@webassemblyjs/utf8-1.7.10" = {
350 name = "_at_webassemblyjs_slash_utf8";
350 name = "_at_webassemblyjs_slash_utf8";
351 packageName = "@webassemblyjs/utf8";
351 packageName = "@webassemblyjs/utf8";
352 version = "1.7.10";
352 version = "1.7.10";
353 src = fetchurl {
353 src = fetchurl {
354 url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.10.tgz";
354 url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.10.tgz";
355 sha512 = "Ng6Pxv6siyZp635xCSnH3mKmIFgqWPCcGdoo0GBYgyGdxu7cUj4agV7Uu1a8REP66UYUFXJLudeGgd4RvuJAnQ==";
355 sha512 = "Ng6Pxv6siyZp635xCSnH3mKmIFgqWPCcGdoo0GBYgyGdxu7cUj4agV7Uu1a8REP66UYUFXJLudeGgd4RvuJAnQ==";
356 };
356 };
357 };
357 };
358 "@webassemblyjs/wasm-edit-1.7.10" = {
358 "@webassemblyjs/wasm-edit-1.7.10" = {
359 name = "_at_webassemblyjs_slash_wasm-edit";
359 name = "_at_webassemblyjs_slash_wasm-edit";
360 packageName = "@webassemblyjs/wasm-edit";
360 packageName = "@webassemblyjs/wasm-edit";
361 version = "1.7.10";
361 version = "1.7.10";
362 src = fetchurl {
362 src = fetchurl {
363 url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.10.tgz";
363 url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.10.tgz";
364 sha512 = "e9RZFQlb+ZuYcKRcW9yl+mqX/Ycj9+3/+ppDI8nEE/NCY6FoK8f3dKBcfubYV/HZn44b+ND4hjh+4BYBt+sDnA==";
364 sha512 = "e9RZFQlb+ZuYcKRcW9yl+mqX/Ycj9+3/+ppDI8nEE/NCY6FoK8f3dKBcfubYV/HZn44b+ND4hjh+4BYBt+sDnA==";
365 };
365 };
366 };
366 };
367 "@webassemblyjs/wasm-gen-1.7.10" = {
367 "@webassemblyjs/wasm-gen-1.7.10" = {
368 name = "_at_webassemblyjs_slash_wasm-gen";
368 name = "_at_webassemblyjs_slash_wasm-gen";
369 packageName = "@webassemblyjs/wasm-gen";
369 packageName = "@webassemblyjs/wasm-gen";
370 version = "1.7.10";
370 version = "1.7.10";
371 src = fetchurl {
371 src = fetchurl {
372 url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.10.tgz";
372 url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.10.tgz";
373 sha512 = "M0lb6cO2Y0PzDye/L39PqwV+jvO+2YxEG5ax+7dgq7EwXdAlpOMx1jxyXJTScQoeTpzOPIb+fLgX/IkLF8h2yw==";
373 sha512 = "M0lb6cO2Y0PzDye/L39PqwV+jvO+2YxEG5ax+7dgq7EwXdAlpOMx1jxyXJTScQoeTpzOPIb+fLgX/IkLF8h2yw==";
374 };
374 };
375 };
375 };
376 "@webassemblyjs/wasm-opt-1.7.10" = {
376 "@webassemblyjs/wasm-opt-1.7.10" = {
377 name = "_at_webassemblyjs_slash_wasm-opt";
377 name = "_at_webassemblyjs_slash_wasm-opt";
378 packageName = "@webassemblyjs/wasm-opt";
378 packageName = "@webassemblyjs/wasm-opt";
379 version = "1.7.10";
379 version = "1.7.10";
380 src = fetchurl {
380 src = fetchurl {
381 url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.10.tgz";
381 url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.10.tgz";
382 sha512 = "R66IHGCdicgF5ZliN10yn5HaC7vwYAqrSVJGjtJJQp5+QNPBye6heWdVH/at40uh0uoaDN/UVUfXK0gvuUqtVg==";
382 sha512 = "R66IHGCdicgF5ZliN10yn5HaC7vwYAqrSVJGjtJJQp5+QNPBye6heWdVH/at40uh0uoaDN/UVUfXK0gvuUqtVg==";
383 };
383 };
384 };
384 };
385 "@webassemblyjs/wasm-parser-1.7.10" = {
385 "@webassemblyjs/wasm-parser-1.7.10" = {
386 name = "_at_webassemblyjs_slash_wasm-parser";
386 name = "_at_webassemblyjs_slash_wasm-parser";
387 packageName = "@webassemblyjs/wasm-parser";
387 packageName = "@webassemblyjs/wasm-parser";
388 version = "1.7.10";
388 version = "1.7.10";
389 src = fetchurl {
389 src = fetchurl {
390 url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.10.tgz";
390 url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.10.tgz";
391 sha512 = "AEv8mkXVK63n/iDR3T693EzoGPnNAwKwT3iHmKJNBrrALAhhEjuPzo/lTE4U7LquEwyvg5nneSNdTdgrBaGJcA==";
391 sha512 = "AEv8mkXVK63n/iDR3T693EzoGPnNAwKwT3iHmKJNBrrALAhhEjuPzo/lTE4U7LquEwyvg5nneSNdTdgrBaGJcA==";
392 };
392 };
393 };
393 };
394 "@webassemblyjs/wast-parser-1.7.10" = {
394 "@webassemblyjs/wast-parser-1.7.10" = {
395 name = "_at_webassemblyjs_slash_wast-parser";
395 name = "_at_webassemblyjs_slash_wast-parser";
396 packageName = "@webassemblyjs/wast-parser";
396 packageName = "@webassemblyjs/wast-parser";
397 version = "1.7.10";
397 version = "1.7.10";
398 src = fetchurl {
398 src = fetchurl {
399 url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.10.tgz";
399 url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.10.tgz";
400 sha512 = "YTPEtOBljkCL0VjDp4sHe22dAYSm3ZwdJ9+2NTGdtC7ayNvuip1wAhaAS8Zt9Q6SW9E5Jf5PX7YE3XWlrzR9cw==";
400 sha512 = "YTPEtOBljkCL0VjDp4sHe22dAYSm3ZwdJ9+2NTGdtC7ayNvuip1wAhaAS8Zt9Q6SW9E5Jf5PX7YE3XWlrzR9cw==";
401 };
401 };
402 };
402 };
403 "@webassemblyjs/wast-printer-1.7.10" = {
403 "@webassemblyjs/wast-printer-1.7.10" = {
404 name = "_at_webassemblyjs_slash_wast-printer";
404 name = "_at_webassemblyjs_slash_wast-printer";
405 packageName = "@webassemblyjs/wast-printer";
405 packageName = "@webassemblyjs/wast-printer";
406 version = "1.7.10";
406 version = "1.7.10";
407 src = fetchurl {
407 src = fetchurl {
408 url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.10.tgz";
408 url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.10.tgz";
409 sha512 = "mJ3QKWtCchL1vhU/kZlJnLPuQZnlDOdZsyP0bbLWPGdYsQDnSBvyTLhzwBA3QAMlzEL9V4JHygEmK6/OTEyytA==";
409 sha512 = "mJ3QKWtCchL1vhU/kZlJnLPuQZnlDOdZsyP0bbLWPGdYsQDnSBvyTLhzwBA3QAMlzEL9V4JHygEmK6/OTEyytA==";
410 };
410 };
411 };
411 };
412 "@webcomponents/shadycss-1.9.6" = {
412 "@webcomponents/shadycss-1.9.6" = {
413 name = "_at_webcomponents_slash_shadycss";
413 name = "_at_webcomponents_slash_shadycss";
414 packageName = "@webcomponents/shadycss";
414 packageName = "@webcomponents/shadycss";
415 version = "1.9.6";
415 version = "1.9.6";
416 src = fetchurl {
416 src = fetchurl {
417 url = "https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.9.6.tgz";
417 url = "https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.9.6.tgz";
418 sha512 = "5fFjvP0jQJZoXK6YzYeYcIDGJ5oEsdjr1L9VaYLw5yxNd4aRz4srMpwCwldeNG0A6Hvr9igbG7fCsBeiiCXd7A==";
418 sha512 = "5fFjvP0jQJZoXK6YzYeYcIDGJ5oEsdjr1L9VaYLw5yxNd4aRz4srMpwCwldeNG0A6Hvr9igbG7fCsBeiiCXd7A==";
419 };
419 };
420 };
420 };
421 "@webcomponents/webcomponentsjs-2.4.3" = {
421 "@webcomponents/webcomponentsjs-2.4.3" = {
422 name = "_at_webcomponents_slash_webcomponentsjs";
422 name = "_at_webcomponents_slash_webcomponentsjs";
423 packageName = "@webcomponents/webcomponentsjs";
423 packageName = "@webcomponents/webcomponentsjs";
424 version = "2.4.3";
424 version = "2.4.3";
425 src = fetchurl {
425 src = fetchurl {
426 url = "https://registry.npmjs.org/@webcomponents/webcomponentsjs/-/webcomponentsjs-2.4.3.tgz";
426 url = "https://registry.npmjs.org/@webcomponents/webcomponentsjs/-/webcomponentsjs-2.4.3.tgz";
427 sha512 = "cV4+sAmshf8ysU2USutrSRYQkJzEYKHsRCGa0CkMElGpG5747VHtkfsW3NdVIBV/m2MDKXTDydT4lkrysH7IFA==";
427 sha512 = "cV4+sAmshf8ysU2USutrSRYQkJzEYKHsRCGa0CkMElGpG5747VHtkfsW3NdVIBV/m2MDKXTDydT4lkrysH7IFA==";
428 };
428 };
429 };
429 };
430 "@xtuc/ieee754-1.2.0" = {
430 "@xtuc/ieee754-1.2.0" = {
431 name = "_at_xtuc_slash_ieee754";
431 name = "_at_xtuc_slash_ieee754";
432 packageName = "@xtuc/ieee754";
432 packageName = "@xtuc/ieee754";
433 version = "1.2.0";
433 version = "1.2.0";
434 src = fetchurl {
434 src = fetchurl {
435 url = "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz";
435 url = "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz";
436 sha512 = "DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==";
436 sha512 = "DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==";
437 };
437 };
438 };
438 };
439 "@xtuc/long-4.2.1" = {
439 "@xtuc/long-4.2.1" = {
440 name = "_at_xtuc_slash_long";
440 name = "_at_xtuc_slash_long";
441 packageName = "@xtuc/long";
441 packageName = "@xtuc/long";
442 version = "4.2.1";
442 version = "4.2.1";
443 src = fetchurl {
443 src = fetchurl {
444 url = "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz";
444 url = "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz";
445 sha512 = "FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==";
445 sha512 = "FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==";
446 };
446 };
447 };
447 };
448 "abbrev-1.1.1" = {
448 "abbrev-1.1.1" = {
449 name = "abbrev";
449 name = "abbrev";
450 packageName = "abbrev";
450 packageName = "abbrev";
451 version = "1.1.1";
451 version = "1.1.1";
452 src = fetchurl {
452 src = fetchurl {
453 url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
453 url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
454 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
454 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
455 };
455 };
456 };
456 };
457 "acorn-3.3.0" = {
457 "acorn-3.3.0" = {
458 name = "acorn";
458 name = "acorn";
459 packageName = "acorn";
459 packageName = "acorn";
460 version = "3.3.0";
460 version = "3.3.0";
461 src = fetchurl {
461 src = fetchurl {
462 url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
462 url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
463 sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
463 sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
464 };
464 };
465 };
465 };
466 "acorn-5.7.4" = {
466 "acorn-5.7.4" = {
467 name = "acorn";
467 name = "acorn";
468 packageName = "acorn";
468 packageName = "acorn";
469 version = "5.7.4";
469 version = "5.7.4";
470 src = fetchurl {
470 src = fetchurl {
471 url = "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz";
471 url = "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz";
472 sha512 = "1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==";
472 sha512 = "1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==";
473 };
473 };
474 };
474 };
475 "acorn-dynamic-import-3.0.0" = {
475 "acorn-dynamic-import-3.0.0" = {
476 name = "acorn-dynamic-import";
476 name = "acorn-dynamic-import";
477 packageName = "acorn-dynamic-import";
477 packageName = "acorn-dynamic-import";
478 version = "3.0.0";
478 version = "3.0.0";
479 src = fetchurl {
479 src = fetchurl {
480 url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz";
480 url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz";
481 sha512 = "zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==";
481 sha512 = "zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==";
482 };
482 };
483 };
483 };
484 "acorn-jsx-3.0.1" = {
484 "acorn-jsx-3.0.1" = {
485 name = "acorn-jsx";
485 name = "acorn-jsx";
486 packageName = "acorn-jsx";
486 packageName = "acorn-jsx";
487 version = "3.0.1";
487 version = "3.0.1";
488 src = fetchurl {
488 src = fetchurl {
489 url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
489 url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
490 sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
490 sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
491 };
491 };
492 };
492 };
493 "ajv-4.11.8" = {
493 "ajv-4.11.8" = {
494 name = "ajv";
494 name = "ajv";
495 packageName = "ajv";
495 packageName = "ajv";
496 version = "4.11.8";
496 version = "4.11.8";
497 src = fetchurl {
497 src = fetchurl {
498 url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
498 url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
499 sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
499 sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
500 };
500 };
501 };
501 };
502 "ajv-6.12.0" = {
502 "ajv-6.12.2" = {
503 name = "ajv";
503 name = "ajv";
504 packageName = "ajv";
504 packageName = "ajv";
505 version = "6.12.0";
505 version = "6.12.2";
506 src = fetchurl {
506 src = fetchurl {
507 url = "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz";
507 url = "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz";
508 sha512 = "D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==";
508 sha512 = "k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==";
509 };
509 };
510 };
510 };
511 "ajv-keywords-3.4.1" = {
511 "ajv-keywords-3.4.1" = {
512 name = "ajv-keywords";
512 name = "ajv-keywords";
513 packageName = "ajv-keywords";
513 packageName = "ajv-keywords";
514 version = "3.4.1";
514 version = "3.4.1";
515 src = fetchurl {
515 src = fetchurl {
516 url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz";
516 url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz";
517 sha512 = "RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==";
517 sha512 = "RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==";
518 };
518 };
519 };
519 };
520 "align-text-0.1.4" = {
520 "align-text-0.1.4" = {
521 name = "align-text";
521 name = "align-text";
522 packageName = "align-text";
522 packageName = "align-text";
523 version = "0.1.4";
523 version = "0.1.4";
524 src = fetchurl {
524 src = fetchurl {
525 url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
525 url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
526 sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
526 sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
527 };
527 };
528 };
528 };
529 "alphanum-sort-1.0.2" = {
529 "alphanum-sort-1.0.2" = {
530 name = "alphanum-sort";
530 name = "alphanum-sort";
531 packageName = "alphanum-sort";
531 packageName = "alphanum-sort";
532 version = "1.0.2";
532 version = "1.0.2";
533 src = fetchurl {
533 src = fetchurl {
534 url = "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz";
534 url = "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz";
535 sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3";
535 sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3";
536 };
536 };
537 };
537 };
538 "amdefine-1.0.1" = {
538 "amdefine-1.0.1" = {
539 name = "amdefine";
539 name = "amdefine";
540 packageName = "amdefine";
540 packageName = "amdefine";
541 version = "1.0.1";
541 version = "1.0.1";
542 src = fetchurl {
542 src = fetchurl {
543 url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
543 url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
544 sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
544 sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
545 };
545 };
546 };
546 };
547 "ansi-regex-0.2.1" = {
547 "ansi-regex-0.2.1" = {
548 name = "ansi-regex";
548 name = "ansi-regex";
549 packageName = "ansi-regex";
549 packageName = "ansi-regex";
550 version = "0.2.1";
550 version = "0.2.1";
551 src = fetchurl {
551 src = fetchurl {
552 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
552 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
553 sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
553 sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
554 };
554 };
555 };
555 };
556 "ansi-regex-2.1.1" = {
556 "ansi-regex-2.1.1" = {
557 name = "ansi-regex";
557 name = "ansi-regex";
558 packageName = "ansi-regex";
558 packageName = "ansi-regex";
559 version = "2.1.1";
559 version = "2.1.1";
560 src = fetchurl {
560 src = fetchurl {
561 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
561 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
562 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
562 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
563 };
563 };
564 };
564 };
565 "ansi-regex-3.0.0" = {
565 "ansi-regex-3.0.0" = {
566 name = "ansi-regex";
566 name = "ansi-regex";
567 packageName = "ansi-regex";
567 packageName = "ansi-regex";
568 version = "3.0.0";
568 version = "3.0.0";
569 src = fetchurl {
569 src = fetchurl {
570 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
570 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
571 sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
571 sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
572 };
572 };
573 };
573 };
574 "ansi-styles-1.1.0" = {
574 "ansi-styles-1.1.0" = {
575 name = "ansi-styles";
575 name = "ansi-styles";
576 packageName = "ansi-styles";
576 packageName = "ansi-styles";
577 version = "1.1.0";
577 version = "1.1.0";
578 src = fetchurl {
578 src = fetchurl {
579 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz";
579 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz";
580 sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de";
580 sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de";
581 };
581 };
582 };
582 };
583 "ansi-styles-2.2.1" = {
583 "ansi-styles-2.2.1" = {
584 name = "ansi-styles";
584 name = "ansi-styles";
585 packageName = "ansi-styles";
585 packageName = "ansi-styles";
586 version = "2.2.1";
586 version = "2.2.1";
587 src = fetchurl {
587 src = fetchurl {
588 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
588 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
589 sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
589 sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
590 };
590 };
591 };
591 };
592 "ansi-styles-3.2.1" = {
592 "ansi-styles-3.2.1" = {
593 name = "ansi-styles";
593 name = "ansi-styles";
594 packageName = "ansi-styles";
594 packageName = "ansi-styles";
595 version = "3.2.1";
595 version = "3.2.1";
596 src = fetchurl {
596 src = fetchurl {
597 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz";
597 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz";
598 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
598 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
599 };
599 };
600 };
600 };
601 "anymatch-2.0.0" = {
601 "anymatch-2.0.0" = {
602 name = "anymatch";
602 name = "anymatch";
603 packageName = "anymatch";
603 packageName = "anymatch";
604 version = "2.0.0";
604 version = "2.0.0";
605 src = fetchurl {
605 src = fetchurl {
606 url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
606 url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
607 sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
607 sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
608 };
608 };
609 };
609 };
610 "appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1" = {
610 "appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1" = {
611 name = "appenlight-client";
611 name = "appenlight-client";
612 packageName = "appenlight-client";
612 packageName = "appenlight-client";
613 version = "0.5.1";
613 version = "0.5.1";
614 src = fetchgit {
614 src = fetchgit {
615 url = "https://git@github.com/AppEnlight/appenlight-client-js.git";
615 url = "https://git@github.com/AppEnlight/appenlight-client-js.git";
616 rev = "14712c64c230fbbe94fcbc8094aef5eb3b90b307";
616 rev = "14712c64c230fbbe94fcbc8094aef5eb3b90b307";
617 sha256 = "05146f5b932f166c9a4db601bc9c13ae686899653d1dd03121652631f9bc83d6";
617 sha256 = "05146f5b932f166c9a4db601bc9c13ae686899653d1dd03121652631f9bc83d6";
618 };
618 };
619 };
619 };
620 "aproba-1.2.0" = {
620 "aproba-1.2.0" = {
621 name = "aproba";
621 name = "aproba";
622 packageName = "aproba";
622 packageName = "aproba";
623 version = "1.2.0";
623 version = "1.2.0";
624 src = fetchurl {
624 src = fetchurl {
625 url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
625 url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
626 sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
626 sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
627 };
627 };
628 };
628 };
629 "argparse-0.1.16" = {
629 "argparse-0.1.16" = {
630 name = "argparse";
630 name = "argparse";
631 packageName = "argparse";
631 packageName = "argparse";
632 version = "0.1.16";
632 version = "0.1.16";
633 src = fetchurl {
633 src = fetchurl {
634 url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz";
634 url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz";
635 sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
635 sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
636 };
636 };
637 };
637 };
638 "argparse-1.0.10" = {
638 "argparse-1.0.10" = {
639 name = "argparse";
639 name = "argparse";
640 packageName = "argparse";
640 packageName = "argparse";
641 version = "1.0.10";
641 version = "1.0.10";
642 src = fetchurl {
642 src = fetchurl {
643 url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
643 url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
644 sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
644 sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
645 };
645 };
646 };
646 };
647 "arr-diff-4.0.0" = {
647 "arr-diff-4.0.0" = {
648 name = "arr-diff";
648 name = "arr-diff";
649 packageName = "arr-diff";
649 packageName = "arr-diff";
650 version = "4.0.0";
650 version = "4.0.0";
651 src = fetchurl {
651 src = fetchurl {
652 url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
652 url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
653 sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
653 sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
654 };
654 };
655 };
655 };
656 "arr-flatten-1.1.0" = {
656 "arr-flatten-1.1.0" = {
657 name = "arr-flatten";
657 name = "arr-flatten";
658 packageName = "arr-flatten";
658 packageName = "arr-flatten";
659 version = "1.1.0";
659 version = "1.1.0";
660 src = fetchurl {
660 src = fetchurl {
661 url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
661 url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
662 sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
662 sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
663 };
663 };
664 };
664 };
665 "arr-union-3.1.0" = {
665 "arr-union-3.1.0" = {
666 name = "arr-union";
666 name = "arr-union";
667 packageName = "arr-union";
667 packageName = "arr-union";
668 version = "3.1.0";
668 version = "3.1.0";
669 src = fetchurl {
669 src = fetchurl {
670 url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
670 url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
671 sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
671 sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
672 };
672 };
673 };
673 };
674 "array-each-1.0.1" = {
674 "array-each-1.0.1" = {
675 name = "array-each";
675 name = "array-each";
676 packageName = "array-each";
676 packageName = "array-each";
677 version = "1.0.1";
677 version = "1.0.1";
678 src = fetchurl {
678 src = fetchurl {
679 url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
679 url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
680 sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
680 sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
681 };
681 };
682 };
682 };
683 "array-slice-1.1.0" = {
683 "array-slice-1.1.0" = {
684 name = "array-slice";
684 name = "array-slice";
685 packageName = "array-slice";
685 packageName = "array-slice";
686 version = "1.1.0";
686 version = "1.1.0";
687 src = fetchurl {
687 src = fetchurl {
688 url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
688 url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
689 sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==";
689 sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==";
690 };
690 };
691 };
691 };
692 "array-union-1.0.2" = {
692 "array-union-1.0.2" = {
693 name = "array-union";
693 name = "array-union";
694 packageName = "array-union";
694 packageName = "array-union";
695 version = "1.0.2";
695 version = "1.0.2";
696 src = fetchurl {
696 src = fetchurl {
697 url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
697 url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
698 sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
698 sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
699 };
699 };
700 };
700 };
701 "array-uniq-1.0.3" = {
701 "array-uniq-1.0.3" = {
702 name = "array-uniq";
702 name = "array-uniq";
703 packageName = "array-uniq";
703 packageName = "array-uniq";
704 version = "1.0.3";
704 version = "1.0.3";
705 src = fetchurl {
705 src = fetchurl {
706 url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
706 url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
707 sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
707 sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
708 };
708 };
709 };
709 };
710 "array-unique-0.3.2" = {
710 "array-unique-0.3.2" = {
711 name = "array-unique";
711 name = "array-unique";
712 packageName = "array-unique";
712 packageName = "array-unique";
713 version = "0.3.2";
713 version = "0.3.2";
714 src = fetchurl {
714 src = fetchurl {
715 url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
715 url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
716 sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
716 sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
717 };
717 };
718 };
718 };
719 "asap-2.0.6" = {
719 "asap-2.0.6" = {
720 name = "asap";
720 name = "asap";
721 packageName = "asap";
721 packageName = "asap";
722 version = "2.0.6";
722 version = "2.0.6";
723 src = fetchurl {
723 src = fetchurl {
724 url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
724 url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
725 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
725 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
726 };
726 };
727 };
727 };
728 "asn1-0.2.4" = {
728 "asn1-0.2.4" = {
729 name = "asn1";
729 name = "asn1";
730 packageName = "asn1";
730 packageName = "asn1";
731 version = "0.2.4";
731 version = "0.2.4";
732 src = fetchurl {
732 src = fetchurl {
733 url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
733 url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
734 sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
734 sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
735 };
735 };
736 };
736 };
737 "asn1.js-4.10.1" = {
737 "asn1.js-4.10.1" = {
738 name = "asn1.js";
738 name = "asn1.js";
739 packageName = "asn1.js";
739 packageName = "asn1.js";
740 version = "4.10.1";
740 version = "4.10.1";
741 src = fetchurl {
741 src = fetchurl {
742 url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz";
742 url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz";
743 sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==";
743 sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==";
744 };
744 };
745 };
745 };
746 "assert-1.5.0" = {
746 "assert-1.5.0" = {
747 name = "assert";
747 name = "assert";
748 packageName = "assert";
748 packageName = "assert";
749 version = "1.5.0";
749 version = "1.5.0";
750 src = fetchurl {
750 src = fetchurl {
751 url = "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz";
751 url = "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz";
752 sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==";
752 sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==";
753 };
753 };
754 };
754 };
755 "assert-plus-0.2.0" = {
755 "assert-plus-0.2.0" = {
756 name = "assert-plus";
756 name = "assert-plus";
757 packageName = "assert-plus";
757 packageName = "assert-plus";
758 version = "0.2.0";
758 version = "0.2.0";
759 src = fetchurl {
759 src = fetchurl {
760 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
760 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
761 sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
761 sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
762 };
762 };
763 };
763 };
764 "assert-plus-1.0.0" = {
764 "assert-plus-1.0.0" = {
765 name = "assert-plus";
765 name = "assert-plus";
766 packageName = "assert-plus";
766 packageName = "assert-plus";
767 version = "1.0.0";
767 version = "1.0.0";
768 src = fetchurl {
768 src = fetchurl {
769 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
769 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
770 sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
770 sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
771 };
771 };
772 };
772 };
773 "assign-symbols-1.0.0" = {
773 "assign-symbols-1.0.0" = {
774 name = "assign-symbols";
774 name = "assign-symbols";
775 packageName = "assign-symbols";
775 packageName = "assign-symbols";
776 version = "1.0.0";
776 version = "1.0.0";
777 src = fetchurl {
777 src = fetchurl {
778 url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
778 url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
779 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
779 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
780 };
780 };
781 };
781 };
782 "ast-types-0.9.6" = {
782 "ast-types-0.9.6" = {
783 name = "ast-types";
783 name = "ast-types";
784 packageName = "ast-types";
784 packageName = "ast-types";
785 version = "0.9.6";
785 version = "0.9.6";
786 src = fetchurl {
786 src = fetchurl {
787 url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz";
787 url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz";
788 sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
788 sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
789 };
789 };
790 };
790 };
791 "async-0.1.22" = {
791 "async-0.1.22" = {
792 name = "async";
792 name = "async";
793 packageName = "async";
793 packageName = "async";
794 version = "0.1.22";
794 version = "0.1.22";
795 src = fetchurl {
795 src = fetchurl {
796 url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz";
796 url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz";
797 sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061";
797 sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061";
798 };
798 };
799 };
799 };
800 "async-0.2.10" = {
800 "async-0.2.10" = {
801 name = "async";
801 name = "async";
802 packageName = "async";
802 packageName = "async";
803 version = "0.2.10";
803 version = "0.2.10";
804 src = fetchurl {
804 src = fetchurl {
805 url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
805 url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
806 sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
806 sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
807 };
807 };
808 };
808 };
809 "async-2.6.3" = {
809 "async-2.6.3" = {
810 name = "async";
810 name = "async";
811 packageName = "async";
811 packageName = "async";
812 version = "2.6.3";
812 version = "2.6.3";
813 src = fetchurl {
813 src = fetchurl {
814 url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz";
814 url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz";
815 sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==";
815 sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==";
816 };
816 };
817 };
817 };
818 "async-each-1.0.3" = {
818 "async-each-1.0.3" = {
819 name = "async-each";
819 name = "async-each";
820 packageName = "async-each";
820 packageName = "async-each";
821 version = "1.0.3";
821 version = "1.0.3";
822 src = fetchurl {
822 src = fetchurl {
823 url = "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz";
823 url = "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz";
824 sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==";
824 sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==";
825 };
825 };
826 };
826 };
827 "asynckit-0.4.0" = {
827 "asynckit-0.4.0" = {
828 name = "asynckit";
828 name = "asynckit";
829 packageName = "asynckit";
829 packageName = "asynckit";
830 version = "0.4.0";
830 version = "0.4.0";
831 src = fetchurl {
831 src = fetchurl {
832 url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
832 url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
833 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
833 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
834 };
834 };
835 };
835 };
836 "atob-2.1.2" = {
836 "atob-2.1.2" = {
837 name = "atob";
837 name = "atob";
838 packageName = "atob";
838 packageName = "atob";
839 version = "2.1.2";
839 version = "2.1.2";
840 src = fetchurl {
840 src = fetchurl {
841 url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz";
841 url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz";
842 sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
842 sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
843 };
843 };
844 };
844 };
845 "autoprefixer-6.7.7" = {
845 "autoprefixer-6.7.7" = {
846 name = "autoprefixer";
846 name = "autoprefixer";
847 packageName = "autoprefixer";
847 packageName = "autoprefixer";
848 version = "6.7.7";
848 version = "6.7.7";
849 src = fetchurl {
849 src = fetchurl {
850 url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz";
850 url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz";
851 sha1 = "1dbd1c835658e35ce3f9984099db00585c782014";
851 sha1 = "1dbd1c835658e35ce3f9984099db00585c782014";
852 };
852 };
853 };
853 };
854 "aws-sign2-0.6.0" = {
854 "aws-sign2-0.6.0" = {
855 name = "aws-sign2";
855 name = "aws-sign2";
856 packageName = "aws-sign2";
856 packageName = "aws-sign2";
857 version = "0.6.0";
857 version = "0.6.0";
858 src = fetchurl {
858 src = fetchurl {
859 url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
859 url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
860 sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
860 sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
861 };
861 };
862 };
862 };
863 "aws4-1.9.1" = {
863 "aws4-1.9.1" = {
864 name = "aws4";
864 name = "aws4";
865 packageName = "aws4";
865 packageName = "aws4";
866 version = "1.9.1";
866 version = "1.9.1";
867 src = fetchurl {
867 src = fetchurl {
868 url = "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz";
868 url = "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz";
869 sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==";
869 sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==";
870 };
870 };
871 };
871 };
872 "babel-code-frame-6.26.0" = {
872 "babel-code-frame-6.26.0" = {
873 name = "babel-code-frame";
873 name = "babel-code-frame";
874 packageName = "babel-code-frame";
874 packageName = "babel-code-frame";
875 version = "6.26.0";
875 version = "6.26.0";
876 src = fetchurl {
876 src = fetchurl {
877 url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
877 url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
878 sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
878 sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
879 };
879 };
880 };
880 };
881 "babel-core-6.26.3" = {
881 "babel-core-6.26.3" = {
882 name = "babel-core";
882 name = "babel-core";
883 packageName = "babel-core";
883 packageName = "babel-core";
884 version = "6.26.3";
884 version = "6.26.3";
885 src = fetchurl {
885 src = fetchurl {
886 url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz";
886 url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz";
887 sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==";
887 sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==";
888 };
888 };
889 };
889 };
890 "babel-generator-6.26.1" = {
890 "babel-generator-6.26.1" = {
891 name = "babel-generator";
891 name = "babel-generator";
892 packageName = "babel-generator";
892 packageName = "babel-generator";
893 version = "6.26.1";
893 version = "6.26.1";
894 src = fetchurl {
894 src = fetchurl {
895 url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz";
895 url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz";
896 sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==";
896 sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==";
897 };
897 };
898 };
898 };
899 "babel-helper-builder-binary-assignment-operator-visitor-6.24.1" = {
899 "babel-helper-builder-binary-assignment-operator-visitor-6.24.1" = {
900 name = "babel-helper-builder-binary-assignment-operator-visitor";
900 name = "babel-helper-builder-binary-assignment-operator-visitor";
901 packageName = "babel-helper-builder-binary-assignment-operator-visitor";
901 packageName = "babel-helper-builder-binary-assignment-operator-visitor";
902 version = "6.24.1";
902 version = "6.24.1";
903 src = fetchurl {
903 src = fetchurl {
904 url = "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz";
904 url = "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz";
905 sha1 = "cce4517ada356f4220bcae8a02c2b346f9a56664";
905 sha1 = "cce4517ada356f4220bcae8a02c2b346f9a56664";
906 };
906 };
907 };
907 };
908 "babel-helper-call-delegate-6.24.1" = {
908 "babel-helper-call-delegate-6.24.1" = {
909 name = "babel-helper-call-delegate";
909 name = "babel-helper-call-delegate";
910 packageName = "babel-helper-call-delegate";
910 packageName = "babel-helper-call-delegate";
911 version = "6.24.1";
911 version = "6.24.1";
912 src = fetchurl {
912 src = fetchurl {
913 url = "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz";
913 url = "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz";
914 sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d";
914 sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d";
915 };
915 };
916 };
916 };
917 "babel-helper-define-map-6.26.0" = {
917 "babel-helper-define-map-6.26.0" = {
918 name = "babel-helper-define-map";
918 name = "babel-helper-define-map";
919 packageName = "babel-helper-define-map";
919 packageName = "babel-helper-define-map";
920 version = "6.26.0";
920 version = "6.26.0";
921 src = fetchurl {
921 src = fetchurl {
922 url = "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz";
922 url = "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz";
923 sha1 = "a5f56dab41a25f97ecb498c7ebaca9819f95be5f";
923 sha1 = "a5f56dab41a25f97ecb498c7ebaca9819f95be5f";
924 };
924 };
925 };
925 };
926 "babel-helper-explode-assignable-expression-6.24.1" = {
926 "babel-helper-explode-assignable-expression-6.24.1" = {
927 name = "babel-helper-explode-assignable-expression";
927 name = "babel-helper-explode-assignable-expression";
928 packageName = "babel-helper-explode-assignable-expression";
928 packageName = "babel-helper-explode-assignable-expression";
929 version = "6.24.1";
929 version = "6.24.1";
930 src = fetchurl {
930 src = fetchurl {
931 url = "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz";
931 url = "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz";
932 sha1 = "f25b82cf7dc10433c55f70592d5746400ac22caa";
932 sha1 = "f25b82cf7dc10433c55f70592d5746400ac22caa";
933 };
933 };
934 };
934 };
935 "babel-helper-function-name-6.24.1" = {
935 "babel-helper-function-name-6.24.1" = {
936 name = "babel-helper-function-name";
936 name = "babel-helper-function-name";
937 packageName = "babel-helper-function-name";
937 packageName = "babel-helper-function-name";
938 version = "6.24.1";
938 version = "6.24.1";
939 src = fetchurl {
939 src = fetchurl {
940 url = "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz";
940 url = "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz";
941 sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9";
941 sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9";
942 };
942 };
943 };
943 };
944 "babel-helper-get-function-arity-6.24.1" = {
944 "babel-helper-get-function-arity-6.24.1" = {
945 name = "babel-helper-get-function-arity";
945 name = "babel-helper-get-function-arity";
946 packageName = "babel-helper-get-function-arity";
946 packageName = "babel-helper-get-function-arity";
947 version = "6.24.1";
947 version = "6.24.1";
948 src = fetchurl {
948 src = fetchurl {
949 url = "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz";
949 url = "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz";
950 sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d";
950 sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d";
951 };
951 };
952 };
952 };
953 "babel-helper-hoist-variables-6.24.1" = {
953 "babel-helper-hoist-variables-6.24.1" = {
954 name = "babel-helper-hoist-variables";
954 name = "babel-helper-hoist-variables";
955 packageName = "babel-helper-hoist-variables";
955 packageName = "babel-helper-hoist-variables";
956 version = "6.24.1";
956 version = "6.24.1";
957 src = fetchurl {
957 src = fetchurl {
958 url = "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz";
958 url = "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz";
959 sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76";
959 sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76";
960 };
960 };
961 };
961 };
962 "babel-helper-optimise-call-expression-6.24.1" = {
962 "babel-helper-optimise-call-expression-6.24.1" = {
963 name = "babel-helper-optimise-call-expression";
963 name = "babel-helper-optimise-call-expression";
964 packageName = "babel-helper-optimise-call-expression";
964 packageName = "babel-helper-optimise-call-expression";
965 version = "6.24.1";
965 version = "6.24.1";
966 src = fetchurl {
966 src = fetchurl {
967 url = "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz";
967 url = "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz";
968 sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257";
968 sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257";
969 };
969 };
970 };
970 };
971 "babel-helper-regex-6.26.0" = {
971 "babel-helper-regex-6.26.0" = {
972 name = "babel-helper-regex";
972 name = "babel-helper-regex";
973 packageName = "babel-helper-regex";
973 packageName = "babel-helper-regex";
974 version = "6.26.0";
974 version = "6.26.0";
975 src = fetchurl {
975 src = fetchurl {
976 url = "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz";
976 url = "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz";
977 sha1 = "325c59f902f82f24b74faceed0363954f6495e72";
977 sha1 = "325c59f902f82f24b74faceed0363954f6495e72";
978 };
978 };
979 };
979 };
980 "babel-helper-remap-async-to-generator-6.24.1" = {
980 "babel-helper-remap-async-to-generator-6.24.1" = {
981 name = "babel-helper-remap-async-to-generator";
981 name = "babel-helper-remap-async-to-generator";
982 packageName = "babel-helper-remap-async-to-generator";
982 packageName = "babel-helper-remap-async-to-generator";
983 version = "6.24.1";
983 version = "6.24.1";
984 src = fetchurl {
984 src = fetchurl {
985 url = "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz";
985 url = "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz";
986 sha1 = "5ec581827ad723fecdd381f1c928390676e4551b";
986 sha1 = "5ec581827ad723fecdd381f1c928390676e4551b";
987 };
987 };
988 };
988 };
989 "babel-helper-replace-supers-6.24.1" = {
989 "babel-helper-replace-supers-6.24.1" = {
990 name = "babel-helper-replace-supers";
990 name = "babel-helper-replace-supers";
991 packageName = "babel-helper-replace-supers";
991 packageName = "babel-helper-replace-supers";
992 version = "6.24.1";
992 version = "6.24.1";
993 src = fetchurl {
993 src = fetchurl {
994 url = "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz";
994 url = "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz";
995 sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a";
995 sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a";
996 };
996 };
997 };
997 };
998 "babel-helpers-6.24.1" = {
998 "babel-helpers-6.24.1" = {
999 name = "babel-helpers";
999 name = "babel-helpers";
1000 packageName = "babel-helpers";
1000 packageName = "babel-helpers";
1001 version = "6.24.1";
1001 version = "6.24.1";
1002 src = fetchurl {
1002 src = fetchurl {
1003 url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz";
1003 url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz";
1004 sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
1004 sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
1005 };
1005 };
1006 };
1006 };
1007 "babel-loader-7.1.5" = {
1007 "babel-loader-7.1.5" = {
1008 name = "babel-loader";
1008 name = "babel-loader";
1009 packageName = "babel-loader";
1009 packageName = "babel-loader";
1010 version = "7.1.5";
1010 version = "7.1.5";
1011 src = fetchurl {
1011 src = fetchurl {
1012 url = "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.5.tgz";
1012 url = "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.5.tgz";
1013 sha512 = "iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==";
1013 sha512 = "iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==";
1014 };
1014 };
1015 };
1015 };
1016 "babel-messages-6.23.0" = {
1016 "babel-messages-6.23.0" = {
1017 name = "babel-messages";
1017 name = "babel-messages";
1018 packageName = "babel-messages";
1018 packageName = "babel-messages";
1019 version = "6.23.0";
1019 version = "6.23.0";
1020 src = fetchurl {
1020 src = fetchurl {
1021 url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz";
1021 url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz";
1022 sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
1022 sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
1023 };
1023 };
1024 };
1024 };
1025 "babel-plugin-check-es2015-constants-6.22.0" = {
1025 "babel-plugin-check-es2015-constants-6.22.0" = {
1026 name = "babel-plugin-check-es2015-constants";
1026 name = "babel-plugin-check-es2015-constants";
1027 packageName = "babel-plugin-check-es2015-constants";
1027 packageName = "babel-plugin-check-es2015-constants";
1028 version = "6.22.0";
1028 version = "6.22.0";
1029 src = fetchurl {
1029 src = fetchurl {
1030 url = "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz";
1030 url = "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz";
1031 sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a";
1031 sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a";
1032 };
1032 };
1033 };
1033 };
1034 "babel-plugin-syntax-async-functions-6.13.0" = {
1034 "babel-plugin-syntax-async-functions-6.13.0" = {
1035 name = "babel-plugin-syntax-async-functions";
1035 name = "babel-plugin-syntax-async-functions";
1036 packageName = "babel-plugin-syntax-async-functions";
1036 packageName = "babel-plugin-syntax-async-functions";
1037 version = "6.13.0";
1037 version = "6.13.0";
1038 src = fetchurl {
1038 src = fetchurl {
1039 url = "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz";
1039 url = "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz";
1040 sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95";
1040 sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95";
1041 };
1041 };
1042 };
1042 };
1043 "babel-plugin-syntax-exponentiation-operator-6.13.0" = {
1043 "babel-plugin-syntax-exponentiation-operator-6.13.0" = {
1044 name = "babel-plugin-syntax-exponentiation-operator";
1044 name = "babel-plugin-syntax-exponentiation-operator";
1045 packageName = "babel-plugin-syntax-exponentiation-operator";
1045 packageName = "babel-plugin-syntax-exponentiation-operator";
1046 version = "6.13.0";
1046 version = "6.13.0";
1047 src = fetchurl {
1047 src = fetchurl {
1048 url = "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz";
1048 url = "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz";
1049 sha1 = "9ee7e8337290da95288201a6a57f4170317830de";
1049 sha1 = "9ee7e8337290da95288201a6a57f4170317830de";
1050 };
1050 };
1051 };
1051 };
1052 "babel-plugin-syntax-object-rest-spread-6.13.0" = {
1052 "babel-plugin-syntax-object-rest-spread-6.13.0" = {
1053 name = "babel-plugin-syntax-object-rest-spread";
1053 name = "babel-plugin-syntax-object-rest-spread";
1054 packageName = "babel-plugin-syntax-object-rest-spread";
1054 packageName = "babel-plugin-syntax-object-rest-spread";
1055 version = "6.13.0";
1055 version = "6.13.0";
1056 src = fetchurl {
1056 src = fetchurl {
1057 url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz";
1057 url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz";
1058 sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5";
1058 sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5";
1059 };
1059 };
1060 };
1060 };
1061 "babel-plugin-syntax-trailing-function-commas-6.22.0" = {
1061 "babel-plugin-syntax-trailing-function-commas-6.22.0" = {
1062 name = "babel-plugin-syntax-trailing-function-commas";
1062 name = "babel-plugin-syntax-trailing-function-commas";
1063 packageName = "babel-plugin-syntax-trailing-function-commas";
1063 packageName = "babel-plugin-syntax-trailing-function-commas";
1064 version = "6.22.0";
1064 version = "6.22.0";
1065 src = fetchurl {
1065 src = fetchurl {
1066 url = "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz";
1066 url = "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz";
1067 sha1 = "ba0360937f8d06e40180a43fe0d5616fff532cf3";
1067 sha1 = "ba0360937f8d06e40180a43fe0d5616fff532cf3";
1068 };
1068 };
1069 };
1069 };
1070 "babel-plugin-transform-async-to-generator-6.24.1" = {
1070 "babel-plugin-transform-async-to-generator-6.24.1" = {
1071 name = "babel-plugin-transform-async-to-generator";
1071 name = "babel-plugin-transform-async-to-generator";
1072 packageName = "babel-plugin-transform-async-to-generator";
1072 packageName = "babel-plugin-transform-async-to-generator";
1073 version = "6.24.1";
1073 version = "6.24.1";
1074 src = fetchurl {
1074 src = fetchurl {
1075 url = "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz";
1075 url = "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz";
1076 sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761";
1076 sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761";
1077 };
1077 };
1078 };
1078 };
1079 "babel-plugin-transform-es2015-arrow-functions-6.22.0" = {
1079 "babel-plugin-transform-es2015-arrow-functions-6.22.0" = {
1080 name = "babel-plugin-transform-es2015-arrow-functions";
1080 name = "babel-plugin-transform-es2015-arrow-functions";
1081 packageName = "babel-plugin-transform-es2015-arrow-functions";
1081 packageName = "babel-plugin-transform-es2015-arrow-functions";
1082 version = "6.22.0";
1082 version = "6.22.0";
1083 src = fetchurl {
1083 src = fetchurl {
1084 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz";
1084 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz";
1085 sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221";
1085 sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221";
1086 };
1086 };
1087 };
1087 };
1088 "babel-plugin-transform-es2015-block-scoped-functions-6.22.0" = {
1088 "babel-plugin-transform-es2015-block-scoped-functions-6.22.0" = {
1089 name = "babel-plugin-transform-es2015-block-scoped-functions";
1089 name = "babel-plugin-transform-es2015-block-scoped-functions";
1090 packageName = "babel-plugin-transform-es2015-block-scoped-functions";
1090 packageName = "babel-plugin-transform-es2015-block-scoped-functions";
1091 version = "6.22.0";
1091 version = "6.22.0";
1092 src = fetchurl {
1092 src = fetchurl {
1093 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz";
1093 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz";
1094 sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141";
1094 sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141";
1095 };
1095 };
1096 };
1096 };
1097 "babel-plugin-transform-es2015-block-scoping-6.26.0" = {
1097 "babel-plugin-transform-es2015-block-scoping-6.26.0" = {
1098 name = "babel-plugin-transform-es2015-block-scoping";
1098 name = "babel-plugin-transform-es2015-block-scoping";
1099 packageName = "babel-plugin-transform-es2015-block-scoping";
1099 packageName = "babel-plugin-transform-es2015-block-scoping";
1100 version = "6.26.0";
1100 version = "6.26.0";
1101 src = fetchurl {
1101 src = fetchurl {
1102 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz";
1102 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz";
1103 sha1 = "d70f5299c1308d05c12f463813b0a09e73b1895f";
1103 sha1 = "d70f5299c1308d05c12f463813b0a09e73b1895f";
1104 };
1104 };
1105 };
1105 };
1106 "babel-plugin-transform-es2015-classes-6.24.1" = {
1106 "babel-plugin-transform-es2015-classes-6.24.1" = {
1107 name = "babel-plugin-transform-es2015-classes";
1107 name = "babel-plugin-transform-es2015-classes";
1108 packageName = "babel-plugin-transform-es2015-classes";
1108 packageName = "babel-plugin-transform-es2015-classes";
1109 version = "6.24.1";
1109 version = "6.24.1";
1110 src = fetchurl {
1110 src = fetchurl {
1111 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz";
1111 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz";
1112 sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db";
1112 sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db";
1113 };
1113 };
1114 };
1114 };
1115 "babel-plugin-transform-es2015-computed-properties-6.24.1" = {
1115 "babel-plugin-transform-es2015-computed-properties-6.24.1" = {
1116 name = "babel-plugin-transform-es2015-computed-properties";
1116 name = "babel-plugin-transform-es2015-computed-properties";
1117 packageName = "babel-plugin-transform-es2015-computed-properties";
1117 packageName = "babel-plugin-transform-es2015-computed-properties";
1118 version = "6.24.1";
1118 version = "6.24.1";
1119 src = fetchurl {
1119 src = fetchurl {
1120 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz";
1120 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz";
1121 sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3";
1121 sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3";
1122 };
1122 };
1123 };
1123 };
1124 "babel-plugin-transform-es2015-destructuring-6.23.0" = {
1124 "babel-plugin-transform-es2015-destructuring-6.23.0" = {
1125 name = "babel-plugin-transform-es2015-destructuring";
1125 name = "babel-plugin-transform-es2015-destructuring";
1126 packageName = "babel-plugin-transform-es2015-destructuring";
1126 packageName = "babel-plugin-transform-es2015-destructuring";
1127 version = "6.23.0";
1127 version = "6.23.0";
1128 src = fetchurl {
1128 src = fetchurl {
1129 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz";
1129 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz";
1130 sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
1130 sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
1131 };
1131 };
1132 };
1132 };
1133 "babel-plugin-transform-es2015-duplicate-keys-6.24.1" = {
1133 "babel-plugin-transform-es2015-duplicate-keys-6.24.1" = {
1134 name = "babel-plugin-transform-es2015-duplicate-keys";
1134 name = "babel-plugin-transform-es2015-duplicate-keys";
1135 packageName = "babel-plugin-transform-es2015-duplicate-keys";
1135 packageName = "babel-plugin-transform-es2015-duplicate-keys";
1136 version = "6.24.1";
1136 version = "6.24.1";
1137 src = fetchurl {
1137 src = fetchurl {
1138 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz";
1138 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz";
1139 sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e";
1139 sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e";
1140 };
1140 };
1141 };
1141 };
1142 "babel-plugin-transform-es2015-for-of-6.23.0" = {
1142 "babel-plugin-transform-es2015-for-of-6.23.0" = {
1143 name = "babel-plugin-transform-es2015-for-of";
1143 name = "babel-plugin-transform-es2015-for-of";
1144 packageName = "babel-plugin-transform-es2015-for-of";
1144 packageName = "babel-plugin-transform-es2015-for-of";
1145 version = "6.23.0";
1145 version = "6.23.0";
1146 src = fetchurl {
1146 src = fetchurl {
1147 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz";
1147 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz";
1148 sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691";
1148 sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691";
1149 };
1149 };
1150 };
1150 };
1151 "babel-plugin-transform-es2015-function-name-6.24.1" = {
1151 "babel-plugin-transform-es2015-function-name-6.24.1" = {
1152 name = "babel-plugin-transform-es2015-function-name";
1152 name = "babel-plugin-transform-es2015-function-name";
1153 packageName = "babel-plugin-transform-es2015-function-name";
1153 packageName = "babel-plugin-transform-es2015-function-name";
1154 version = "6.24.1";
1154 version = "6.24.1";
1155 src = fetchurl {
1155 src = fetchurl {
1156 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz";
1156 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz";
1157 sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b";
1157 sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b";
1158 };
1158 };
1159 };
1159 };
1160 "babel-plugin-transform-es2015-literals-6.22.0" = {
1160 "babel-plugin-transform-es2015-literals-6.22.0" = {
1161 name = "babel-plugin-transform-es2015-literals";
1161 name = "babel-plugin-transform-es2015-literals";
1162 packageName = "babel-plugin-transform-es2015-literals";
1162 packageName = "babel-plugin-transform-es2015-literals";
1163 version = "6.22.0";
1163 version = "6.22.0";
1164 src = fetchurl {
1164 src = fetchurl {
1165 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz";
1165 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz";
1166 sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e";
1166 sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e";
1167 };
1167 };
1168 };
1168 };
1169 "babel-plugin-transform-es2015-modules-amd-6.24.1" = {
1169 "babel-plugin-transform-es2015-modules-amd-6.24.1" = {
1170 name = "babel-plugin-transform-es2015-modules-amd";
1170 name = "babel-plugin-transform-es2015-modules-amd";
1171 packageName = "babel-plugin-transform-es2015-modules-amd";
1171 packageName = "babel-plugin-transform-es2015-modules-amd";
1172 version = "6.24.1";
1172 version = "6.24.1";
1173 src = fetchurl {
1173 src = fetchurl {
1174 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz";
1174 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz";
1175 sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154";
1175 sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154";
1176 };
1176 };
1177 };
1177 };
1178 "babel-plugin-transform-es2015-modules-commonjs-6.26.2" = {
1178 "babel-plugin-transform-es2015-modules-commonjs-6.26.2" = {
1179 name = "babel-plugin-transform-es2015-modules-commonjs";
1179 name = "babel-plugin-transform-es2015-modules-commonjs";
1180 packageName = "babel-plugin-transform-es2015-modules-commonjs";
1180 packageName = "babel-plugin-transform-es2015-modules-commonjs";
1181 version = "6.26.2";
1181 version = "6.26.2";
1182 src = fetchurl {
1182 src = fetchurl {
1183 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz";
1183 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz";
1184 sha512 = "CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==";
1184 sha512 = "CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==";
1185 };
1185 };
1186 };
1186 };
1187 "babel-plugin-transform-es2015-modules-systemjs-6.24.1" = {
1187 "babel-plugin-transform-es2015-modules-systemjs-6.24.1" = {
1188 name = "babel-plugin-transform-es2015-modules-systemjs";
1188 name = "babel-plugin-transform-es2015-modules-systemjs";
1189 packageName = "babel-plugin-transform-es2015-modules-systemjs";
1189 packageName = "babel-plugin-transform-es2015-modules-systemjs";
1190 version = "6.24.1";
1190 version = "6.24.1";
1191 src = fetchurl {
1191 src = fetchurl {
1192 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz";
1192 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz";
1193 sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23";
1193 sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23";
1194 };
1194 };
1195 };
1195 };
1196 "babel-plugin-transform-es2015-modules-umd-6.24.1" = {
1196 "babel-plugin-transform-es2015-modules-umd-6.24.1" = {
1197 name = "babel-plugin-transform-es2015-modules-umd";
1197 name = "babel-plugin-transform-es2015-modules-umd";
1198 packageName = "babel-plugin-transform-es2015-modules-umd";
1198 packageName = "babel-plugin-transform-es2015-modules-umd";
1199 version = "6.24.1";
1199 version = "6.24.1";
1200 src = fetchurl {
1200 src = fetchurl {
1201 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz";
1201 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz";
1202 sha1 = "ac997e6285cd18ed6176adb607d602344ad38468";
1202 sha1 = "ac997e6285cd18ed6176adb607d602344ad38468";
1203 };
1203 };
1204 };
1204 };
1205 "babel-plugin-transform-es2015-object-super-6.24.1" = {
1205 "babel-plugin-transform-es2015-object-super-6.24.1" = {
1206 name = "babel-plugin-transform-es2015-object-super";
1206 name = "babel-plugin-transform-es2015-object-super";
1207 packageName = "babel-plugin-transform-es2015-object-super";
1207 packageName = "babel-plugin-transform-es2015-object-super";
1208 version = "6.24.1";
1208 version = "6.24.1";
1209 src = fetchurl {
1209 src = fetchurl {
1210 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz";
1210 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz";
1211 sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d";
1211 sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d";
1212 };
1212 };
1213 };
1213 };
1214 "babel-plugin-transform-es2015-parameters-6.24.1" = {
1214 "babel-plugin-transform-es2015-parameters-6.24.1" = {
1215 name = "babel-plugin-transform-es2015-parameters";
1215 name = "babel-plugin-transform-es2015-parameters";
1216 packageName = "babel-plugin-transform-es2015-parameters";
1216 packageName = "babel-plugin-transform-es2015-parameters";
1217 version = "6.24.1";
1217 version = "6.24.1";
1218 src = fetchurl {
1218 src = fetchurl {
1219 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz";
1219 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz";
1220 sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b";
1220 sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b";
1221 };
1221 };
1222 };
1222 };
1223 "babel-plugin-transform-es2015-shorthand-properties-6.24.1" = {
1223 "babel-plugin-transform-es2015-shorthand-properties-6.24.1" = {
1224 name = "babel-plugin-transform-es2015-shorthand-properties";
1224 name = "babel-plugin-transform-es2015-shorthand-properties";
1225 packageName = "babel-plugin-transform-es2015-shorthand-properties";
1225 packageName = "babel-plugin-transform-es2015-shorthand-properties";
1226 version = "6.24.1";
1226 version = "6.24.1";
1227 src = fetchurl {
1227 src = fetchurl {
1228 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz";
1228 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz";
1229 sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0";
1229 sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0";
1230 };
1230 };
1231 };
1231 };
1232 "babel-plugin-transform-es2015-spread-6.22.0" = {
1232 "babel-plugin-transform-es2015-spread-6.22.0" = {
1233 name = "babel-plugin-transform-es2015-spread";
1233 name = "babel-plugin-transform-es2015-spread";
1234 packageName = "babel-plugin-transform-es2015-spread";
1234 packageName = "babel-plugin-transform-es2015-spread";
1235 version = "6.22.0";
1235 version = "6.22.0";
1236 src = fetchurl {
1236 src = fetchurl {
1237 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz";
1237 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz";
1238 sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1";
1238 sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1";
1239 };
1239 };
1240 };
1240 };
1241 "babel-plugin-transform-es2015-sticky-regex-6.24.1" = {
1241 "babel-plugin-transform-es2015-sticky-regex-6.24.1" = {
1242 name = "babel-plugin-transform-es2015-sticky-regex";
1242 name = "babel-plugin-transform-es2015-sticky-regex";
1243 packageName = "babel-plugin-transform-es2015-sticky-regex";
1243 packageName = "babel-plugin-transform-es2015-sticky-regex";
1244 version = "6.24.1";
1244 version = "6.24.1";
1245 src = fetchurl {
1245 src = fetchurl {
1246 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz";
1246 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz";
1247 sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc";
1247 sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc";
1248 };
1248 };
1249 };
1249 };
1250 "babel-plugin-transform-es2015-template-literals-6.22.0" = {
1250 "babel-plugin-transform-es2015-template-literals-6.22.0" = {
1251 name = "babel-plugin-transform-es2015-template-literals";
1251 name = "babel-plugin-transform-es2015-template-literals";
1252 packageName = "babel-plugin-transform-es2015-template-literals";
1252 packageName = "babel-plugin-transform-es2015-template-literals";
1253 version = "6.22.0";
1253 version = "6.22.0";
1254 src = fetchurl {
1254 src = fetchurl {
1255 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz";
1255 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz";
1256 sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d";
1256 sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d";
1257 };
1257 };
1258 };
1258 };
1259 "babel-plugin-transform-es2015-typeof-symbol-6.23.0" = {
1259 "babel-plugin-transform-es2015-typeof-symbol-6.23.0" = {
1260 name = "babel-plugin-transform-es2015-typeof-symbol";
1260 name = "babel-plugin-transform-es2015-typeof-symbol";
1261 packageName = "babel-plugin-transform-es2015-typeof-symbol";
1261 packageName = "babel-plugin-transform-es2015-typeof-symbol";
1262 version = "6.23.0";
1262 version = "6.23.0";
1263 src = fetchurl {
1263 src = fetchurl {
1264 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz";
1264 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz";
1265 sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372";
1265 sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372";
1266 };
1266 };
1267 };
1267 };
1268 "babel-plugin-transform-es2015-unicode-regex-6.24.1" = {
1268 "babel-plugin-transform-es2015-unicode-regex-6.24.1" = {
1269 name = "babel-plugin-transform-es2015-unicode-regex";
1269 name = "babel-plugin-transform-es2015-unicode-regex";
1270 packageName = "babel-plugin-transform-es2015-unicode-regex";
1270 packageName = "babel-plugin-transform-es2015-unicode-regex";
1271 version = "6.24.1";
1271 version = "6.24.1";
1272 src = fetchurl {
1272 src = fetchurl {
1273 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz";
1273 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz";
1274 sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9";
1274 sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9";
1275 };
1275 };
1276 };
1276 };
1277 "babel-plugin-transform-exponentiation-operator-6.24.1" = {
1277 "babel-plugin-transform-exponentiation-operator-6.24.1" = {
1278 name = "babel-plugin-transform-exponentiation-operator";
1278 name = "babel-plugin-transform-exponentiation-operator";
1279 packageName = "babel-plugin-transform-exponentiation-operator";
1279 packageName = "babel-plugin-transform-exponentiation-operator";
1280 version = "6.24.1";
1280 version = "6.24.1";
1281 src = fetchurl {
1281 src = fetchurl {
1282 url = "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz";
1282 url = "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz";
1283 sha1 = "2ab0c9c7f3098fa48907772bb813fe41e8de3a0e";
1283 sha1 = "2ab0c9c7f3098fa48907772bb813fe41e8de3a0e";
1284 };
1284 };
1285 };
1285 };
1286 "babel-plugin-transform-object-rest-spread-6.26.0" = {
1286 "babel-plugin-transform-object-rest-spread-6.26.0" = {
1287 name = "babel-plugin-transform-object-rest-spread";
1287 name = "babel-plugin-transform-object-rest-spread";
1288 packageName = "babel-plugin-transform-object-rest-spread";
1288 packageName = "babel-plugin-transform-object-rest-spread";
1289 version = "6.26.0";
1289 version = "6.26.0";
1290 src = fetchurl {
1290 src = fetchurl {
1291 url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz";
1291 url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz";
1292 sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06";
1292 sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06";
1293 };
1293 };
1294 };
1294 };
1295 "babel-plugin-transform-regenerator-6.26.0" = {
1295 "babel-plugin-transform-regenerator-6.26.0" = {
1296 name = "babel-plugin-transform-regenerator";
1296 name = "babel-plugin-transform-regenerator";
1297 packageName = "babel-plugin-transform-regenerator";
1297 packageName = "babel-plugin-transform-regenerator";
1298 version = "6.26.0";
1298 version = "6.26.0";
1299 src = fetchurl {
1299 src = fetchurl {
1300 url = "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz";
1300 url = "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz";
1301 sha1 = "e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f";
1301 sha1 = "e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f";
1302 };
1302 };
1303 };
1303 };
1304 "babel-plugin-transform-strict-mode-6.24.1" = {
1304 "babel-plugin-transform-strict-mode-6.24.1" = {
1305 name = "babel-plugin-transform-strict-mode";
1305 name = "babel-plugin-transform-strict-mode";
1306 packageName = "babel-plugin-transform-strict-mode";
1306 packageName = "babel-plugin-transform-strict-mode";
1307 version = "6.24.1";
1307 version = "6.24.1";
1308 src = fetchurl {
1308 src = fetchurl {
1309 url = "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz";
1309 url = "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz";
1310 sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758";
1310 sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758";
1311 };
1311 };
1312 };
1312 };
1313 "babel-preset-env-1.7.0" = {
1313 "babel-preset-env-1.7.0" = {
1314 name = "babel-preset-env";
1314 name = "babel-preset-env";
1315 packageName = "babel-preset-env";
1315 packageName = "babel-preset-env";
1316 version = "1.7.0";
1316 version = "1.7.0";
1317 src = fetchurl {
1317 src = fetchurl {
1318 url = "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz";
1318 url = "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz";
1319 sha512 = "9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==";
1319 sha512 = "9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==";
1320 };
1320 };
1321 };
1321 };
1322 "babel-register-6.26.0" = {
1322 "babel-register-6.26.0" = {
1323 name = "babel-register";
1323 name = "babel-register";
1324 packageName = "babel-register";
1324 packageName = "babel-register";
1325 version = "6.26.0";
1325 version = "6.26.0";
1326 src = fetchurl {
1326 src = fetchurl {
1327 url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz";
1327 url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz";
1328 sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
1328 sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
1329 };
1329 };
1330 };
1330 };
1331 "babel-runtime-6.26.0" = {
1331 "babel-runtime-6.26.0" = {
1332 name = "babel-runtime";
1332 name = "babel-runtime";
1333 packageName = "babel-runtime";
1333 packageName = "babel-runtime";
1334 version = "6.26.0";
1334 version = "6.26.0";
1335 src = fetchurl {
1335 src = fetchurl {
1336 url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
1336 url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
1337 sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
1337 sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
1338 };
1338 };
1339 };
1339 };
1340 "babel-template-6.26.0" = {
1340 "babel-template-6.26.0" = {
1341 name = "babel-template";
1341 name = "babel-template";
1342 packageName = "babel-template";
1342 packageName = "babel-template";
1343 version = "6.26.0";
1343 version = "6.26.0";
1344 src = fetchurl {
1344 src = fetchurl {
1345 url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz";
1345 url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz";
1346 sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
1346 sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
1347 };
1347 };
1348 };
1348 };
1349 "babel-traverse-6.26.0" = {
1349 "babel-traverse-6.26.0" = {
1350 name = "babel-traverse";
1350 name = "babel-traverse";
1351 packageName = "babel-traverse";
1351 packageName = "babel-traverse";
1352 version = "6.26.0";
1352 version = "6.26.0";
1353 src = fetchurl {
1353 src = fetchurl {
1354 url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz";
1354 url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz";
1355 sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
1355 sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
1356 };
1356 };
1357 };
1357 };
1358 "babel-types-6.26.0" = {
1358 "babel-types-6.26.0" = {
1359 name = "babel-types";
1359 name = "babel-types";
1360 packageName = "babel-types";
1360 packageName = "babel-types";
1361 version = "6.26.0";
1361 version = "6.26.0";
1362 src = fetchurl {
1362 src = fetchurl {
1363 url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz";
1363 url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz";
1364 sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
1364 sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
1365 };
1365 };
1366 };
1366 };
1367 "babylon-6.18.0" = {
1367 "babylon-6.18.0" = {
1368 name = "babylon";
1368 name = "babylon";
1369 packageName = "babylon";
1369 packageName = "babylon";
1370 version = "6.18.0";
1370 version = "6.18.0";
1371 src = fetchurl {
1371 src = fetchurl {
1372 url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz";
1372 url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz";
1373 sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==";
1373 sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==";
1374 };
1374 };
1375 };
1375 };
1376 "balanced-match-0.4.2" = {
1376 "balanced-match-0.4.2" = {
1377 name = "balanced-match";
1377 name = "balanced-match";
1378 packageName = "balanced-match";
1378 packageName = "balanced-match";
1379 version = "0.4.2";
1379 version = "0.4.2";
1380 src = fetchurl {
1380 src = fetchurl {
1381 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz";
1381 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz";
1382 sha1 = "cb3f3e3c732dc0f01ee70b403f302e61d7709838";
1382 sha1 = "cb3f3e3c732dc0f01ee70b403f302e61d7709838";
1383 };
1383 };
1384 };
1384 };
1385 "balanced-match-1.0.0" = {
1385 "balanced-match-1.0.0" = {
1386 name = "balanced-match";
1386 name = "balanced-match";
1387 packageName = "balanced-match";
1387 packageName = "balanced-match";
1388 version = "1.0.0";
1388 version = "1.0.0";
1389 src = fetchurl {
1389 src = fetchurl {
1390 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
1390 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
1391 sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
1391 sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
1392 };
1392 };
1393 };
1393 };
1394 "base-0.11.2" = {
1394 "base-0.11.2" = {
1395 name = "base";
1395 name = "base";
1396 packageName = "base";
1396 packageName = "base";
1397 version = "0.11.2";
1397 version = "0.11.2";
1398 src = fetchurl {
1398 src = fetchurl {
1399 url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
1399 url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
1400 sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
1400 sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
1401 };
1401 };
1402 };
1402 };
1403 "base64-js-1.3.1" = {
1403 "base64-js-1.3.1" = {
1404 name = "base64-js";
1404 name = "base64-js";
1405 packageName = "base64-js";
1405 packageName = "base64-js";
1406 version = "1.3.1";
1406 version = "1.3.1";
1407 src = fetchurl {
1407 src = fetchurl {
1408 url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz";
1408 url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz";
1409 sha512 = "mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==";
1409 sha512 = "mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==";
1410 };
1410 };
1411 };
1411 };
1412 "bcrypt-pbkdf-1.0.2" = {
1412 "bcrypt-pbkdf-1.0.2" = {
1413 name = "bcrypt-pbkdf";
1413 name = "bcrypt-pbkdf";
1414 packageName = "bcrypt-pbkdf";
1414 packageName = "bcrypt-pbkdf";
1415 version = "1.0.2";
1415 version = "1.0.2";
1416 src = fetchurl {
1416 src = fetchurl {
1417 url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
1417 url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
1418 sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
1418 sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
1419 };
1419 };
1420 };
1420 };
1421 "big.js-3.2.0" = {
1421 "big.js-3.2.0" = {
1422 name = "big.js";
1422 name = "big.js";
1423 packageName = "big.js";
1423 packageName = "big.js";
1424 version = "3.2.0";
1424 version = "3.2.0";
1425 src = fetchurl {
1425 src = fetchurl {
1426 url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz";
1426 url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz";
1427 sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==";
1427 sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==";
1428 };
1428 };
1429 };
1429 };
1430 "big.js-5.2.2" = {
1430 "big.js-5.2.2" = {
1431 name = "big.js";
1431 name = "big.js";
1432 packageName = "big.js";
1432 packageName = "big.js";
1433 version = "5.2.2";
1433 version = "5.2.2";
1434 src = fetchurl {
1434 src = fetchurl {
1435 url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz";
1435 url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz";
1436 sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==";
1436 sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==";
1437 };
1437 };
1438 };
1438 };
1439 "binary-extensions-1.13.1" = {
1439 "binary-extensions-1.13.1" = {
1440 name = "binary-extensions";
1440 name = "binary-extensions";
1441 packageName = "binary-extensions";
1441 packageName = "binary-extensions";
1442 version = "1.13.1";
1442 version = "1.13.1";
1443 src = fetchurl {
1443 src = fetchurl {
1444 url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz";
1444 url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz";
1445 sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==";
1445 sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==";
1446 };
1446 };
1447 };
1447 };
1448 "bindings-1.5.0" = {
1448 "bindings-1.5.0" = {
1449 name = "bindings";
1449 name = "bindings";
1450 packageName = "bindings";
1450 packageName = "bindings";
1451 version = "1.5.0";
1451 version = "1.5.0";
1452 src = fetchurl {
1452 src = fetchurl {
1453 url = "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz";
1453 url = "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz";
1454 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==";
1454 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==";
1455 };
1455 };
1456 };
1456 };
1457 "bluebird-3.7.2" = {
1457 "bluebird-3.7.2" = {
1458 name = "bluebird";
1458 name = "bluebird";
1459 packageName = "bluebird";
1459 packageName = "bluebird";
1460 version = "3.7.2";
1460 version = "3.7.2";
1461 src = fetchurl {
1461 src = fetchurl {
1462 url = "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz";
1462 url = "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz";
1463 sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==";
1463 sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==";
1464 };
1464 };
1465 };
1465 };
1466 "bn.js-4.11.8" = {
1466 "bn.js-4.11.8" = {
1467 name = "bn.js";
1467 name = "bn.js";
1468 packageName = "bn.js";
1468 packageName = "bn.js";
1469 version = "4.11.8";
1469 version = "4.11.8";
1470 src = fetchurl {
1470 src = fetchurl {
1471 url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
1471 url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
1472 sha512 = "ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==";
1472 sha512 = "ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==";
1473 };
1473 };
1474 };
1474 };
1475 "bn.js-5.1.1" = {
1476 name = "bn.js";
1477 packageName = "bn.js";
1478 version = "5.1.1";
1479 src = fetchurl {
1480 url = "https://registry.npmjs.org/bn.js/-/bn.js-5.1.1.tgz";
1481 sha512 = "IUTD/REb78Z2eodka1QZyyEk66pciRcP6Sroka0aI3tG/iwIdYLrBD62RsubR7vqdt3WyX8p4jxeatzmRSphtA==";
1482 };
1483 };
1475 "boolbase-1.0.0" = {
1484 "boolbase-1.0.0" = {
1476 name = "boolbase";
1485 name = "boolbase";
1477 packageName = "boolbase";
1486 packageName = "boolbase";
1478 version = "1.0.0";
1487 version = "1.0.0";
1479 src = fetchurl {
1488 src = fetchurl {
1480 url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz";
1489 url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz";
1481 sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
1490 sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
1482 };
1491 };
1483 };
1492 };
1484 "boom-2.10.1" = {
1493 "boom-2.10.1" = {
1485 name = "boom";
1494 name = "boom";
1486 packageName = "boom";
1495 packageName = "boom";
1487 version = "2.10.1";
1496 version = "2.10.1";
1488 src = fetchurl {
1497 src = fetchurl {
1489 url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
1498 url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
1490 sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
1499 sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
1491 };
1500 };
1492 };
1501 };
1493 "brace-expansion-1.1.11" = {
1502 "brace-expansion-1.1.11" = {
1494 name = "brace-expansion";
1503 name = "brace-expansion";
1495 packageName = "brace-expansion";
1504 packageName = "brace-expansion";
1496 version = "1.1.11";
1505 version = "1.1.11";
1497 src = fetchurl {
1506 src = fetchurl {
1498 url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
1507 url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
1499 sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
1508 sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
1500 };
1509 };
1501 };
1510 };
1502 "braces-2.3.2" = {
1511 "braces-2.3.2" = {
1503 name = "braces";
1512 name = "braces";
1504 packageName = "braces";
1513 packageName = "braces";
1505 version = "2.3.2";
1514 version = "2.3.2";
1506 src = fetchurl {
1515 src = fetchurl {
1507 url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
1516 url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
1508 sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
1517 sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
1509 };
1518 };
1510 };
1519 };
1511 "brorand-1.1.0" = {
1520 "brorand-1.1.0" = {
1512 name = "brorand";
1521 name = "brorand";
1513 packageName = "brorand";
1522 packageName = "brorand";
1514 version = "1.1.0";
1523 version = "1.1.0";
1515 src = fetchurl {
1524 src = fetchurl {
1516 url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
1525 url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
1517 sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
1526 sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
1518 };
1527 };
1519 };
1528 };
1520 "browserify-aes-1.2.0" = {
1529 "browserify-aes-1.2.0" = {
1521 name = "browserify-aes";
1530 name = "browserify-aes";
1522 packageName = "browserify-aes";
1531 packageName = "browserify-aes";
1523 version = "1.2.0";
1532 version = "1.2.0";
1524 src = fetchurl {
1533 src = fetchurl {
1525 url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz";
1534 url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz";
1526 sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==";
1535 sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==";
1527 };
1536 };
1528 };
1537 };
1529 "browserify-cipher-1.0.1" = {
1538 "browserify-cipher-1.0.1" = {
1530 name = "browserify-cipher";
1539 name = "browserify-cipher";
1531 packageName = "browserify-cipher";
1540 packageName = "browserify-cipher";
1532 version = "1.0.1";
1541 version = "1.0.1";
1533 src = fetchurl {
1542 src = fetchurl {
1534 url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz";
1543 url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz";
1535 sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==";
1544 sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==";
1536 };
1545 };
1537 };
1546 };
1538 "browserify-des-1.0.2" = {
1547 "browserify-des-1.0.2" = {
1539 name = "browserify-des";
1548 name = "browserify-des";
1540 packageName = "browserify-des";
1549 packageName = "browserify-des";
1541 version = "1.0.2";
1550 version = "1.0.2";
1542 src = fetchurl {
1551 src = fetchurl {
1543 url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz";
1552 url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz";
1544 sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==";
1553 sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==";
1545 };
1554 };
1546 };
1555 };
1547 "browserify-rsa-4.0.1" = {
1556 "browserify-rsa-4.0.1" = {
1548 name = "browserify-rsa";
1557 name = "browserify-rsa";
1549 packageName = "browserify-rsa";
1558 packageName = "browserify-rsa";
1550 version = "4.0.1";
1559 version = "4.0.1";
1551 src = fetchurl {
1560 src = fetchurl {
1552 url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
1561 url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
1553 sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
1562 sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
1554 };
1563 };
1555 };
1564 };
1556 "browserify-sign-4.0.4" = {
1565 "browserify-sign-4.1.0" = {
1557 name = "browserify-sign";
1566 name = "browserify-sign";
1558 packageName = "browserify-sign";
1567 packageName = "browserify-sign";
1559 version = "4.0.4";
1568 version = "4.1.0";
1560 src = fetchurl {
1569 src = fetchurl {
1561 url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
1570 url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.1.0.tgz";
1562 sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
1571 sha512 = "VYxo7cDCeYUoBZ0ZCy4UyEUCP3smyBd4DRQM5nrFS1jJjPJjX7rP3oLRpPoWfkhQfyJ0I9ZbHbKafrFD/SGlrg==";
1563 };
1572 };
1564 };
1573 };
1565 "browserify-zlib-0.2.0" = {
1574 "browserify-zlib-0.2.0" = {
1566 name = "browserify-zlib";
1575 name = "browserify-zlib";
1567 packageName = "browserify-zlib";
1576 packageName = "browserify-zlib";
1568 version = "0.2.0";
1577 version = "0.2.0";
1569 src = fetchurl {
1578 src = fetchurl {
1570 url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
1579 url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
1571 sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
1580 sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
1572 };
1581 };
1573 };
1582 };
1574 "browserslist-1.7.7" = {
1583 "browserslist-1.7.7" = {
1575 name = "browserslist";
1584 name = "browserslist";
1576 packageName = "browserslist";
1585 packageName = "browserslist";
1577 version = "1.7.7";
1586 version = "1.7.7";
1578 src = fetchurl {
1587 src = fetchurl {
1579 url = "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz";
1588 url = "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz";
1580 sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9";
1589 sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9";
1581 };
1590 };
1582 };
1591 };
1583 "browserslist-3.2.8" = {
1592 "browserslist-3.2.8" = {
1584 name = "browserslist";
1593 name = "browserslist";
1585 packageName = "browserslist";
1594 packageName = "browserslist";
1586 version = "3.2.8";
1595 version = "3.2.8";
1587 src = fetchurl {
1596 src = fetchurl {
1588 url = "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz";
1597 url = "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz";
1589 sha512 = "WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==";
1598 sha512 = "WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==";
1590 };
1599 };
1591 };
1600 };
1592 "buffer-4.9.2" = {
1601 "buffer-4.9.2" = {
1593 name = "buffer";
1602 name = "buffer";
1594 packageName = "buffer";
1603 packageName = "buffer";
1595 version = "4.9.2";
1604 version = "4.9.2";
1596 src = fetchurl {
1605 src = fetchurl {
1597 url = "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz";
1606 url = "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz";
1598 sha512 = "xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==";
1607 sha512 = "xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==";
1599 };
1608 };
1600 };
1609 };
1601 "buffer-from-1.1.1" = {
1610 "buffer-from-1.1.1" = {
1602 name = "buffer-from";
1611 name = "buffer-from";
1603 packageName = "buffer-from";
1612 packageName = "buffer-from";
1604 version = "1.1.1";
1613 version = "1.1.1";
1605 src = fetchurl {
1614 src = fetchurl {
1606 url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
1615 url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
1607 sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
1616 sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
1608 };
1617 };
1609 };
1618 };
1610 "buffer-xor-1.0.3" = {
1619 "buffer-xor-1.0.3" = {
1611 name = "buffer-xor";
1620 name = "buffer-xor";
1612 packageName = "buffer-xor";
1621 packageName = "buffer-xor";
1613 version = "1.0.3";
1622 version = "1.0.3";
1614 src = fetchurl {
1623 src = fetchurl {
1615 url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz";
1624 url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz";
1616 sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
1625 sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
1617 };
1626 };
1618 };
1627 };
1619 "builtin-status-codes-3.0.0" = {
1628 "builtin-status-codes-3.0.0" = {
1620 name = "builtin-status-codes";
1629 name = "builtin-status-codes";
1621 packageName = "builtin-status-codes";
1630 packageName = "builtin-status-codes";
1622 version = "3.0.0";
1631 version = "3.0.0";
1623 src = fetchurl {
1632 src = fetchurl {
1624 url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
1633 url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
1625 sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
1634 sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
1626 };
1635 };
1627 };
1636 };
1628 "cacache-10.0.4" = {
1637 "cacache-10.0.4" = {
1629 name = "cacache";
1638 name = "cacache";
1630 packageName = "cacache";
1639 packageName = "cacache";
1631 version = "10.0.4";
1640 version = "10.0.4";
1632 src = fetchurl {
1641 src = fetchurl {
1633 url = "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz";
1642 url = "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz";
1634 sha512 = "Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==";
1643 sha512 = "Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==";
1635 };
1644 };
1636 };
1645 };
1637 "cache-base-1.0.1" = {
1646 "cache-base-1.0.1" = {
1638 name = "cache-base";
1647 name = "cache-base";
1639 packageName = "cache-base";
1648 packageName = "cache-base";
1640 version = "1.0.1";
1649 version = "1.0.1";
1641 src = fetchurl {
1650 src = fetchurl {
1642 url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
1651 url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
1643 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
1652 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
1644 };
1653 };
1645 };
1654 };
1646 "camel-case-3.0.0" = {
1655 "camel-case-3.0.0" = {
1647 name = "camel-case";
1656 name = "camel-case";
1648 packageName = "camel-case";
1657 packageName = "camel-case";
1649 version = "3.0.0";
1658 version = "3.0.0";
1650 src = fetchurl {
1659 src = fetchurl {
1651 url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz";
1660 url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz";
1652 sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73";
1661 sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73";
1653 };
1662 };
1654 };
1663 };
1655 "camelcase-1.2.1" = {
1664 "camelcase-1.2.1" = {
1656 name = "camelcase";
1665 name = "camelcase";
1657 packageName = "camelcase";
1666 packageName = "camelcase";
1658 version = "1.2.1";
1667 version = "1.2.1";
1659 src = fetchurl {
1668 src = fetchurl {
1660 url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
1669 url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
1661 sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
1670 sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
1662 };
1671 };
1663 };
1672 };
1664 "camelcase-5.3.1" = {
1673 "camelcase-5.3.1" = {
1665 name = "camelcase";
1674 name = "camelcase";
1666 packageName = "camelcase";
1675 packageName = "camelcase";
1667 version = "5.3.1";
1676 version = "5.3.1";
1668 src = fetchurl {
1677 src = fetchurl {
1669 url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz";
1678 url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz";
1670 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==";
1679 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==";
1671 };
1680 };
1672 };
1681 };
1673 "caniuse-api-1.6.1" = {
1682 "caniuse-api-1.6.1" = {
1674 name = "caniuse-api";
1683 name = "caniuse-api";
1675 packageName = "caniuse-api";
1684 packageName = "caniuse-api";
1676 version = "1.6.1";
1685 version = "1.6.1";
1677 src = fetchurl {
1686 src = fetchurl {
1678 url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz";
1687 url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz";
1679 sha1 = "b534e7c734c4f81ec5fbe8aca2ad24354b962c6c";
1688 sha1 = "b534e7c734c4f81ec5fbe8aca2ad24354b962c6c";
1680 };
1689 };
1681 };
1690 };
1682 "caniuse-db-1.0.30001042" = {
1691 "caniuse-db-1.0.30001055" = {
1683 name = "caniuse-db";
1692 name = "caniuse-db";
1684 packageName = "caniuse-db";
1693 packageName = "caniuse-db";
1685 version = "1.0.30001042";
1694 version = "1.0.30001055";
1686 src = fetchurl {
1695 src = fetchurl {
1687 url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001042.tgz";
1696 url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001055.tgz";
1688 sha512 = "2RKrB2hkLCW/8Uj32oaXj0O+N9ROo0/BF0EueWHwgs6AeeSiL+rCSsbICR3ayBJOZavgcFx65ZCw7QiafsoUFQ==";
1697 sha512 = "WgyNA+lEteIfAQlUfSRb0zvY8EKJnOZ4GcFzKveNb2+4UaFuMk3RiY1mdKA2MQYhVxfLdFdbNxLs6Iym94An7Q==";
1689 };
1698 };
1690 };
1699 };
1691 "caniuse-lite-1.0.30001042" = {
1700 "caniuse-lite-1.0.30001055" = {
1692 name = "caniuse-lite";
1701 name = "caniuse-lite";
1693 packageName = "caniuse-lite";
1702 packageName = "caniuse-lite";
1694 version = "1.0.30001042";
1703 version = "1.0.30001055";
1695 src = fetchurl {
1704 src = fetchurl {
1696 url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001042.tgz";
1705 url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz";
1697 sha512 = "igMQ4dlqnf4tWv0xjaaE02op9AJ2oQzXKjWf4EuAHFN694Uo9/EfPVIPJcmn2WkU9RqozCxx5e2KPcVClHDbDw==";
1706 sha512 = "MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==";
1698 };
1707 };
1699 };
1708 };
1700 "caseless-0.12.0" = {
1709 "caseless-0.12.0" = {
1701 name = "caseless";
1710 name = "caseless";
1702 packageName = "caseless";
1711 packageName = "caseless";
1703 version = "0.12.0";
1712 version = "0.12.0";
1704 src = fetchurl {
1713 src = fetchurl {
1705 url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
1714 url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
1706 sha1 = "1b681c21ff84033c826543090689420d187151dc";
1715 sha1 = "1b681c21ff84033c826543090689420d187151dc";
1707 };
1716 };
1708 };
1717 };
1709 "center-align-0.1.3" = {
1718 "center-align-0.1.3" = {
1710 name = "center-align";
1719 name = "center-align";
1711 packageName = "center-align";
1720 packageName = "center-align";
1712 version = "0.1.3";
1721 version = "0.1.3";
1713 src = fetchurl {
1722 src = fetchurl {
1714 url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
1723 url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
1715 sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
1724 sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
1716 };
1725 };
1717 };
1726 };
1718 "chalk-0.5.1" = {
1727 "chalk-0.5.1" = {
1719 name = "chalk";
1728 name = "chalk";
1720 packageName = "chalk";
1729 packageName = "chalk";
1721 version = "0.5.1";
1730 version = "0.5.1";
1722 src = fetchurl {
1731 src = fetchurl {
1723 url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz";
1732 url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz";
1724 sha1 = "663b3a648b68b55d04690d49167aa837858f2174";
1733 sha1 = "663b3a648b68b55d04690d49167aa837858f2174";
1725 };
1734 };
1726 };
1735 };
1727 "chalk-1.1.3" = {
1736 "chalk-1.1.3" = {
1728 name = "chalk";
1737 name = "chalk";
1729 packageName = "chalk";
1738 packageName = "chalk";
1730 version = "1.1.3";
1739 version = "1.1.3";
1731 src = fetchurl {
1740 src = fetchurl {
1732 url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
1741 url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
1733 sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
1742 sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
1734 };
1743 };
1735 };
1744 };
1736 "chalk-2.4.2" = {
1745 "chalk-2.4.2" = {
1737 name = "chalk";
1746 name = "chalk";
1738 packageName = "chalk";
1747 packageName = "chalk";
1739 version = "2.4.2";
1748 version = "2.4.2";
1740 src = fetchurl {
1749 src = fetchurl {
1741 url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz";
1750 url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz";
1742 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==";
1751 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==";
1743 };
1752 };
1744 };
1753 };
1745 "chokidar-2.1.8" = {
1754 "chokidar-2.1.8" = {
1746 name = "chokidar";
1755 name = "chokidar";
1747 packageName = "chokidar";
1756 packageName = "chokidar";
1748 version = "2.1.8";
1757 version = "2.1.8";
1749 src = fetchurl {
1758 src = fetchurl {
1750 url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz";
1759 url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz";
1751 sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==";
1760 sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==";
1752 };
1761 };
1753 };
1762 };
1754 "chownr-1.1.4" = {
1763 "chownr-1.1.4" = {
1755 name = "chownr";
1764 name = "chownr";
1756 packageName = "chownr";
1765 packageName = "chownr";
1757 version = "1.1.4";
1766 version = "1.1.4";
1758 src = fetchurl {
1767 src = fetchurl {
1759 url = "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz";
1768 url = "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz";
1760 sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==";
1769 sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==";
1761 };
1770 };
1762 };
1771 };
1763 "chrome-trace-event-1.0.2" = {
1772 "chrome-trace-event-1.0.2" = {
1764 name = "chrome-trace-event";
1773 name = "chrome-trace-event";
1765 packageName = "chrome-trace-event";
1774 packageName = "chrome-trace-event";
1766 version = "1.0.2";
1775 version = "1.0.2";
1767 src = fetchurl {
1776 src = fetchurl {
1768 url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz";
1777 url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz";
1769 sha512 = "9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==";
1778 sha512 = "9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==";
1770 };
1779 };
1771 };
1780 };
1772 "cipher-base-1.0.4" = {
1781 "cipher-base-1.0.4" = {
1773 name = "cipher-base";
1782 name = "cipher-base";
1774 packageName = "cipher-base";
1783 packageName = "cipher-base";
1775 version = "1.0.4";
1784 version = "1.0.4";
1776 src = fetchurl {
1785 src = fetchurl {
1777 url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
1786 url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
1778 sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==";
1787 sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==";
1779 };
1788 };
1780 };
1789 };
1781 "clap-1.2.3" = {
1790 "clap-1.2.3" = {
1782 name = "clap";
1791 name = "clap";
1783 packageName = "clap";
1792 packageName = "clap";
1784 version = "1.2.3";
1793 version = "1.2.3";
1785 src = fetchurl {
1794 src = fetchurl {
1786 url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz";
1795 url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz";
1787 sha512 = "4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==";
1796 sha512 = "4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==";
1788 };
1797 };
1789 };
1798 };
1790 "class-utils-0.3.6" = {
1799 "class-utils-0.3.6" = {
1791 name = "class-utils";
1800 name = "class-utils";
1792 packageName = "class-utils";
1801 packageName = "class-utils";
1793 version = "0.3.6";
1802 version = "0.3.6";
1794 src = fetchurl {
1803 src = fetchurl {
1795 url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
1804 url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
1796 sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
1805 sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
1797 };
1806 };
1798 };
1807 };
1799 "clean-css-4.2.3" = {
1808 "clean-css-4.2.3" = {
1800 name = "clean-css";
1809 name = "clean-css";
1801 packageName = "clean-css";
1810 packageName = "clean-css";
1802 version = "4.2.3";
1811 version = "4.2.3";
1803 src = fetchurl {
1812 src = fetchurl {
1804 url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz";
1813 url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz";
1805 sha512 = "VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==";
1814 sha512 = "VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==";
1806 };
1815 };
1807 };
1816 };
1808 "cli-1.0.1" = {
1817 "cli-1.0.1" = {
1809 name = "cli";
1818 name = "cli";
1810 packageName = "cli";
1819 packageName = "cli";
1811 version = "1.0.1";
1820 version = "1.0.1";
1812 src = fetchurl {
1821 src = fetchurl {
1813 url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz";
1822 url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz";
1814 sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
1823 sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
1815 };
1824 };
1816 };
1825 };
1817 "clipboard-2.0.6" = {
1826 "clipboard-2.0.6" = {
1818 name = "clipboard";
1827 name = "clipboard";
1819 packageName = "clipboard";
1828 packageName = "clipboard";
1820 version = "2.0.6";
1829 version = "2.0.6";
1821 src = fetchurl {
1830 src = fetchurl {
1822 url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.6.tgz";
1831 url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.6.tgz";
1823 sha512 = "g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg==";
1832 sha512 = "g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg==";
1824 };
1833 };
1825 };
1834 };
1826 "cliui-2.1.0" = {
1835 "cliui-2.1.0" = {
1827 name = "cliui";
1836 name = "cliui";
1828 packageName = "cliui";
1837 packageName = "cliui";
1829 version = "2.1.0";
1838 version = "2.1.0";
1830 src = fetchurl {
1839 src = fetchurl {
1831 url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
1840 url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
1832 sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
1841 sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
1833 };
1842 };
1834 };
1843 };
1835 "cliui-4.1.0" = {
1844 "cliui-4.1.0" = {
1836 name = "cliui";
1845 name = "cliui";
1837 packageName = "cliui";
1846 packageName = "cliui";
1838 version = "4.1.0";
1847 version = "4.1.0";
1839 src = fetchurl {
1848 src = fetchurl {
1840 url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz";
1849 url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz";
1841 sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==";
1850 sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==";
1842 };
1851 };
1843 };
1852 };
1844 "clone-1.0.4" = {
1853 "clone-1.0.4" = {
1845 name = "clone";
1854 name = "clone";
1846 packageName = "clone";
1855 packageName = "clone";
1847 version = "1.0.4";
1856 version = "1.0.4";
1848 src = fetchurl {
1857 src = fetchurl {
1849 url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
1858 url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
1850 sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
1859 sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
1851 };
1860 };
1852 };
1861 };
1853 "clone-2.1.2" = {
1862 "clone-2.1.2" = {
1854 name = "clone";
1863 name = "clone";
1855 packageName = "clone";
1864 packageName = "clone";
1856 version = "2.1.2";
1865 version = "2.1.2";
1857 src = fetchurl {
1866 src = fetchurl {
1858 url = "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz";
1867 url = "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz";
1859 sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f";
1868 sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f";
1860 };
1869 };
1861 };
1870 };
1862 "co-4.6.0" = {
1871 "co-4.6.0" = {
1863 name = "co";
1872 name = "co";
1864 packageName = "co";
1873 packageName = "co";
1865 version = "4.6.0";
1874 version = "4.6.0";
1866 src = fetchurl {
1875 src = fetchurl {
1867 url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
1876 url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
1868 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
1877 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
1869 };
1878 };
1870 };
1879 };
1871 "coa-1.0.4" = {
1880 "coa-1.0.4" = {
1872 name = "coa";
1881 name = "coa";
1873 packageName = "coa";
1882 packageName = "coa";
1874 version = "1.0.4";
1883 version = "1.0.4";
1875 src = fetchurl {
1884 src = fetchurl {
1876 url = "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz";
1885 url = "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz";
1877 sha1 = "a9ef153660d6a86a8bdec0289a5c684d217432fd";
1886 sha1 = "a9ef153660d6a86a8bdec0289a5c684d217432fd";
1878 };
1887 };
1879 };
1888 };
1880 "code-point-at-1.1.0" = {
1889 "code-point-at-1.1.0" = {
1881 name = "code-point-at";
1890 name = "code-point-at";
1882 packageName = "code-point-at";
1891 packageName = "code-point-at";
1883 version = "1.1.0";
1892 version = "1.1.0";
1884 src = fetchurl {
1893 src = fetchurl {
1885 url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
1894 url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
1886 sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
1895 sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
1887 };
1896 };
1888 };
1897 };
1889 "coffee-script-1.3.3" = {
1898 "coffee-script-1.3.3" = {
1890 name = "coffee-script";
1899 name = "coffee-script";
1891 packageName = "coffee-script";
1900 packageName = "coffee-script";
1892 version = "1.3.3";
1901 version = "1.3.3";
1893 src = fetchurl {
1902 src = fetchurl {
1894 url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz";
1903 url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz";
1895 sha1 = "150d6b4cb522894369efed6a2101c20bc7f4a4f4";
1904 sha1 = "150d6b4cb522894369efed6a2101c20bc7f4a4f4";
1896 };
1905 };
1897 };
1906 };
1898 "collection-visit-1.0.0" = {
1907 "collection-visit-1.0.0" = {
1899 name = "collection-visit";
1908 name = "collection-visit";
1900 packageName = "collection-visit";
1909 packageName = "collection-visit";
1901 version = "1.0.0";
1910 version = "1.0.0";
1902 src = fetchurl {
1911 src = fetchurl {
1903 url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
1912 url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
1904 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
1913 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
1905 };
1914 };
1906 };
1915 };
1907 "color-0.11.4" = {
1916 "color-0.11.4" = {
1908 name = "color";
1917 name = "color";
1909 packageName = "color";
1918 packageName = "color";
1910 version = "0.11.4";
1919 version = "0.11.4";
1911 src = fetchurl {
1920 src = fetchurl {
1912 url = "https://registry.npmjs.org/color/-/color-0.11.4.tgz";
1921 url = "https://registry.npmjs.org/color/-/color-0.11.4.tgz";
1913 sha1 = "6d7b5c74fb65e841cd48792ad1ed5e07b904d764";
1922 sha1 = "6d7b5c74fb65e841cd48792ad1ed5e07b904d764";
1914 };
1923 };
1915 };
1924 };
1916 "color-convert-1.9.3" = {
1925 "color-convert-1.9.3" = {
1917 name = "color-convert";
1926 name = "color-convert";
1918 packageName = "color-convert";
1927 packageName = "color-convert";
1919 version = "1.9.3";
1928 version = "1.9.3";
1920 src = fetchurl {
1929 src = fetchurl {
1921 url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz";
1930 url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz";
1922 sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==";
1931 sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==";
1923 };
1932 };
1924 };
1933 };
1925 "color-name-1.1.3" = {
1934 "color-name-1.1.3" = {
1926 name = "color-name";
1935 name = "color-name";
1927 packageName = "color-name";
1936 packageName = "color-name";
1928 version = "1.1.3";
1937 version = "1.1.3";
1929 src = fetchurl {
1938 src = fetchurl {
1930 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
1939 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
1931 sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
1940 sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
1932 };
1941 };
1933 };
1942 };
1934 "color-string-0.3.0" = {
1943 "color-string-0.3.0" = {
1935 name = "color-string";
1944 name = "color-string";
1936 packageName = "color-string";
1945 packageName = "color-string";
1937 version = "0.3.0";
1946 version = "0.3.0";
1938 src = fetchurl {
1947 src = fetchurl {
1939 url = "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz";
1948 url = "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz";
1940 sha1 = "27d46fb67025c5c2fa25993bfbf579e47841b991";
1949 sha1 = "27d46fb67025c5c2fa25993bfbf579e47841b991";
1941 };
1950 };
1942 };
1951 };
1943 "colormin-1.1.2" = {
1952 "colormin-1.1.2" = {
1944 name = "colormin";
1953 name = "colormin";
1945 packageName = "colormin";
1954 packageName = "colormin";
1946 version = "1.1.2";
1955 version = "1.1.2";
1947 src = fetchurl {
1956 src = fetchurl {
1948 url = "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz";
1957 url = "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz";
1949 sha1 = "ea2f7420a72b96881a38aae59ec124a6f7298133";
1958 sha1 = "ea2f7420a72b96881a38aae59ec124a6f7298133";
1950 };
1959 };
1951 };
1960 };
1952 "colors-0.6.2" = {
1961 "colors-0.6.2" = {
1953 name = "colors";
1962 name = "colors";
1954 packageName = "colors";
1963 packageName = "colors";
1955 version = "0.6.2";
1964 version = "0.6.2";
1956 src = fetchurl {
1965 src = fetchurl {
1957 url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
1966 url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
1958 sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
1967 sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
1959 };
1968 };
1960 };
1969 };
1961 "colors-1.1.2" = {
1970 "colors-1.1.2" = {
1962 name = "colors";
1971 name = "colors";
1963 packageName = "colors";
1972 packageName = "colors";
1964 version = "1.1.2";
1973 version = "1.1.2";
1965 src = fetchurl {
1974 src = fetchurl {
1966 url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
1975 url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
1967 sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
1976 sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
1968 };
1977 };
1969 };
1978 };
1970 "colors-1.4.0" = {
1979 "colors-1.4.0" = {
1971 name = "colors";
1980 name = "colors";
1972 packageName = "colors";
1981 packageName = "colors";
1973 version = "1.4.0";
1982 version = "1.4.0";
1974 src = fetchurl {
1983 src = fetchurl {
1975 url = "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz";
1984 url = "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz";
1976 sha512 = "a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==";
1985 sha512 = "a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==";
1977 };
1986 };
1978 };
1987 };
1979 "combined-stream-1.0.8" = {
1988 "combined-stream-1.0.8" = {
1980 name = "combined-stream";
1989 name = "combined-stream";
1981 packageName = "combined-stream";
1990 packageName = "combined-stream";
1982 version = "1.0.8";
1991 version = "1.0.8";
1983 src = fetchurl {
1992 src = fetchurl {
1984 url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz";
1993 url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz";
1985 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==";
1994 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==";
1986 };
1995 };
1987 };
1996 };
1988 "commander-2.14.1" = {
1997 "commander-2.14.1" = {
1989 name = "commander";
1998 name = "commander";
1990 packageName = "commander";
1999 packageName = "commander";
1991 version = "2.14.1";
2000 version = "2.14.1";
1992 src = fetchurl {
2001 src = fetchurl {
1993 url = "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz";
2002 url = "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz";
1994 sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==";
2003 sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==";
1995 };
2004 };
1996 };
2005 };
1997 "commander-2.17.1" = {
2006 "commander-2.17.1" = {
1998 name = "commander";
2007 name = "commander";
1999 packageName = "commander";
2008 packageName = "commander";
2000 version = "2.17.1";
2009 version = "2.17.1";
2001 src = fetchurl {
2010 src = fetchurl {
2002 url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz";
2011 url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz";
2003 sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==";
2012 sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==";
2004 };
2013 };
2005 };
2014 };
2006 "commander-2.19.0" = {
2015 "commander-2.19.0" = {
2007 name = "commander";
2016 name = "commander";
2008 packageName = "commander";
2017 packageName = "commander";
2009 version = "2.19.0";
2018 version = "2.19.0";
2010 src = fetchurl {
2019 src = fetchurl {
2011 url = "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz";
2020 url = "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz";
2012 sha512 = "6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==";
2021 sha512 = "6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==";
2013 };
2022 };
2014 };
2023 };
2015 "commander-2.20.3" = {
2024 "commander-2.20.3" = {
2016 name = "commander";
2025 name = "commander";
2017 packageName = "commander";
2026 packageName = "commander";
2018 version = "2.20.3";
2027 version = "2.20.3";
2019 src = fetchurl {
2028 src = fetchurl {
2020 url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz";
2029 url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz";
2021 sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==";
2030 sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==";
2022 };
2031 };
2023 };
2032 };
2024 "commondir-1.0.1" = {
2033 "commondir-1.0.1" = {
2025 name = "commondir";
2034 name = "commondir";
2026 packageName = "commondir";
2035 packageName = "commondir";
2027 version = "1.0.1";
2036 version = "1.0.1";
2028 src = fetchurl {
2037 src = fetchurl {
2029 url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz";
2038 url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz";
2030 sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
2039 sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
2031 };
2040 };
2032 };
2041 };
2033 "component-emitter-1.3.0" = {
2042 "component-emitter-1.3.0" = {
2034 name = "component-emitter";
2043 name = "component-emitter";
2035 packageName = "component-emitter";
2044 packageName = "component-emitter";
2036 version = "1.3.0";
2045 version = "1.3.0";
2037 src = fetchurl {
2046 src = fetchurl {
2038 url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz";
2047 url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz";
2039 sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==";
2048 sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==";
2040 };
2049 };
2041 };
2050 };
2042 "concat-map-0.0.1" = {
2051 "concat-map-0.0.1" = {
2043 name = "concat-map";
2052 name = "concat-map";
2044 packageName = "concat-map";
2053 packageName = "concat-map";
2045 version = "0.0.1";
2054 version = "0.0.1";
2046 src = fetchurl {
2055 src = fetchurl {
2047 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
2056 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
2048 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
2057 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
2049 };
2058 };
2050 };
2059 };
2051 "concat-stream-1.6.2" = {
2060 "concat-stream-1.6.2" = {
2052 name = "concat-stream";
2061 name = "concat-stream";
2053 packageName = "concat-stream";
2062 packageName = "concat-stream";
2054 version = "1.6.2";
2063 version = "1.6.2";
2055 src = fetchurl {
2064 src = fetchurl {
2056 url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
2065 url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
2057 sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
2066 sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
2058 };
2067 };
2059 };
2068 };
2060 "console-browserify-1.1.0" = {
2069 "console-browserify-1.1.0" = {
2061 name = "console-browserify";
2070 name = "console-browserify";
2062 packageName = "console-browserify";
2071 packageName = "console-browserify";
2063 version = "1.1.0";
2072 version = "1.1.0";
2064 src = fetchurl {
2073 src = fetchurl {
2065 url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz";
2074 url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz";
2066 sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
2075 sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
2067 };
2076 };
2068 };
2077 };
2069 "constants-browserify-1.0.0" = {
2078 "constants-browserify-1.0.0" = {
2070 name = "constants-browserify";
2079 name = "constants-browserify";
2071 packageName = "constants-browserify";
2080 packageName = "constants-browserify";
2072 version = "1.0.0";
2081 version = "1.0.0";
2073 src = fetchurl {
2082 src = fetchurl {
2074 url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz";
2083 url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz";
2075 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
2084 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
2076 };
2085 };
2077 };
2086 };
2078 "convert-source-map-1.7.0" = {
2087 "convert-source-map-1.7.0" = {
2079 name = "convert-source-map";
2088 name = "convert-source-map";
2080 packageName = "convert-source-map";
2089 packageName = "convert-source-map";
2081 version = "1.7.0";
2090 version = "1.7.0";
2082 src = fetchurl {
2091 src = fetchurl {
2083 url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz";
2092 url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz";
2084 sha512 = "4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==";
2093 sha512 = "4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==";
2085 };
2094 };
2086 };
2095 };
2087 "copy-concurrently-1.0.5" = {
2096 "copy-concurrently-1.0.5" = {
2088 name = "copy-concurrently";
2097 name = "copy-concurrently";
2089 packageName = "copy-concurrently";
2098 packageName = "copy-concurrently";
2090 version = "1.0.5";
2099 version = "1.0.5";
2091 src = fetchurl {
2100 src = fetchurl {
2092 url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
2101 url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
2093 sha512 = "f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==";
2102 sha512 = "f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==";
2094 };
2103 };
2095 };
2104 };
2096 "copy-descriptor-0.1.1" = {
2105 "copy-descriptor-0.1.1" = {
2097 name = "copy-descriptor";
2106 name = "copy-descriptor";
2098 packageName = "copy-descriptor";
2107 packageName = "copy-descriptor";
2099 version = "0.1.1";
2108 version = "0.1.1";
2100 src = fetchurl {
2109 src = fetchurl {
2101 url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
2110 url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
2102 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
2111 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
2103 };
2112 };
2104 };
2113 };
2105 "copy-webpack-plugin-4.6.0" = {
2114 "copy-webpack-plugin-4.6.0" = {
2106 name = "copy-webpack-plugin";
2115 name = "copy-webpack-plugin";
2107 packageName = "copy-webpack-plugin";
2116 packageName = "copy-webpack-plugin";
2108 version = "4.6.0";
2117 version = "4.6.0";
2109 src = fetchurl {
2118 src = fetchurl {
2110 url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-4.6.0.tgz";
2119 url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-4.6.0.tgz";
2111 sha512 = "Y+SQCF+0NoWQryez2zXn5J5knmr9z/9qSQt7fbL78u83rxmigOy8X5+BFn8CFSuX+nKT8gpYwJX68ekqtQt6ZA==";
2120 sha512 = "Y+SQCF+0NoWQryez2zXn5J5knmr9z/9qSQt7fbL78u83rxmigOy8X5+BFn8CFSuX+nKT8gpYwJX68ekqtQt6ZA==";
2112 };
2121 };
2113 };
2122 };
2114 "core-js-2.6.11" = {
2123 "core-js-2.6.11" = {
2115 name = "core-js";
2124 name = "core-js";
2116 packageName = "core-js";
2125 packageName = "core-js";
2117 version = "2.6.11";
2126 version = "2.6.11";
2118 src = fetchurl {
2127 src = fetchurl {
2119 url = "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz";
2128 url = "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz";
2120 sha512 = "5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==";
2129 sha512 = "5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==";
2121 };
2130 };
2122 };
2131 };
2123 "core-util-is-1.0.2" = {
2132 "core-util-is-1.0.2" = {
2124 name = "core-util-is";
2133 name = "core-util-is";
2125 packageName = "core-util-is";
2134 packageName = "core-util-is";
2126 version = "1.0.2";
2135 version = "1.0.2";
2127 src = fetchurl {
2136 src = fetchurl {
2128 url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
2137 url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
2129 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
2138 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
2130 };
2139 };
2131 };
2140 };
2132 "create-ecdh-4.0.3" = {
2141 "create-ecdh-4.0.3" = {
2133 name = "create-ecdh";
2142 name = "create-ecdh";
2134 packageName = "create-ecdh";
2143 packageName = "create-ecdh";
2135 version = "4.0.3";
2144 version = "4.0.3";
2136 src = fetchurl {
2145 src = fetchurl {
2137 url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz";
2146 url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz";
2138 sha512 = "GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==";
2147 sha512 = "GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==";
2139 };
2148 };
2140 };
2149 };
2141 "create-hash-1.2.0" = {
2150 "create-hash-1.2.0" = {
2142 name = "create-hash";
2151 name = "create-hash";
2143 packageName = "create-hash";
2152 packageName = "create-hash";
2144 version = "1.2.0";
2153 version = "1.2.0";
2145 src = fetchurl {
2154 src = fetchurl {
2146 url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz";
2155 url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz";
2147 sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==";
2156 sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==";
2148 };
2157 };
2149 };
2158 };
2150 "create-hmac-1.1.7" = {
2159 "create-hmac-1.1.7" = {
2151 name = "create-hmac";
2160 name = "create-hmac";
2152 packageName = "create-hmac";
2161 packageName = "create-hmac";
2153 version = "1.1.7";
2162 version = "1.1.7";
2154 src = fetchurl {
2163 src = fetchurl {
2155 url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz";
2164 url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz";
2156 sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
2165 sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
2157 };
2166 };
2158 };
2167 };
2159 "cross-spawn-6.0.5" = {
2168 "cross-spawn-6.0.5" = {
2160 name = "cross-spawn";
2169 name = "cross-spawn";
2161 packageName = "cross-spawn";
2170 packageName = "cross-spawn";
2162 version = "6.0.5";
2171 version = "6.0.5";
2163 src = fetchurl {
2172 src = fetchurl {
2164 url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz";
2173 url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz";
2165 sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==";
2174 sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==";
2166 };
2175 };
2167 };
2176 };
2168 "cryptiles-2.0.5" = {
2177 "cryptiles-2.0.5" = {
2169 name = "cryptiles";
2178 name = "cryptiles";
2170 packageName = "cryptiles";
2179 packageName = "cryptiles";
2171 version = "2.0.5";
2180 version = "2.0.5";
2172 src = fetchurl {
2181 src = fetchurl {
2173 url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
2182 url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
2174 sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
2183 sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
2175 };
2184 };
2176 };
2185 };
2177 "crypto-browserify-3.12.0" = {
2186 "crypto-browserify-3.12.0" = {
2178 name = "crypto-browserify";
2187 name = "crypto-browserify";
2179 packageName = "crypto-browserify";
2188 packageName = "crypto-browserify";
2180 version = "3.12.0";
2189 version = "3.12.0";
2181 src = fetchurl {
2190 src = fetchurl {
2182 url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
2191 url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
2183 sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==";
2192 sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==";
2184 };
2193 };
2185 };
2194 };
2186 "css-color-names-0.0.4" = {
2195 "css-color-names-0.0.4" = {
2187 name = "css-color-names";
2196 name = "css-color-names";
2188 packageName = "css-color-names";
2197 packageName = "css-color-names";
2189 version = "0.0.4";
2198 version = "0.0.4";
2190 src = fetchurl {
2199 src = fetchurl {
2191 url = "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz";
2200 url = "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz";
2192 sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0";
2201 sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0";
2193 };
2202 };
2194 };
2203 };
2195 "css-loader-0.28.11" = {
2204 "css-loader-0.28.11" = {
2196 name = "css-loader";
2205 name = "css-loader";
2197 packageName = "css-loader";
2206 packageName = "css-loader";
2198 version = "0.28.11";
2207 version = "0.28.11";
2199 src = fetchurl {
2208 src = fetchurl {
2200 url = "https://registry.npmjs.org/css-loader/-/css-loader-0.28.11.tgz";
2209 url = "https://registry.npmjs.org/css-loader/-/css-loader-0.28.11.tgz";
2201 sha512 = "wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg==";
2210 sha512 = "wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg==";
2202 };
2211 };
2203 };
2212 };
2204 "css-select-1.2.0" = {
2213 "css-select-1.2.0" = {
2205 name = "css-select";
2214 name = "css-select";
2206 packageName = "css-select";
2215 packageName = "css-select";
2207 version = "1.2.0";
2216 version = "1.2.0";
2208 src = fetchurl {
2217 src = fetchurl {
2209 url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz";
2218 url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz";
2210 sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
2219 sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
2211 };
2220 };
2212 };
2221 };
2213 "css-selector-tokenizer-0.7.2" = {
2222 "css-selector-tokenizer-0.7.2" = {
2214 name = "css-selector-tokenizer";
2223 name = "css-selector-tokenizer";
2215 packageName = "css-selector-tokenizer";
2224 packageName = "css-selector-tokenizer";
2216 version = "0.7.2";
2225 version = "0.7.2";
2217 src = fetchurl {
2226 src = fetchurl {
2218 url = "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.2.tgz";
2227 url = "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.2.tgz";
2219 sha512 = "yj856NGuAymN6r8bn8/Jl46pR+OC3eEvAhfGYDUe7YPtTPAYrSSw4oAniZ9Y8T5B92hjhwTBLUen0/vKPxf6pw==";
2228 sha512 = "yj856NGuAymN6r8bn8/Jl46pR+OC3eEvAhfGYDUe7YPtTPAYrSSw4oAniZ9Y8T5B92hjhwTBLUen0/vKPxf6pw==";
2220 };
2229 };
2221 };
2230 };
2222 "css-what-2.1.3" = {
2231 "css-what-2.1.3" = {
2223 name = "css-what";
2232 name = "css-what";
2224 packageName = "css-what";
2233 packageName = "css-what";
2225 version = "2.1.3";
2234 version = "2.1.3";
2226 src = fetchurl {
2235 src = fetchurl {
2227 url = "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz";
2236 url = "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz";
2228 sha512 = "a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==";
2237 sha512 = "a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==";
2229 };
2238 };
2230 };
2239 };
2231 "cssesc-3.0.0" = {
2240 "cssesc-3.0.0" = {
2232 name = "cssesc";
2241 name = "cssesc";
2233 packageName = "cssesc";
2242 packageName = "cssesc";
2234 version = "3.0.0";
2243 version = "3.0.0";
2235 src = fetchurl {
2244 src = fetchurl {
2236 url = "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz";
2245 url = "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz";
2237 sha512 = "/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==";
2246 sha512 = "/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==";
2238 };
2247 };
2239 };
2248 };
2240 "cssnano-3.10.0" = {
2249 "cssnano-3.10.0" = {
2241 name = "cssnano";
2250 name = "cssnano";
2242 packageName = "cssnano";
2251 packageName = "cssnano";
2243 version = "3.10.0";
2252 version = "3.10.0";
2244 src = fetchurl {
2253 src = fetchurl {
2245 url = "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz";
2254 url = "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz";
2246 sha1 = "4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38";
2255 sha1 = "4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38";
2247 };
2256 };
2248 };
2257 };
2249 "csso-2.3.2" = {
2258 "csso-2.3.2" = {
2250 name = "csso";
2259 name = "csso";
2251 packageName = "csso";
2260 packageName = "csso";
2252 version = "2.3.2";
2261 version = "2.3.2";
2253 src = fetchurl {
2262 src = fetchurl {
2254 url = "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz";
2263 url = "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz";
2255 sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85";
2264 sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85";
2256 };
2265 };
2257 };
2266 };
2258 "cyclist-1.0.1" = {
2267 "cyclist-1.0.1" = {
2259 name = "cyclist";
2268 name = "cyclist";
2260 packageName = "cyclist";
2269 packageName = "cyclist";
2261 version = "1.0.1";
2270 version = "1.0.1";
2262 src = fetchurl {
2271 src = fetchurl {
2263 url = "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz";
2272 url = "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz";
2264 sha1 = "596e9698fd0c80e12038c2b82d6eb1b35b6224d9";
2273 sha1 = "596e9698fd0c80e12038c2b82d6eb1b35b6224d9";
2265 };
2274 };
2266 };
2275 };
2267 "dashdash-1.14.1" = {
2276 "dashdash-1.14.1" = {
2268 name = "dashdash";
2277 name = "dashdash";
2269 packageName = "dashdash";
2278 packageName = "dashdash";
2270 version = "1.14.1";
2279 version = "1.14.1";
2271 src = fetchurl {
2280 src = fetchurl {
2272 url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
2281 url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
2273 sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
2282 sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
2274 };
2283 };
2275 };
2284 };
2276 "date-now-0.1.4" = {
2285 "date-now-0.1.4" = {
2277 name = "date-now";
2286 name = "date-now";
2278 packageName = "date-now";
2287 packageName = "date-now";
2279 version = "0.1.4";
2288 version = "0.1.4";
2280 src = fetchurl {
2289 src = fetchurl {
2281 url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz";
2290 url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz";
2282 sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
2291 sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
2283 };
2292 };
2284 };
2293 };
2285 "dateformat-1.0.2-1.2.3" = {
2294 "dateformat-1.0.2-1.2.3" = {
2286 name = "dateformat";
2295 name = "dateformat";
2287 packageName = "dateformat";
2296 packageName = "dateformat";
2288 version = "1.0.2-1.2.3";
2297 version = "1.0.2-1.2.3";
2289 src = fetchurl {
2298 src = fetchurl {
2290 url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz";
2299 url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz";
2291 sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9";
2300 sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9";
2292 };
2301 };
2293 };
2302 };
2294 "debug-0.7.4" = {
2303 "debug-0.7.4" = {
2295 name = "debug";
2304 name = "debug";
2296 packageName = "debug";
2305 packageName = "debug";
2297 version = "0.7.4";
2306 version = "0.7.4";
2298 src = fetchurl {
2307 src = fetchurl {
2299 url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz";
2308 url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz";
2300 sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39";
2309 sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39";
2301 };
2310 };
2302 };
2311 };
2303 "debug-2.6.9" = {
2312 "debug-2.6.9" = {
2304 name = "debug";
2313 name = "debug";
2305 packageName = "debug";
2314 packageName = "debug";
2306 version = "2.6.9";
2315 version = "2.6.9";
2307 src = fetchurl {
2316 src = fetchurl {
2308 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
2317 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
2309 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
2318 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
2310 };
2319 };
2311 };
2320 };
2312 "decamelize-1.2.0" = {
2321 "decamelize-1.2.0" = {
2313 name = "decamelize";
2322 name = "decamelize";
2314 packageName = "decamelize";
2323 packageName = "decamelize";
2315 version = "1.2.0";
2324 version = "1.2.0";
2316 src = fetchurl {
2325 src = fetchurl {
2317 url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
2326 url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
2318 sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
2327 sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
2319 };
2328 };
2320 };
2329 };
2321 "decode-uri-component-0.2.0" = {
2330 "decode-uri-component-0.2.0" = {
2322 name = "decode-uri-component";
2331 name = "decode-uri-component";
2323 packageName = "decode-uri-component";
2332 packageName = "decode-uri-component";
2324 version = "0.2.0";
2333 version = "0.2.0";
2325 src = fetchurl {
2334 src = fetchurl {
2326 url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
2335 url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
2327 sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
2336 sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
2328 };
2337 };
2329 };
2338 };
2330 "deep-for-each-2.0.3" = {
2339 "deep-for-each-2.0.3" = {
2331 name = "deep-for-each";
2340 name = "deep-for-each";
2332 packageName = "deep-for-each";
2341 packageName = "deep-for-each";
2333 version = "2.0.3";
2342 version = "2.0.3";
2334 src = fetchurl {
2343 src = fetchurl {
2335 url = "https://registry.npmjs.org/deep-for-each/-/deep-for-each-2.0.3.tgz";
2344 url = "https://registry.npmjs.org/deep-for-each/-/deep-for-each-2.0.3.tgz";
2336 sha512 = "Y9mu+rplGcNZ7veer+5rqcdI9w3aPb7/WyE/nYnsuPevaE2z5YuC2u7/Gz/hIKsa0zo8sE8gKoBimSNsO/sr+A==";
2345 sha512 = "Y9mu+rplGcNZ7veer+5rqcdI9w3aPb7/WyE/nYnsuPevaE2z5YuC2u7/Gz/hIKsa0zo8sE8gKoBimSNsO/sr+A==";
2337 };
2346 };
2338 };
2347 };
2339 "define-properties-1.1.3" = {
2348 "define-properties-1.1.3" = {
2340 name = "define-properties";
2349 name = "define-properties";
2341 packageName = "define-properties";
2350 packageName = "define-properties";
2342 version = "1.1.3";
2351 version = "1.1.3";
2343 src = fetchurl {
2352 src = fetchurl {
2344 url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz";
2353 url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz";
2345 sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==";
2354 sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==";
2346 };
2355 };
2347 };
2356 };
2348 "define-property-0.2.5" = {
2357 "define-property-0.2.5" = {
2349 name = "define-property";
2358 name = "define-property";
2350 packageName = "define-property";
2359 packageName = "define-property";
2351 version = "0.2.5";
2360 version = "0.2.5";
2352 src = fetchurl {
2361 src = fetchurl {
2353 url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
2362 url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
2354 sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
2363 sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
2355 };
2364 };
2356 };
2365 };
2357 "define-property-1.0.0" = {
2366 "define-property-1.0.0" = {
2358 name = "define-property";
2367 name = "define-property";
2359 packageName = "define-property";
2368 packageName = "define-property";
2360 version = "1.0.0";
2369 version = "1.0.0";
2361 src = fetchurl {
2370 src = fetchurl {
2362 url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
2371 url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
2363 sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
2372 sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
2364 };
2373 };
2365 };
2374 };
2366 "define-property-2.0.2" = {
2375 "define-property-2.0.2" = {
2367 name = "define-property";
2376 name = "define-property";
2368 packageName = "define-property";
2377 packageName = "define-property";
2369 version = "2.0.2";
2378 version = "2.0.2";
2370 src = fetchurl {
2379 src = fetchurl {
2371 url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
2380 url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
2372 sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
2381 sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
2373 };
2382 };
2374 };
2383 };
2375 "defined-1.0.0" = {
2384 "defined-1.0.0" = {
2376 name = "defined";
2385 name = "defined";
2377 packageName = "defined";
2386 packageName = "defined";
2378 version = "1.0.0";
2387 version = "1.0.0";
2379 src = fetchurl {
2388 src = fetchurl {
2380 url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz";
2389 url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz";
2381 sha1 = "c98d9bcef75674188e110969151199e39b1fa693";
2390 sha1 = "c98d9bcef75674188e110969151199e39b1fa693";
2382 };
2391 };
2383 };
2392 };
2384 "delayed-stream-1.0.0" = {
2393 "delayed-stream-1.0.0" = {
2385 name = "delayed-stream";
2394 name = "delayed-stream";
2386 packageName = "delayed-stream";
2395 packageName = "delayed-stream";
2387 version = "1.0.0";
2396 version = "1.0.0";
2388 src = fetchurl {
2397 src = fetchurl {
2389 url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
2398 url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
2390 sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
2399 sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
2391 };
2400 };
2392 };
2401 };
2393 "delegate-3.2.0" = {
2402 "delegate-3.2.0" = {
2394 name = "delegate";
2403 name = "delegate";
2395 packageName = "delegate";
2404 packageName = "delegate";
2396 version = "3.2.0";
2405 version = "3.2.0";
2397 src = fetchurl {
2406 src = fetchurl {
2398 url = "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz";
2407 url = "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz";
2399 sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==";
2408 sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==";
2400 };
2409 };
2401 };
2410 };
2402 "des.js-1.0.1" = {
2411 "des.js-1.0.1" = {
2403 name = "des.js";
2412 name = "des.js";
2404 packageName = "des.js";
2413 packageName = "des.js";
2405 version = "1.0.1";
2414 version = "1.0.1";
2406 src = fetchurl {
2415 src = fetchurl {
2407 url = "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz";
2416 url = "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz";
2408 sha512 = "Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==";
2417 sha512 = "Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==";
2409 };
2418 };
2410 };
2419 };
2411 "detect-file-1.0.0" = {
2420 "detect-file-1.0.0" = {
2412 name = "detect-file";
2421 name = "detect-file";
2413 packageName = "detect-file";
2422 packageName = "detect-file";
2414 version = "1.0.0";
2423 version = "1.0.0";
2415 src = fetchurl {
2424 src = fetchurl {
2416 url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
2425 url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
2417 sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
2426 sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
2418 };
2427 };
2419 };
2428 };
2420 "detect-indent-4.0.0" = {
2429 "detect-indent-4.0.0" = {
2421 name = "detect-indent";
2430 name = "detect-indent";
2422 packageName = "detect-indent";
2431 packageName = "detect-indent";
2423 version = "4.0.0";
2432 version = "4.0.0";
2424 src = fetchurl {
2433 src = fetchurl {
2425 url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz";
2434 url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz";
2426 sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208";
2435 sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208";
2427 };
2436 };
2428 };
2437 };
2429 "diffie-hellman-5.0.3" = {
2438 "diffie-hellman-5.0.3" = {
2430 name = "diffie-hellman";
2439 name = "diffie-hellman";
2431 packageName = "diffie-hellman";
2440 packageName = "diffie-hellman";
2432 version = "5.0.3";
2441 version = "5.0.3";
2433 src = fetchurl {
2442 src = fetchurl {
2434 url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz";
2443 url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz";
2435 sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==";
2444 sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==";
2436 };
2445 };
2437 };
2446 };
2438 "dir-glob-2.2.2" = {
2447 "dir-glob-2.2.2" = {
2439 name = "dir-glob";
2448 name = "dir-glob";
2440 packageName = "dir-glob";
2449 packageName = "dir-glob";
2441 version = "2.2.2";
2450 version = "2.2.2";
2442 src = fetchurl {
2451 src = fetchurl {
2443 url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz";
2452 url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz";
2444 sha512 = "f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==";
2453 sha512 = "f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==";
2445 };
2454 };
2446 };
2455 };
2447 "dom-converter-0.2.0" = {
2456 "dom-converter-0.2.0" = {
2448 name = "dom-converter";
2457 name = "dom-converter";
2449 packageName = "dom-converter";
2458 packageName = "dom-converter";
2450 version = "0.2.0";
2459 version = "0.2.0";
2451 src = fetchurl {
2460 src = fetchurl {
2452 url = "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz";
2461 url = "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz";
2453 sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==";
2462 sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==";
2454 };
2463 };
2455 };
2464 };
2456 "dom-serializer-0.2.2" = {
2465 "dom-serializer-0.2.2" = {
2457 name = "dom-serializer";
2466 name = "dom-serializer";
2458 packageName = "dom-serializer";
2467 packageName = "dom-serializer";
2459 version = "0.2.2";
2468 version = "0.2.2";
2460 src = fetchurl {
2469 src = fetchurl {
2461 url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz";
2470 url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz";
2462 sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==";
2471 sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==";
2463 };
2472 };
2464 };
2473 };
2465 "dom5-2.3.0" = {
2474 "dom5-2.3.0" = {
2466 name = "dom5";
2475 name = "dom5";
2467 packageName = "dom5";
2476 packageName = "dom5";
2468 version = "2.3.0";
2477 version = "2.3.0";
2469 src = fetchurl {
2478 src = fetchurl {
2470 url = "https://registry.npmjs.org/dom5/-/dom5-2.3.0.tgz";
2479 url = "https://registry.npmjs.org/dom5/-/dom5-2.3.0.tgz";
2471 sha1 = "f8204975bd0dacbbe5b58a8a93ffc1fed0ffcd2a";
2480 sha1 = "f8204975bd0dacbbe5b58a8a93ffc1fed0ffcd2a";
2472 };
2481 };
2473 };
2482 };
2474 "domain-browser-1.2.0" = {
2483 "domain-browser-1.2.0" = {
2475 name = "domain-browser";
2484 name = "domain-browser";
2476 packageName = "domain-browser";
2485 packageName = "domain-browser";
2477 version = "1.2.0";
2486 version = "1.2.0";
2478 src = fetchurl {
2487 src = fetchurl {
2479 url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz";
2488 url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz";
2480 sha512 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==";
2489 sha512 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==";
2481 };
2490 };
2482 };
2491 };
2483 "domelementtype-1.3.1" = {
2492 "domelementtype-1.3.1" = {
2484 name = "domelementtype";
2493 name = "domelementtype";
2485 packageName = "domelementtype";
2494 packageName = "domelementtype";
2486 version = "1.3.1";
2495 version = "1.3.1";
2487 src = fetchurl {
2496 src = fetchurl {
2488 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz";
2497 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz";
2489 sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==";
2498 sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==";
2490 };
2499 };
2491 };
2500 };
2492 "domelementtype-2.0.1" = {
2501 "domelementtype-2.0.1" = {
2493 name = "domelementtype";
2502 name = "domelementtype";
2494 packageName = "domelementtype";
2503 packageName = "domelementtype";
2495 version = "2.0.1";
2504 version = "2.0.1";
2496 src = fetchurl {
2505 src = fetchurl {
2497 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz";
2506 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz";
2498 sha512 = "5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==";
2507 sha512 = "5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==";
2499 };
2508 };
2500 };
2509 };
2501 "domhandler-2.3.0" = {
2510 "domhandler-2.3.0" = {
2502 name = "domhandler";
2511 name = "domhandler";
2503 packageName = "domhandler";
2512 packageName = "domhandler";
2504 version = "2.3.0";
2513 version = "2.3.0";
2505 src = fetchurl {
2514 src = fetchurl {
2506 url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz";
2515 url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz";
2507 sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738";
2516 sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738";
2508 };
2517 };
2509 };
2518 };
2510 "domutils-1.5.1" = {
2519 "domutils-1.5.1" = {
2511 name = "domutils";
2520 name = "domutils";
2512 packageName = "domutils";
2521 packageName = "domutils";
2513 version = "1.5.1";
2522 version = "1.5.1";
2514 src = fetchurl {
2523 src = fetchurl {
2515 url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz";
2524 url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz";
2516 sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
2525 sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
2517 };
2526 };
2518 };
2527 };
2519 "dropzone-5.7.0" = {
2528 "dropzone-5.7.0" = {
2520 name = "dropzone";
2529 name = "dropzone";
2521 packageName = "dropzone";
2530 packageName = "dropzone";
2522 version = "5.7.0";
2531 version = "5.7.0";
2523 src = fetchurl {
2532 src = fetchurl {
2524 url = "https://registry.npmjs.org/dropzone/-/dropzone-5.7.0.tgz";
2533 url = "https://registry.npmjs.org/dropzone/-/dropzone-5.7.0.tgz";
2525 sha512 = "kOltiZXH5cO/72I22JjE+w6BoT6uaVLfWdFMsi1PMKFkU6BZWpqRwjnsRm0o6ANGTBuZar5Piu7m/CbKqRPiYg==";
2534 sha512 = "kOltiZXH5cO/72I22JjE+w6BoT6uaVLfWdFMsi1PMKFkU6BZWpqRwjnsRm0o6ANGTBuZar5Piu7m/CbKqRPiYg==";
2526 };
2535 };
2527 };
2536 };
2528 "duplexer-0.1.1" = {
2537 "duplexer-0.1.1" = {
2529 name = "duplexer";
2538 name = "duplexer";
2530 packageName = "duplexer";
2539 packageName = "duplexer";
2531 version = "0.1.1";
2540 version = "0.1.1";
2532 src = fetchurl {
2541 src = fetchurl {
2533 url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz";
2542 url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz";
2534 sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1";
2543 sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1";
2535 };
2544 };
2536 };
2545 };
2537 "duplexify-3.7.1" = {
2546 "duplexify-3.7.1" = {
2538 name = "duplexify";
2547 name = "duplexify";
2539 packageName = "duplexify";
2548 packageName = "duplexify";
2540 version = "3.7.1";
2549 version = "3.7.1";
2541 src = fetchurl {
2550 src = fetchurl {
2542 url = "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz";
2551 url = "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz";
2543 sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==";
2552 sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==";
2544 };
2553 };
2545 };
2554 };
2546 "ecc-jsbn-0.1.2" = {
2555 "ecc-jsbn-0.1.2" = {
2547 name = "ecc-jsbn";
2556 name = "ecc-jsbn";
2548 packageName = "ecc-jsbn";
2557 packageName = "ecc-jsbn";
2549 version = "0.1.2";
2558 version = "0.1.2";
2550 src = fetchurl {
2559 src = fetchurl {
2551 url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
2560 url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
2552 sha1 = "3a83a904e54353287874c564b7549386849a98c9";
2561 sha1 = "3a83a904e54353287874c564b7549386849a98c9";
2553 };
2562 };
2554 };
2563 };
2555 "electron-to-chromium-1.3.412" = {
2564 "electron-to-chromium-1.3.433" = {
2556 name = "electron-to-chromium";
2565 name = "electron-to-chromium";
2557 packageName = "electron-to-chromium";
2566 packageName = "electron-to-chromium";
2558 version = "1.3.412";
2567 version = "1.3.433";
2559 src = fetchurl {
2568 src = fetchurl {
2560 url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.412.tgz";
2569 url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.433.tgz";
2561 sha512 = "4bVdSeJScR8fT7ERveLWbxemY5uXEHVseqMRyORosiKcTUSGtVwBkV8uLjXCqoFLeImA57Z9hbz3TOid01U4Hw==";
2570 sha512 = "C0gcgwB8RpPAq2Ia6teihNOHOfNzGy4jJXgjIXSmKdt6O2xrJM8CPjA8jTFyo97KozVrZ8oH2FUCixC6Hnuk2g==";
2562 };
2571 };
2563 };
2572 };
2564 "elliptic-6.5.2" = {
2573 "elliptic-6.5.2" = {
2565 name = "elliptic";
2574 name = "elliptic";
2566 packageName = "elliptic";
2575 packageName = "elliptic";
2567 version = "6.5.2";
2576 version = "6.5.2";
2568 src = fetchurl {
2577 src = fetchurl {
2569 url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz";
2578 url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz";
2570 sha512 = "f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==";
2579 sha512 = "f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==";
2571 };
2580 };
2572 };
2581 };
2573 "emojis-list-2.1.0" = {
2582 "emojis-list-2.1.0" = {
2574 name = "emojis-list";
2583 name = "emojis-list";
2575 packageName = "emojis-list";
2584 packageName = "emojis-list";
2576 version = "2.1.0";
2585 version = "2.1.0";
2577 src = fetchurl {
2586 src = fetchurl {
2578 url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz";
2587 url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz";
2579 sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389";
2588 sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389";
2580 };
2589 };
2581 };
2590 };
2582 "emojis-list-3.0.0" = {
2591 "emojis-list-3.0.0" = {
2583 name = "emojis-list";
2592 name = "emojis-list";
2584 packageName = "emojis-list";
2593 packageName = "emojis-list";
2585 version = "3.0.0";
2594 version = "3.0.0";
2586 src = fetchurl {
2595 src = fetchurl {
2587 url = "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz";
2596 url = "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz";
2588 sha512 = "/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==";
2597 sha512 = "/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==";
2589 };
2598 };
2590 };
2599 };
2591 "end-of-stream-1.4.4" = {
2600 "end-of-stream-1.4.4" = {
2592 name = "end-of-stream";
2601 name = "end-of-stream";
2593 packageName = "end-of-stream";
2602 packageName = "end-of-stream";
2594 version = "1.4.4";
2603 version = "1.4.4";
2595 src = fetchurl {
2604 src = fetchurl {
2596 url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz";
2605 url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz";
2597 sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==";
2606 sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==";
2598 };
2607 };
2599 };
2608 };
2600 "enhanced-resolve-3.4.1" = {
2609 "enhanced-resolve-3.4.1" = {
2601 name = "enhanced-resolve";
2610 name = "enhanced-resolve";
2602 packageName = "enhanced-resolve";
2611 packageName = "enhanced-resolve";
2603 version = "3.4.1";
2612 version = "3.4.1";
2604 src = fetchurl {
2613 src = fetchurl {
2605 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz";
2614 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz";
2606 sha1 = "0421e339fd71419b3da13d129b3979040230476e";
2615 sha1 = "0421e339fd71419b3da13d129b3979040230476e";
2607 };
2616 };
2608 };
2617 };
2609 "enhanced-resolve-4.1.1" = {
2618 "enhanced-resolve-4.1.1" = {
2610 name = "enhanced-resolve";
2619 name = "enhanced-resolve";
2611 packageName = "enhanced-resolve";
2620 packageName = "enhanced-resolve";
2612 version = "4.1.1";
2621 version = "4.1.1";
2613 src = fetchurl {
2622 src = fetchurl {
2614 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz";
2623 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz";
2615 sha512 = "98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==";
2624 sha512 = "98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==";
2616 };
2625 };
2617 };
2626 };
2618 "entities-1.0.0" = {
2627 "entities-1.0.0" = {
2619 name = "entities";
2628 name = "entities";
2620 packageName = "entities";
2629 packageName = "entities";
2621 version = "1.0.0";
2630 version = "1.0.0";
2622 src = fetchurl {
2631 src = fetchurl {
2623 url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz";
2632 url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz";
2624 sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26";
2633 sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26";
2625 };
2634 };
2626 };
2635 };
2627 "entities-2.0.0" = {
2636 "entities-2.0.2" = {
2628 name = "entities";
2637 name = "entities";
2629 packageName = "entities";
2638 packageName = "entities";
2630 version = "2.0.0";
2639 version = "2.0.2";
2631 src = fetchurl {
2640 src = fetchurl {
2632 url = "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz";
2641 url = "https://registry.npmjs.org/entities/-/entities-2.0.2.tgz";
2633 sha512 = "D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==";
2642 sha512 = "dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw==";
2634 };
2643 };
2635 };
2644 };
2636 "errno-0.1.7" = {
2645 "errno-0.1.7" = {
2637 name = "errno";
2646 name = "errno";
2638 packageName = "errno";
2647 packageName = "errno";
2639 version = "0.1.7";
2648 version = "0.1.7";
2640 src = fetchurl {
2649 src = fetchurl {
2641 url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz";
2650 url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz";
2642 sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==";
2651 sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==";
2643 };
2652 };
2644 };
2653 };
2645 "es-abstract-1.17.5" = {
2654 "es-abstract-1.17.5" = {
2646 name = "es-abstract";
2655 name = "es-abstract";
2647 packageName = "es-abstract";
2656 packageName = "es-abstract";
2648 version = "1.17.5";
2657 version = "1.17.5";
2649 src = fetchurl {
2658 src = fetchurl {
2650 url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz";
2659 url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz";
2651 sha512 = "BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==";
2660 sha512 = "BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==";
2652 };
2661 };
2653 };
2662 };
2654 "es-to-primitive-1.2.1" = {
2663 "es-to-primitive-1.2.1" = {
2655 name = "es-to-primitive";
2664 name = "es-to-primitive";
2656 packageName = "es-to-primitive";
2665 packageName = "es-to-primitive";
2657 version = "1.2.1";
2666 version = "1.2.1";
2658 src = fetchurl {
2667 src = fetchurl {
2659 url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz";
2668 url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz";
2660 sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==";
2669 sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==";
2661 };
2670 };
2662 };
2671 };
2663 "es6-templates-0.2.3" = {
2672 "es6-templates-0.2.3" = {
2664 name = "es6-templates";
2673 name = "es6-templates";
2665 packageName = "es6-templates";
2674 packageName = "es6-templates";
2666 version = "0.2.3";
2675 version = "0.2.3";
2667 src = fetchurl {
2676 src = fetchurl {
2668 url = "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz";
2677 url = "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz";
2669 sha1 = "5cb9ac9fb1ded6eb1239342b81d792bbb4078ee4";
2678 sha1 = "5cb9ac9fb1ded6eb1239342b81d792bbb4078ee4";
2670 };
2679 };
2671 };
2680 };
2672 "escape-string-regexp-1.0.5" = {
2681 "escape-string-regexp-1.0.5" = {
2673 name = "escape-string-regexp";
2682 name = "escape-string-regexp";
2674 packageName = "escape-string-regexp";
2683 packageName = "escape-string-regexp";
2675 version = "1.0.5";
2684 version = "1.0.5";
2676 src = fetchurl {
2685 src = fetchurl {
2677 url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
2686 url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
2678 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
2687 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
2679 };
2688 };
2680 };
2689 };
2681 "eslint-scope-4.0.3" = {
2690 "eslint-scope-4.0.3" = {
2682 name = "eslint-scope";
2691 name = "eslint-scope";
2683 packageName = "eslint-scope";
2692 packageName = "eslint-scope";
2684 version = "4.0.3";
2693 version = "4.0.3";
2685 src = fetchurl {
2694 src = fetchurl {
2686 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz";
2695 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz";
2687 sha512 = "p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==";
2696 sha512 = "p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==";
2688 };
2697 };
2689 };
2698 };
2690 "espree-3.5.4" = {
2699 "espree-3.5.4" = {
2691 name = "espree";
2700 name = "espree";
2692 packageName = "espree";
2701 packageName = "espree";
2693 version = "3.5.4";
2702 version = "3.5.4";
2694 src = fetchurl {
2703 src = fetchurl {
2695 url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz";
2704 url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz";
2696 sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==";
2705 sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==";
2697 };
2706 };
2698 };
2707 };
2699 "esprima-1.0.4" = {
2708 "esprima-1.0.4" = {
2700 name = "esprima";
2709 name = "esprima";
2701 packageName = "esprima";
2710 packageName = "esprima";
2702 version = "1.0.4";
2711 version = "1.0.4";
2703 src = fetchurl {
2712 src = fetchurl {
2704 url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz";
2713 url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz";
2705 sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad";
2714 sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad";
2706 };
2715 };
2707 };
2716 };
2708 "esprima-2.7.3" = {
2717 "esprima-2.7.3" = {
2709 name = "esprima";
2718 name = "esprima";
2710 packageName = "esprima";
2719 packageName = "esprima";
2711 version = "2.7.3";
2720 version = "2.7.3";
2712 src = fetchurl {
2721 src = fetchurl {
2713 url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz";
2722 url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz";
2714 sha1 = "96e3b70d5779f6ad49cd032673d1c312767ba581";
2723 sha1 = "96e3b70d5779f6ad49cd032673d1c312767ba581";
2715 };
2724 };
2716 };
2725 };
2717 "esprima-3.1.3" = {
2726 "esprima-3.1.3" = {
2718 name = "esprima";
2727 name = "esprima";
2719 packageName = "esprima";
2728 packageName = "esprima";
2720 version = "3.1.3";
2729 version = "3.1.3";
2721 src = fetchurl {
2730 src = fetchurl {
2722 url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz";
2731 url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz";
2723 sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633";
2732 sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633";
2724 };
2733 };
2725 };
2734 };
2726 "esrecurse-4.2.1" = {
2735 "esrecurse-4.2.1" = {
2727 name = "esrecurse";
2736 name = "esrecurse";
2728 packageName = "esrecurse";
2737 packageName = "esrecurse";
2729 version = "4.2.1";
2738 version = "4.2.1";
2730 src = fetchurl {
2739 src = fetchurl {
2731 url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz";
2740 url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz";
2732 sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==";
2741 sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==";
2733 };
2742 };
2734 };
2743 };
2735 "estraverse-4.3.0" = {
2744 "estraverse-4.3.0" = {
2736 name = "estraverse";
2745 name = "estraverse";
2737 packageName = "estraverse";
2746 packageName = "estraverse";
2738 version = "4.3.0";
2747 version = "4.3.0";
2739 src = fetchurl {
2748 src = fetchurl {
2740 url = "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz";
2749 url = "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz";
2741 sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==";
2750 sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==";
2742 };
2751 };
2743 };
2752 };
2744 "esutils-2.0.3" = {
2753 "esutils-2.0.3" = {
2745 name = "esutils";
2754 name = "esutils";
2746 packageName = "esutils";
2755 packageName = "esutils";
2747 version = "2.0.3";
2756 version = "2.0.3";
2748 src = fetchurl {
2757 src = fetchurl {
2749 url = "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz";
2758 url = "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz";
2750 sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==";
2759 sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==";
2751 };
2760 };
2752 };
2761 };
2753 "eventemitter2-0.4.14" = {
2762 "eventemitter2-0.4.14" = {
2754 name = "eventemitter2";
2763 name = "eventemitter2";
2755 packageName = "eventemitter2";
2764 packageName = "eventemitter2";
2756 version = "0.4.14";
2765 version = "0.4.14";
2757 src = fetchurl {
2766 src = fetchurl {
2758 url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz";
2767 url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz";
2759 sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab";
2768 sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab";
2760 };
2769 };
2761 };
2770 };
2762 "events-3.1.0" = {
2771 "events-3.1.0" = {
2763 name = "events";
2772 name = "events";
2764 packageName = "events";
2773 packageName = "events";
2765 version = "3.1.0";
2774 version = "3.1.0";
2766 src = fetchurl {
2775 src = fetchurl {
2767 url = "https://registry.npmjs.org/events/-/events-3.1.0.tgz";
2776 url = "https://registry.npmjs.org/events/-/events-3.1.0.tgz";
2768 sha512 = "Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==";
2777 sha512 = "Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==";
2769 };
2778 };
2770 };
2779 };
2771 "evp_bytestokey-1.0.3" = {
2780 "evp_bytestokey-1.0.3" = {
2772 name = "evp_bytestokey";
2781 name = "evp_bytestokey";
2773 packageName = "evp_bytestokey";
2782 packageName = "evp_bytestokey";
2774 version = "1.0.3";
2783 version = "1.0.3";
2775 src = fetchurl {
2784 src = fetchurl {
2776 url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
2785 url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
2777 sha512 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==";
2786 sha512 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==";
2778 };
2787 };
2779 };
2788 };
2780 "execa-1.0.0" = {
2789 "execa-1.0.0" = {
2781 name = "execa";
2790 name = "execa";
2782 packageName = "execa";
2791 packageName = "execa";
2783 version = "1.0.0";
2792 version = "1.0.0";
2784 src = fetchurl {
2793 src = fetchurl {
2785 url = "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz";
2794 url = "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz";
2786 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==";
2795 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==";
2787 };
2796 };
2788 };
2797 };
2789 "exit-0.1.2" = {
2798 "exit-0.1.2" = {
2790 name = "exit";
2799 name = "exit";
2791 packageName = "exit";
2800 packageName = "exit";
2792 version = "0.1.2";
2801 version = "0.1.2";
2793 src = fetchurl {
2802 src = fetchurl {
2794 url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz";
2803 url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz";
2795 sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
2804 sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
2796 };
2805 };
2797 };
2806 };
2798 "expand-brackets-2.1.4" = {
2807 "expand-brackets-2.1.4" = {
2799 name = "expand-brackets";
2808 name = "expand-brackets";
2800 packageName = "expand-brackets";
2809 packageName = "expand-brackets";
2801 version = "2.1.4";
2810 version = "2.1.4";
2802 src = fetchurl {
2811 src = fetchurl {
2803 url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
2812 url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
2804 sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
2813 sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
2805 };
2814 };
2806 };
2815 };
2807 "expand-tilde-2.0.2" = {
2816 "expand-tilde-2.0.2" = {
2808 name = "expand-tilde";
2817 name = "expand-tilde";
2809 packageName = "expand-tilde";
2818 packageName = "expand-tilde";
2810 version = "2.0.2";
2819 version = "2.0.2";
2811 src = fetchurl {
2820 src = fetchurl {
2812 url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
2821 url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
2813 sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
2822 sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
2814 };
2823 };
2815 };
2824 };
2816 "exports-loader-0.6.4" = {
2825 "exports-loader-0.6.4" = {
2817 name = "exports-loader";
2826 name = "exports-loader";
2818 packageName = "exports-loader";
2827 packageName = "exports-loader";
2819 version = "0.6.4";
2828 version = "0.6.4";
2820 src = fetchurl {
2829 src = fetchurl {
2821 url = "https://registry.npmjs.org/exports-loader/-/exports-loader-0.6.4.tgz";
2830 url = "https://registry.npmjs.org/exports-loader/-/exports-loader-0.6.4.tgz";
2822 sha1 = "d70fc6121975b35fc12830cf52754be2740fc886";
2831 sha1 = "d70fc6121975b35fc12830cf52754be2740fc886";
2823 };
2832 };
2824 };
2833 };
2825 "extend-3.0.2" = {
2834 "extend-3.0.2" = {
2826 name = "extend";
2835 name = "extend";
2827 packageName = "extend";
2836 packageName = "extend";
2828 version = "3.0.2";
2837 version = "3.0.2";
2829 src = fetchurl {
2838 src = fetchurl {
2830 url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
2839 url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
2831 sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
2840 sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
2832 };
2841 };
2833 };
2842 };
2834 "extend-shallow-2.0.1" = {
2843 "extend-shallow-2.0.1" = {
2835 name = "extend-shallow";
2844 name = "extend-shallow";
2836 packageName = "extend-shallow";
2845 packageName = "extend-shallow";
2837 version = "2.0.1";
2846 version = "2.0.1";
2838 src = fetchurl {
2847 src = fetchurl {
2839 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
2848 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
2840 sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
2849 sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
2841 };
2850 };
2842 };
2851 };
2843 "extend-shallow-3.0.2" = {
2852 "extend-shallow-3.0.2" = {
2844 name = "extend-shallow";
2853 name = "extend-shallow";
2845 packageName = "extend-shallow";
2854 packageName = "extend-shallow";
2846 version = "3.0.2";
2855 version = "3.0.2";
2847 src = fetchurl {
2856 src = fetchurl {
2848 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
2857 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
2849 sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
2858 sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
2850 };
2859 };
2851 };
2860 };
2852 "extglob-2.0.4" = {
2861 "extglob-2.0.4" = {
2853 name = "extglob";
2862 name = "extglob";
2854 packageName = "extglob";
2863 packageName = "extglob";
2855 version = "2.0.4";
2864 version = "2.0.4";
2856 src = fetchurl {
2865 src = fetchurl {
2857 url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
2866 url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
2858 sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
2867 sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
2859 };
2868 };
2860 };
2869 };
2861 "extsprintf-1.3.0" = {
2870 "extsprintf-1.3.0" = {
2862 name = "extsprintf";
2871 name = "extsprintf";
2863 packageName = "extsprintf";
2872 packageName = "extsprintf";
2864 version = "1.3.0";
2873 version = "1.3.0";
2865 src = fetchurl {
2874 src = fetchurl {
2866 url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
2875 url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
2867 sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
2876 sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
2868 };
2877 };
2869 };
2878 };
2870 "fast-deep-equal-3.1.1" = {
2879 "fast-deep-equal-3.1.1" = {
2871 name = "fast-deep-equal";
2880 name = "fast-deep-equal";
2872 packageName = "fast-deep-equal";
2881 packageName = "fast-deep-equal";
2873 version = "3.1.1";
2882 version = "3.1.1";
2874 src = fetchurl {
2883 src = fetchurl {
2875 url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz";
2884 url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz";
2876 sha512 = "8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==";
2885 sha512 = "8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==";
2877 };
2886 };
2878 };
2887 };
2879 "fast-json-stable-stringify-2.1.0" = {
2888 "fast-json-stable-stringify-2.1.0" = {
2880 name = "fast-json-stable-stringify";
2889 name = "fast-json-stable-stringify";
2881 packageName = "fast-json-stable-stringify";
2890 packageName = "fast-json-stable-stringify";
2882 version = "2.1.0";
2891 version = "2.1.0";
2883 src = fetchurl {
2892 src = fetchurl {
2884 url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz";
2893 url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz";
2885 sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==";
2894 sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==";
2886 };
2895 };
2887 };
2896 };
2888 "fastparse-1.1.2" = {
2897 "fastparse-1.1.2" = {
2889 name = "fastparse";
2898 name = "fastparse";
2890 packageName = "fastparse";
2899 packageName = "fastparse";
2891 version = "1.1.2";
2900 version = "1.1.2";
2892 src = fetchurl {
2901 src = fetchurl {
2893 url = "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz";
2902 url = "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz";
2894 sha512 = "483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==";
2903 sha512 = "483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==";
2895 };
2904 };
2896 };
2905 };
2897 "favico.js-0.3.10" = {
2906 "favico.js-0.3.10" = {
2898 name = "favico.js";
2907 name = "favico.js";
2899 packageName = "favico.js";
2908 packageName = "favico.js";
2900 version = "0.3.10";
2909 version = "0.3.10";
2901 src = fetchurl {
2910 src = fetchurl {
2902 url = "https://registry.npmjs.org/favico.js/-/favico.js-0.3.10.tgz";
2911 url = "https://registry.npmjs.org/favico.js/-/favico.js-0.3.10.tgz";
2903 sha1 = "80586e27a117f24a8d51c18a99bdc714d4339301";
2912 sha1 = "80586e27a117f24a8d51c18a99bdc714d4339301";
2904 };
2913 };
2905 };
2914 };
2906 "faye-websocket-0.4.4" = {
2915 "faye-websocket-0.4.4" = {
2907 name = "faye-websocket";
2916 name = "faye-websocket";
2908 packageName = "faye-websocket";
2917 packageName = "faye-websocket";
2909 version = "0.4.4";
2918 version = "0.4.4";
2910 src = fetchurl {
2919 src = fetchurl {
2911 url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.4.4.tgz";
2920 url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.4.4.tgz";
2912 sha1 = "c14c5b3bf14d7417ffbfd990c0a7495cd9f337bc";
2921 sha1 = "c14c5b3bf14d7417ffbfd990c0a7495cd9f337bc";
2913 };
2922 };
2914 };
2923 };
2915 "figures-1.7.0" = {
2924 "figures-1.7.0" = {
2916 name = "figures";
2925 name = "figures";
2917 packageName = "figures";
2926 packageName = "figures";
2918 version = "1.7.0";
2927 version = "1.7.0";
2919 src = fetchurl {
2928 src = fetchurl {
2920 url = "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz";
2929 url = "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz";
2921 sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e";
2930 sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e";
2922 };
2931 };
2923 };
2932 };
2924 "file-sync-cmp-0.1.1" = {
2933 "file-sync-cmp-0.1.1" = {
2925 name = "file-sync-cmp";
2934 name = "file-sync-cmp";
2926 packageName = "file-sync-cmp";
2935 packageName = "file-sync-cmp";
2927 version = "0.1.1";
2936 version = "0.1.1";
2928 src = fetchurl {
2937 src = fetchurl {
2929 url = "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz";
2938 url = "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz";
2930 sha1 = "a5e7a8ffbfa493b43b923bbd4ca89a53b63b612b";
2939 sha1 = "a5e7a8ffbfa493b43b923bbd4ca89a53b63b612b";
2931 };
2940 };
2932 };
2941 };
2933 "file-uri-to-path-1.0.0" = {
2942 "file-uri-to-path-1.0.0" = {
2934 name = "file-uri-to-path";
2943 name = "file-uri-to-path";
2935 packageName = "file-uri-to-path";
2944 packageName = "file-uri-to-path";
2936 version = "1.0.0";
2945 version = "1.0.0";
2937 src = fetchurl {
2946 src = fetchurl {
2938 url = "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz";
2947 url = "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz";
2939 sha512 = "0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==";
2948 sha512 = "0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==";
2940 };
2949 };
2941 };
2950 };
2942 "fill-range-4.0.0" = {
2951 "fill-range-4.0.0" = {
2943 name = "fill-range";
2952 name = "fill-range";
2944 packageName = "fill-range";
2953 packageName = "fill-range";
2945 version = "4.0.0";
2954 version = "4.0.0";
2946 src = fetchurl {
2955 src = fetchurl {
2947 url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
2956 url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
2948 sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
2957 sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
2949 };
2958 };
2950 };
2959 };
2951 "find-cache-dir-1.0.0" = {
2960 "find-cache-dir-1.0.0" = {
2952 name = "find-cache-dir";
2961 name = "find-cache-dir";
2953 packageName = "find-cache-dir";
2962 packageName = "find-cache-dir";
2954 version = "1.0.0";
2963 version = "1.0.0";
2955 src = fetchurl {
2964 src = fetchurl {
2956 url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz";
2965 url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz";
2957 sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f";
2966 sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f";
2958 };
2967 };
2959 };
2968 };
2960 "find-up-2.1.0" = {
2969 "find-up-2.1.0" = {
2961 name = "find-up";
2970 name = "find-up";
2962 packageName = "find-up";
2971 packageName = "find-up";
2963 version = "2.1.0";
2972 version = "2.1.0";
2964 src = fetchurl {
2973 src = fetchurl {
2965 url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz";
2974 url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz";
2966 sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
2975 sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
2967 };
2976 };
2968 };
2977 };
2969 "find-up-3.0.0" = {
2978 "find-up-3.0.0" = {
2970 name = "find-up";
2979 name = "find-up";
2971 packageName = "find-up";
2980 packageName = "find-up";
2972 version = "3.0.0";
2981 version = "3.0.0";
2973 src = fetchurl {
2982 src = fetchurl {
2974 url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz";
2983 url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz";
2975 sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==";
2984 sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==";
2976 };
2985 };
2977 };
2986 };
2978 "findup-sync-0.1.3" = {
2987 "findup-sync-0.1.3" = {
2979 name = "findup-sync";
2988 name = "findup-sync";
2980 packageName = "findup-sync";
2989 packageName = "findup-sync";
2981 version = "0.1.3";
2990 version = "0.1.3";
2982 src = fetchurl {
2991 src = fetchurl {
2983 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz";
2992 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz";
2984 sha1 = "7f3e7a97b82392c653bf06589bd85190e93c3683";
2993 sha1 = "7f3e7a97b82392c653bf06589bd85190e93c3683";
2985 };
2994 };
2986 };
2995 };
2987 "findup-sync-2.0.0" = {
2996 "findup-sync-2.0.0" = {
2988 name = "findup-sync";
2997 name = "findup-sync";
2989 packageName = "findup-sync";
2998 packageName = "findup-sync";
2990 version = "2.0.0";
2999 version = "2.0.0";
2991 src = fetchurl {
3000 src = fetchurl {
2992 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
3001 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
2993 sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
3002 sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
2994 };
3003 };
2995 };
3004 };
2996 "fined-1.2.0" = {
3005 "fined-1.2.0" = {
2997 name = "fined";
3006 name = "fined";
2998 packageName = "fined";
3007 packageName = "fined";
2999 version = "1.2.0";
3008 version = "1.2.0";
3000 src = fetchurl {
3009 src = fetchurl {
3001 url = "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz";
3010 url = "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz";
3002 sha512 = "ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==";
3011 sha512 = "ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==";
3003 };
3012 };
3004 };
3013 };
3005 "flagged-respawn-1.0.1" = {
3014 "flagged-respawn-1.0.1" = {
3006 name = "flagged-respawn";
3015 name = "flagged-respawn";
3007 packageName = "flagged-respawn";
3016 packageName = "flagged-respawn";
3008 version = "1.0.1";
3017 version = "1.0.1";
3009 src = fetchurl {
3018 src = fetchurl {
3010 url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz";
3019 url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz";
3011 sha512 = "lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==";
3020 sha512 = "lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==";
3012 };
3021 };
3013 };
3022 };
3014 "flatten-1.0.3" = {
3023 "flatten-1.0.3" = {
3015 name = "flatten";
3024 name = "flatten";
3016 packageName = "flatten";
3025 packageName = "flatten";
3017 version = "1.0.3";
3026 version = "1.0.3";
3018 src = fetchurl {
3027 src = fetchurl {
3019 url = "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz";
3028 url = "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz";
3020 sha512 = "dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==";
3029 sha512 = "dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==";
3021 };
3030 };
3022 };
3031 };
3023 "flush-write-stream-1.1.1" = {
3032 "flush-write-stream-1.1.1" = {
3024 name = "flush-write-stream";
3033 name = "flush-write-stream";
3025 packageName = "flush-write-stream";
3034 packageName = "flush-write-stream";
3026 version = "1.1.1";
3035 version = "1.1.1";
3027 src = fetchurl {
3036 src = fetchurl {
3028 url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz";
3037 url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz";
3029 sha512 = "3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==";
3038 sha512 = "3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==";
3030 };
3039 };
3031 };
3040 };
3032 "for-in-1.0.2" = {
3041 "for-in-1.0.2" = {
3033 name = "for-in";
3042 name = "for-in";
3034 packageName = "for-in";
3043 packageName = "for-in";
3035 version = "1.0.2";
3044 version = "1.0.2";
3036 src = fetchurl {
3045 src = fetchurl {
3037 url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
3046 url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
3038 sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
3047 sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
3039 };
3048 };
3040 };
3049 };
3041 "for-own-1.0.0" = {
3050 "for-own-1.0.0" = {
3042 name = "for-own";
3051 name = "for-own";
3043 packageName = "for-own";
3052 packageName = "for-own";
3044 version = "1.0.0";
3053 version = "1.0.0";
3045 src = fetchurl {
3054 src = fetchurl {
3046 url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
3055 url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
3047 sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
3056 sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
3048 };
3057 };
3049 };
3058 };
3050 "forever-agent-0.6.1" = {
3059 "forever-agent-0.6.1" = {
3051 name = "forever-agent";
3060 name = "forever-agent";
3052 packageName = "forever-agent";
3061 packageName = "forever-agent";
3053 version = "0.6.1";
3062 version = "0.6.1";
3054 src = fetchurl {
3063 src = fetchurl {
3055 url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
3064 url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
3056 sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
3065 sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
3057 };
3066 };
3058 };
3067 };
3059 "form-data-2.1.4" = {
3068 "form-data-2.1.4" = {
3060 name = "form-data";
3069 name = "form-data";
3061 packageName = "form-data";
3070 packageName = "form-data";
3062 version = "2.1.4";
3071 version = "2.1.4";
3063 src = fetchurl {
3072 src = fetchurl {
3064 url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
3073 url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
3065 sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
3074 sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
3066 };
3075 };
3067 };
3076 };
3068 "fragment-cache-0.2.1" = {
3077 "fragment-cache-0.2.1" = {
3069 name = "fragment-cache";
3078 name = "fragment-cache";
3070 packageName = "fragment-cache";
3079 packageName = "fragment-cache";
3071 version = "0.2.1";
3080 version = "0.2.1";
3072 src = fetchurl {
3081 src = fetchurl {
3073 url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
3082 url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
3074 sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
3083 sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
3075 };
3084 };
3076 };
3085 };
3077 "from2-2.3.0" = {
3086 "from2-2.3.0" = {
3078 name = "from2";
3087 name = "from2";
3079 packageName = "from2";
3088 packageName = "from2";
3080 version = "2.3.0";
3089 version = "2.3.0";
3081 src = fetchurl {
3090 src = fetchurl {
3082 url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
3091 url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
3083 sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
3092 sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
3084 };
3093 };
3085 };
3094 };
3086 "fs-write-stream-atomic-1.0.10" = {
3095 "fs-write-stream-atomic-1.0.10" = {
3087 name = "fs-write-stream-atomic";
3096 name = "fs-write-stream-atomic";
3088 packageName = "fs-write-stream-atomic";
3097 packageName = "fs-write-stream-atomic";
3089 version = "1.0.10";
3098 version = "1.0.10";
3090 src = fetchurl {
3099 src = fetchurl {
3091 url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
3100 url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
3092 sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
3101 sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
3093 };
3102 };
3094 };
3103 };
3095 "fs.realpath-1.0.0" = {
3104 "fs.realpath-1.0.0" = {
3096 name = "fs.realpath";
3105 name = "fs.realpath";
3097 packageName = "fs.realpath";
3106 packageName = "fs.realpath";
3098 version = "1.0.0";
3107 version = "1.0.0";
3099 src = fetchurl {
3108 src = fetchurl {
3100 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
3109 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
3101 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
3110 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
3102 };
3111 };
3103 };
3112 };
3104 "fsevents-1.2.12" = {
3113 "fsevents-1.2.13" = {
3105 name = "fsevents";
3114 name = "fsevents";
3106 packageName = "fsevents";
3115 packageName = "fsevents";
3107 version = "1.2.12";
3116 version = "1.2.13";
3108 src = fetchurl {
3117 src = fetchurl {
3109 url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.12.tgz";
3118 url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz";
3110 sha512 = "Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==";
3119 sha512 = "oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==";
3111 };
3120 };
3112 };
3121 };
3113 "function-bind-1.1.1" = {
3122 "function-bind-1.1.1" = {
3114 name = "function-bind";
3123 name = "function-bind";
3115 packageName = "function-bind";
3124 packageName = "function-bind";
3116 version = "1.1.1";
3125 version = "1.1.1";
3117 src = fetchurl {
3126 src = fetchurl {
3118 url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz";
3127 url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz";
3119 sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==";
3128 sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==";
3120 };
3129 };
3121 };
3130 };
3122 "gaze-0.5.2" = {
3131 "gaze-0.5.2" = {
3123 name = "gaze";
3132 name = "gaze";
3124 packageName = "gaze";
3133 packageName = "gaze";
3125 version = "0.5.2";
3134 version = "0.5.2";
3126 src = fetchurl {
3135 src = fetchurl {
3127 url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
3136 url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
3128 sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
3137 sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
3129 };
3138 };
3130 };
3139 };
3131 "get-caller-file-1.0.3" = {
3140 "get-caller-file-1.0.3" = {
3132 name = "get-caller-file";
3141 name = "get-caller-file";
3133 packageName = "get-caller-file";
3142 packageName = "get-caller-file";
3134 version = "1.0.3";
3143 version = "1.0.3";
3135 src = fetchurl {
3144 src = fetchurl {
3136 url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz";
3145 url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz";
3137 sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==";
3146 sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==";
3138 };
3147 };
3139 };
3148 };
3140 "get-stream-4.1.0" = {
3149 "get-stream-4.1.0" = {
3141 name = "get-stream";
3150 name = "get-stream";
3142 packageName = "get-stream";
3151 packageName = "get-stream";
3143 version = "4.1.0";
3152 version = "4.1.0";
3144 src = fetchurl {
3153 src = fetchurl {
3145 url = "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz";
3154 url = "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz";
3146 sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==";
3155 sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==";
3147 };
3156 };
3148 };
3157 };
3149 "get-value-2.0.6" = {
3158 "get-value-2.0.6" = {
3150 name = "get-value";
3159 name = "get-value";
3151 packageName = "get-value";
3160 packageName = "get-value";
3152 version = "2.0.6";
3161 version = "2.0.6";
3153 src = fetchurl {
3162 src = fetchurl {
3154 url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
3163 url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
3155 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
3164 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
3156 };
3165 };
3157 };
3166 };
3158 "getobject-0.1.0" = {
3167 "getobject-0.1.0" = {
3159 name = "getobject";
3168 name = "getobject";
3160 packageName = "getobject";
3169 packageName = "getobject";
3161 version = "0.1.0";
3170 version = "0.1.0";
3162 src = fetchurl {
3171 src = fetchurl {
3163 url = "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz";
3172 url = "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz";
3164 sha1 = "047a449789fa160d018f5486ed91320b6ec7885c";
3173 sha1 = "047a449789fa160d018f5486ed91320b6ec7885c";
3165 };
3174 };
3166 };
3175 };
3167 "getpass-0.1.7" = {
3176 "getpass-0.1.7" = {
3168 name = "getpass";
3177 name = "getpass";
3169 packageName = "getpass";
3178 packageName = "getpass";
3170 version = "0.1.7";
3179 version = "0.1.7";
3171 src = fetchurl {
3180 src = fetchurl {
3172 url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
3181 url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
3173 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
3182 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
3174 };
3183 };
3175 };
3184 };
3176 "glob-3.1.21" = {
3185 "glob-3.1.21" = {
3177 name = "glob";
3186 name = "glob";
3178 packageName = "glob";
3187 packageName = "glob";
3179 version = "3.1.21";
3188 version = "3.1.21";
3180 src = fetchurl {
3189 src = fetchurl {
3181 url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
3190 url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
3182 sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
3191 sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
3183 };
3192 };
3184 };
3193 };
3185 "glob-3.2.11" = {
3194 "glob-3.2.11" = {
3186 name = "glob";
3195 name = "glob";
3187 packageName = "glob";
3196 packageName = "glob";
3188 version = "3.2.11";
3197 version = "3.2.11";
3189 src = fetchurl {
3198 src = fetchurl {
3190 url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz";
3199 url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz";
3191 sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d";
3200 sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d";
3192 };
3201 };
3193 };
3202 };
3194 "glob-7.1.6" = {
3203 "glob-7.1.6" = {
3195 name = "glob";
3204 name = "glob";
3196 packageName = "glob";
3205 packageName = "glob";
3197 version = "7.1.6";
3206 version = "7.1.6";
3198 src = fetchurl {
3207 src = fetchurl {
3199 url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz";
3208 url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz";
3200 sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==";
3209 sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==";
3201 };
3210 };
3202 };
3211 };
3203 "glob-parent-3.1.0" = {
3212 "glob-parent-3.1.0" = {
3204 name = "glob-parent";
3213 name = "glob-parent";
3205 packageName = "glob-parent";
3214 packageName = "glob-parent";
3206 version = "3.1.0";
3215 version = "3.1.0";
3207 src = fetchurl {
3216 src = fetchurl {
3208 url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
3217 url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
3209 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
3218 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
3210 };
3219 };
3211 };
3220 };
3212 "global-modules-1.0.0" = {
3221 "global-modules-1.0.0" = {
3213 name = "global-modules";
3222 name = "global-modules";
3214 packageName = "global-modules";
3223 packageName = "global-modules";
3215 version = "1.0.0";
3224 version = "1.0.0";
3216 src = fetchurl {
3225 src = fetchurl {
3217 url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
3226 url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
3218 sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==";
3227 sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==";
3219 };
3228 };
3220 };
3229 };
3221 "global-modules-path-2.3.1" = {
3230 "global-modules-path-2.3.1" = {
3222 name = "global-modules-path";
3231 name = "global-modules-path";
3223 packageName = "global-modules-path";
3232 packageName = "global-modules-path";
3224 version = "2.3.1";
3233 version = "2.3.1";
3225 src = fetchurl {
3234 src = fetchurl {
3226 url = "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.1.tgz";
3235 url = "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.1.tgz";
3227 sha512 = "y+shkf4InI7mPRHSo2b/k6ix6+NLDtyccYv86whhxrSGX9wjPX1VMITmrDbE1eh7zkzhiWtW2sHklJYoQ62Cxg==";
3236 sha512 = "y+shkf4InI7mPRHSo2b/k6ix6+NLDtyccYv86whhxrSGX9wjPX1VMITmrDbE1eh7zkzhiWtW2sHklJYoQ62Cxg==";
3228 };
3237 };
3229 };
3238 };
3230 "global-prefix-1.0.2" = {
3239 "global-prefix-1.0.2" = {
3231 name = "global-prefix";
3240 name = "global-prefix";
3232 packageName = "global-prefix";
3241 packageName = "global-prefix";
3233 version = "1.0.2";
3242 version = "1.0.2";
3234 src = fetchurl {
3243 src = fetchurl {
3235 url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
3244 url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
3236 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
3245 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
3237 };
3246 };
3238 };
3247 };
3239 "globals-9.18.0" = {
3248 "globals-9.18.0" = {
3240 name = "globals";
3249 name = "globals";
3241 packageName = "globals";
3250 packageName = "globals";
3242 version = "9.18.0";
3251 version = "9.18.0";
3243 src = fetchurl {
3252 src = fetchurl {
3244 url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz";
3253 url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz";
3245 sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==";
3254 sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==";
3246 };
3255 };
3247 };
3256 };
3248 "globby-7.1.1" = {
3257 "globby-7.1.1" = {
3249 name = "globby";
3258 name = "globby";
3250 packageName = "globby";
3259 packageName = "globby";
3251 version = "7.1.1";
3260 version = "7.1.1";
3252 src = fetchurl {
3261 src = fetchurl {
3253 url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz";
3262 url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz";
3254 sha1 = "fb2ccff9401f8600945dfada97440cca972b8680";
3263 sha1 = "fb2ccff9401f8600945dfada97440cca972b8680";
3255 };
3264 };
3256 };
3265 };
3257 "globule-0.1.0" = {
3266 "globule-0.1.0" = {
3258 name = "globule";
3267 name = "globule";
3259 packageName = "globule";
3268 packageName = "globule";
3260 version = "0.1.0";
3269 version = "0.1.0";
3261 src = fetchurl {
3270 src = fetchurl {
3262 url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
3271 url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
3263 sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
3272 sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
3264 };
3273 };
3265 };
3274 };
3266 "good-listener-1.2.2" = {
3275 "good-listener-1.2.2" = {
3267 name = "good-listener";
3276 name = "good-listener";
3268 packageName = "good-listener";
3277 packageName = "good-listener";
3269 version = "1.2.2";
3278 version = "1.2.2";
3270 src = fetchurl {
3279 src = fetchurl {
3271 url = "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz";
3280 url = "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz";
3272 sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50";
3281 sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50";
3273 };
3282 };
3274 };
3283 };
3275 "graceful-fs-1.2.3" = {
3284 "graceful-fs-1.2.3" = {
3276 name = "graceful-fs";
3285 name = "graceful-fs";
3277 packageName = "graceful-fs";
3286 packageName = "graceful-fs";
3278 version = "1.2.3";
3287 version = "1.2.3";
3279 src = fetchurl {
3288 src = fetchurl {
3280 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
3289 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
3281 sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
3290 sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
3282 };
3291 };
3283 };
3292 };
3284 "graceful-fs-4.2.3" = {
3293 "graceful-fs-4.2.4" = {
3285 name = "graceful-fs";
3294 name = "graceful-fs";
3286 packageName = "graceful-fs";
3295 packageName = "graceful-fs";
3287 version = "4.2.3";
3296 version = "4.2.4";
3288 src = fetchurl {
3297 src = fetchurl {
3289 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz";
3298 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz";
3290 sha512 = "a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==";
3299 sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==";
3291 };
3300 };
3292 };
3301 };
3293 "grunt-0.4.5" = {
3302 "grunt-0.4.5" = {
3294 name = "grunt";
3303 name = "grunt";
3295 packageName = "grunt";
3304 packageName = "grunt";
3296 version = "0.4.5";
3305 version = "0.4.5";
3297 src = fetchurl {
3306 src = fetchurl {
3298 url = "https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz";
3307 url = "https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz";
3299 sha1 = "56937cd5194324adff6d207631832a9d6ba4e7f0";
3308 sha1 = "56937cd5194324adff6d207631832a9d6ba4e7f0";
3300 };
3309 };
3301 };
3310 };
3302 "grunt-cli-1.3.2" = {
3311 "grunt-cli-1.3.2" = {
3303 name = "grunt-cli";
3312 name = "grunt-cli";
3304 packageName = "grunt-cli";
3313 packageName = "grunt-cli";
3305 version = "1.3.2";
3314 version = "1.3.2";
3306 src = fetchurl {
3315 src = fetchurl {
3307 url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.2.tgz";
3316 url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.2.tgz";
3308 sha512 = "8OHDiZZkcptxVXtMfDxJvmN7MVJNE8L/yIcPb4HB7TlyFD1kDvjHrb62uhySsU14wJx9ORMnTuhRMQ40lH/orQ==";
3317 sha512 = "8OHDiZZkcptxVXtMfDxJvmN7MVJNE8L/yIcPb4HB7TlyFD1kDvjHrb62uhySsU14wJx9ORMnTuhRMQ40lH/orQ==";
3309 };
3318 };
3310 };
3319 };
3311 "grunt-contrib-concat-0.5.1" = {
3320 "grunt-contrib-concat-0.5.1" = {
3312 name = "grunt-contrib-concat";
3321 name = "grunt-contrib-concat";
3313 packageName = "grunt-contrib-concat";
3322 packageName = "grunt-contrib-concat";
3314 version = "0.5.1";
3323 version = "0.5.1";
3315 src = fetchurl {
3324 src = fetchurl {
3316 url = "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz";
3325 url = "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz";
3317 sha1 = "953c6efdfdfd2c107ab9c85077f2d4b24d31cd49";
3326 sha1 = "953c6efdfdfd2c107ab9c85077f2d4b24d31cd49";
3318 };
3327 };
3319 };
3328 };
3320 "grunt-contrib-copy-1.0.0" = {
3329 "grunt-contrib-copy-1.0.0" = {
3321 name = "grunt-contrib-copy";
3330 name = "grunt-contrib-copy";
3322 packageName = "grunt-contrib-copy";
3331 packageName = "grunt-contrib-copy";
3323 version = "1.0.0";
3332 version = "1.0.0";
3324 src = fetchurl {
3333 src = fetchurl {
3325 url = "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz";
3334 url = "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz";
3326 sha1 = "7060c6581e904b8ab0d00f076e0a8f6e3e7c3573";
3335 sha1 = "7060c6581e904b8ab0d00f076e0a8f6e3e7c3573";
3327 };
3336 };
3328 };
3337 };
3329 "grunt-contrib-jshint-0.12.0" = {
3338 "grunt-contrib-jshint-0.12.0" = {
3330 name = "grunt-contrib-jshint";
3339 name = "grunt-contrib-jshint";
3331 packageName = "grunt-contrib-jshint";
3340 packageName = "grunt-contrib-jshint";
3332 version = "0.12.0";
3341 version = "0.12.0";
3333 src = fetchurl {
3342 src = fetchurl {
3334 url = "https://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-0.12.0.tgz";
3343 url = "https://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-0.12.0.tgz";
3335 sha1 = "f6b2f06fc715264837a7ab6c69a1ce1a689c2c29";
3344 sha1 = "f6b2f06fc715264837a7ab6c69a1ce1a689c2c29";
3336 };
3345 };
3337 };
3346 };
3338 "grunt-contrib-less-1.4.1" = {
3347 "grunt-contrib-less-1.4.1" = {
3339 name = "grunt-contrib-less";
3348 name = "grunt-contrib-less";
3340 packageName = "grunt-contrib-less";
3349 packageName = "grunt-contrib-less";
3341 version = "1.4.1";
3350 version = "1.4.1";
3342 src = fetchurl {
3351 src = fetchurl {
3343 url = "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-1.4.1.tgz";
3352 url = "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-1.4.1.tgz";
3344 sha1 = "3bbdec0b75d12ceaa55d62943625c0b0861cdf6f";
3353 sha1 = "3bbdec0b75d12ceaa55d62943625c0b0861cdf6f";
3345 };
3354 };
3346 };
3355 };
3347 "grunt-contrib-uglify-4.0.1" = {
3356 "grunt-contrib-uglify-4.0.1" = {
3348 name = "grunt-contrib-uglify";
3357 name = "grunt-contrib-uglify";
3349 packageName = "grunt-contrib-uglify";
3358 packageName = "grunt-contrib-uglify";
3350 version = "4.0.1";
3359 version = "4.0.1";
3351 src = fetchurl {
3360 src = fetchurl {
3352 url = "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.1.tgz";
3361 url = "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.1.tgz";
3353 sha512 = "dwf8/+4uW1+7pH72WButOEnzErPGmtUvc8p08B0eQS/6ON0WdeQu0+WFeafaPTbbY1GqtS25lsHWaDeiTQNWPg==";
3362 sha512 = "dwf8/+4uW1+7pH72WButOEnzErPGmtUvc8p08B0eQS/6ON0WdeQu0+WFeafaPTbbY1GqtS25lsHWaDeiTQNWPg==";
3354 };
3363 };
3355 };
3364 };
3356 "grunt-contrib-watch-0.6.1" = {
3365 "grunt-contrib-watch-0.6.1" = {
3357 name = "grunt-contrib-watch";
3366 name = "grunt-contrib-watch";
3358 packageName = "grunt-contrib-watch";
3367 packageName = "grunt-contrib-watch";
3359 version = "0.6.1";
3368 version = "0.6.1";
3360 src = fetchurl {
3369 src = fetchurl {
3361 url = "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-0.6.1.tgz";
3370 url = "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-0.6.1.tgz";
3362 sha1 = "64fdcba25a635f5b4da1b6ce6f90da0aeb6e3f15";
3371 sha1 = "64fdcba25a635f5b4da1b6ce6f90da0aeb6e3f15";
3363 };
3372 };
3364 };
3373 };
3365 "grunt-known-options-1.1.1" = {
3374 "grunt-known-options-1.1.1" = {
3366 name = "grunt-known-options";
3375 name = "grunt-known-options";
3367 packageName = "grunt-known-options";
3376 packageName = "grunt-known-options";
3368 version = "1.1.1";
3377 version = "1.1.1";
3369 src = fetchurl {
3378 src = fetchurl {
3370 url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz";
3379 url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz";
3371 sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==";
3380 sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==";
3372 };
3381 };
3373 };
3382 };
3374 "grunt-legacy-log-0.1.3" = {
3383 "grunt-legacy-log-0.1.3" = {
3375 name = "grunt-legacy-log";
3384 name = "grunt-legacy-log";
3376 packageName = "grunt-legacy-log";
3385 packageName = "grunt-legacy-log";
3377 version = "0.1.3";
3386 version = "0.1.3";
3378 src = fetchurl {
3387 src = fetchurl {
3379 url = "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.3.tgz";
3388 url = "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.3.tgz";
3380 sha1 = "ec29426e803021af59029f87d2f9cd7335a05531";
3389 sha1 = "ec29426e803021af59029f87d2f9cd7335a05531";
3381 };
3390 };
3382 };
3391 };
3383 "grunt-legacy-log-utils-0.1.1" = {
3392 "grunt-legacy-log-utils-0.1.1" = {
3384 name = "grunt-legacy-log-utils";
3393 name = "grunt-legacy-log-utils";
3385 packageName = "grunt-legacy-log-utils";
3394 packageName = "grunt-legacy-log-utils";
3386 version = "0.1.1";
3395 version = "0.1.1";
3387 src = fetchurl {
3396 src = fetchurl {
3388 url = "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz";
3397 url = "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz";
3389 sha1 = "c0706b9dd9064e116f36f23fe4e6b048672c0f7e";
3398 sha1 = "c0706b9dd9064e116f36f23fe4e6b048672c0f7e";
3390 };
3399 };
3391 };
3400 };
3392 "grunt-legacy-util-0.2.0" = {
3401 "grunt-legacy-util-0.2.0" = {
3393 name = "grunt-legacy-util";
3402 name = "grunt-legacy-util";
3394 packageName = "grunt-legacy-util";
3403 packageName = "grunt-legacy-util";
3395 version = "0.2.0";
3404 version = "0.2.0";
3396 src = fetchurl {
3405 src = fetchurl {
3397 url = "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz";
3406 url = "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz";
3398 sha1 = "93324884dbf7e37a9ff7c026dff451d94a9e554b";
3407 sha1 = "93324884dbf7e37a9ff7c026dff451d94a9e554b";
3399 };
3408 };
3400 };
3409 };
3401 "grunt-webpack-3.1.3" = {
3410 "grunt-webpack-3.1.3" = {
3402 name = "grunt-webpack";
3411 name = "grunt-webpack";
3403 packageName = "grunt-webpack";
3412 packageName = "grunt-webpack";
3404 version = "3.1.3";
3413 version = "3.1.3";
3405 src = fetchurl {
3414 src = fetchurl {
3406 url = "https://registry.npmjs.org/grunt-webpack/-/grunt-webpack-3.1.3.tgz";
3415 url = "https://registry.npmjs.org/grunt-webpack/-/grunt-webpack-3.1.3.tgz";
3407 sha512 = "SaZ8K8lG4iTxs7ClZxOWCf3kxqS2y+Eel8SbaEGgBKwhAp6e45beIu+vhBZRLX3vonKML2kjemKsQ21REaqNFQ==";
3416 sha512 = "SaZ8K8lG4iTxs7ClZxOWCf3kxqS2y+Eel8SbaEGgBKwhAp6e45beIu+vhBZRLX3vonKML2kjemKsQ21REaqNFQ==";
3408 };
3417 };
3409 };
3418 };
3410 "gzip-size-3.0.0" = {
3419 "gzip-size-3.0.0" = {
3411 name = "gzip-size";
3420 name = "gzip-size";
3412 packageName = "gzip-size";
3421 packageName = "gzip-size";
3413 version = "3.0.0";
3422 version = "3.0.0";
3414 src = fetchurl {
3423 src = fetchurl {
3415 url = "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz";
3424 url = "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz";
3416 sha1 = "546188e9bdc337f673772f81660464b389dce520";
3425 sha1 = "546188e9bdc337f673772f81660464b389dce520";
3417 };
3426 };
3418 };
3427 };
3419 "har-schema-1.0.5" = {
3428 "har-schema-1.0.5" = {
3420 name = "har-schema";
3429 name = "har-schema";
3421 packageName = "har-schema";
3430 packageName = "har-schema";
3422 version = "1.0.5";
3431 version = "1.0.5";
3423 src = fetchurl {
3432 src = fetchurl {
3424 url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
3433 url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
3425 sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
3434 sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
3426 };
3435 };
3427 };
3436 };
3428 "har-validator-4.2.1" = {
3437 "har-validator-4.2.1" = {
3429 name = "har-validator";
3438 name = "har-validator";
3430 packageName = "har-validator";
3439 packageName = "har-validator";
3431 version = "4.2.1";
3440 version = "4.2.1";
3432 src = fetchurl {
3441 src = fetchurl {
3433 url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
3442 url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
3434 sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
3443 sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
3435 };
3444 };
3436 };
3445 };
3437 "has-1.0.3" = {
3446 "has-1.0.3" = {
3438 name = "has";
3447 name = "has";
3439 packageName = "has";
3448 packageName = "has";
3440 version = "1.0.3";
3449 version = "1.0.3";
3441 src = fetchurl {
3450 src = fetchurl {
3442 url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz";
3451 url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz";
3443 sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==";
3452 sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==";
3444 };
3453 };
3445 };
3454 };
3446 "has-ansi-0.1.0" = {
3455 "has-ansi-0.1.0" = {
3447 name = "has-ansi";
3456 name = "has-ansi";
3448 packageName = "has-ansi";
3457 packageName = "has-ansi";
3449 version = "0.1.0";
3458 version = "0.1.0";
3450 src = fetchurl {
3459 src = fetchurl {
3451 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz";
3460 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz";
3452 sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e";
3461 sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e";
3453 };
3462 };
3454 };
3463 };
3455 "has-ansi-2.0.0" = {
3464 "has-ansi-2.0.0" = {
3456 name = "has-ansi";
3465 name = "has-ansi";
3457 packageName = "has-ansi";
3466 packageName = "has-ansi";
3458 version = "2.0.0";
3467 version = "2.0.0";
3459 src = fetchurl {
3468 src = fetchurl {
3460 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
3469 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
3461 sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
3470 sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
3462 };
3471 };
3463 };
3472 };
3464 "has-flag-1.0.0" = {
3473 "has-flag-1.0.0" = {
3465 name = "has-flag";
3474 name = "has-flag";
3466 packageName = "has-flag";
3475 packageName = "has-flag";
3467 version = "1.0.0";
3476 version = "1.0.0";
3468 src = fetchurl {
3477 src = fetchurl {
3469 url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz";
3478 url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz";
3470 sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa";
3479 sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa";
3471 };
3480 };
3472 };
3481 };
3473 "has-flag-3.0.0" = {
3482 "has-flag-3.0.0" = {
3474 name = "has-flag";
3483 name = "has-flag";
3475 packageName = "has-flag";
3484 packageName = "has-flag";
3476 version = "3.0.0";
3485 version = "3.0.0";
3477 src = fetchurl {
3486 src = fetchurl {
3478 url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz";
3487 url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz";
3479 sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
3488 sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
3480 };
3489 };
3481 };
3490 };
3482 "has-symbols-1.0.1" = {
3491 "has-symbols-1.0.1" = {
3483 name = "has-symbols";
3492 name = "has-symbols";
3484 packageName = "has-symbols";
3493 packageName = "has-symbols";
3485 version = "1.0.1";
3494 version = "1.0.1";
3486 src = fetchurl {
3495 src = fetchurl {
3487 url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz";
3496 url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz";
3488 sha512 = "PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==";
3497 sha512 = "PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==";
3489 };
3498 };
3490 };
3499 };
3491 "has-value-0.3.1" = {
3500 "has-value-0.3.1" = {
3492 name = "has-value";
3501 name = "has-value";
3493 packageName = "has-value";
3502 packageName = "has-value";
3494 version = "0.3.1";
3503 version = "0.3.1";
3495 src = fetchurl {
3504 src = fetchurl {
3496 url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
3505 url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
3497 sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
3506 sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
3498 };
3507 };
3499 };
3508 };
3500 "has-value-1.0.0" = {
3509 "has-value-1.0.0" = {
3501 name = "has-value";
3510 name = "has-value";
3502 packageName = "has-value";
3511 packageName = "has-value";
3503 version = "1.0.0";
3512 version = "1.0.0";
3504 src = fetchurl {
3513 src = fetchurl {
3505 url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
3514 url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
3506 sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
3515 sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
3507 };
3516 };
3508 };
3517 };
3509 "has-values-0.1.4" = {
3518 "has-values-0.1.4" = {
3510 name = "has-values";
3519 name = "has-values";
3511 packageName = "has-values";
3520 packageName = "has-values";
3512 version = "0.1.4";
3521 version = "0.1.4";
3513 src = fetchurl {
3522 src = fetchurl {
3514 url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
3523 url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
3515 sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
3524 sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
3516 };
3525 };
3517 };
3526 };
3518 "has-values-1.0.0" = {
3527 "has-values-1.0.0" = {
3519 name = "has-values";
3528 name = "has-values";
3520 packageName = "has-values";
3529 packageName = "has-values";
3521 version = "1.0.0";
3530 version = "1.0.0";
3522 src = fetchurl {
3531 src = fetchurl {
3523 url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
3532 url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
3524 sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
3533 sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
3525 };
3534 };
3526 };
3535 };
3527 "hash-base-3.0.4" = {
3536 "hash-base-3.1.0" = {
3528 name = "hash-base";
3537 name = "hash-base";
3529 packageName = "hash-base";
3538 packageName = "hash-base";
3530 version = "3.0.4";
3539 version = "3.1.0";
3531 src = fetchurl {
3540 src = fetchurl {
3532 url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz";
3541 url = "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz";
3533 sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918";
3542 sha512 = "1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==";
3534 };
3543 };
3535 };
3544 };
3536 "hash.js-1.1.7" = {
3545 "hash.js-1.1.7" = {
3537 name = "hash.js";
3546 name = "hash.js";
3538 packageName = "hash.js";
3547 packageName = "hash.js";
3539 version = "1.1.7";
3548 version = "1.1.7";
3540 src = fetchurl {
3549 src = fetchurl {
3541 url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz";
3550 url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz";
3542 sha512 = "taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==";
3551 sha512 = "taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==";
3543 };
3552 };
3544 };
3553 };
3545 "hawk-3.1.3" = {
3554 "hawk-3.1.3" = {
3546 name = "hawk";
3555 name = "hawk";
3547 packageName = "hawk";
3556 packageName = "hawk";
3548 version = "3.1.3";
3557 version = "3.1.3";
3549 src = fetchurl {
3558 src = fetchurl {
3550 url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
3559 url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
3551 sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
3560 sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
3552 };
3561 };
3553 };
3562 };
3554 "he-1.2.0" = {
3563 "he-1.2.0" = {
3555 name = "he";
3564 name = "he";
3556 packageName = "he";
3565 packageName = "he";
3557 version = "1.2.0";
3566 version = "1.2.0";
3558 src = fetchurl {
3567 src = fetchurl {
3559 url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz";
3568 url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz";
3560 sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==";
3569 sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==";
3561 };
3570 };
3562 };
3571 };
3563 "hmac-drbg-1.0.1" = {
3572 "hmac-drbg-1.0.1" = {
3564 name = "hmac-drbg";
3573 name = "hmac-drbg";
3565 packageName = "hmac-drbg";
3574 packageName = "hmac-drbg";
3566 version = "1.0.1";
3575 version = "1.0.1";
3567 src = fetchurl {
3576 src = fetchurl {
3568 url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
3577 url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
3569 sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
3578 sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
3570 };
3579 };
3571 };
3580 };
3572 "hoek-2.16.3" = {
3581 "hoek-2.16.3" = {
3573 name = "hoek";
3582 name = "hoek";
3574 packageName = "hoek";
3583 packageName = "hoek";
3575 version = "2.16.3";
3584 version = "2.16.3";
3576 src = fetchurl {
3585 src = fetchurl {
3577 url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
3586 url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
3578 sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
3587 sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
3579 };
3588 };
3580 };
3589 };
3581 "home-or-tmp-2.0.0" = {
3590 "home-or-tmp-2.0.0" = {
3582 name = "home-or-tmp";
3591 name = "home-or-tmp";
3583 packageName = "home-or-tmp";
3592 packageName = "home-or-tmp";
3584 version = "2.0.0";
3593 version = "2.0.0";
3585 src = fetchurl {
3594 src = fetchurl {
3586 url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz";
3595 url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz";
3587 sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
3596 sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
3588 };
3597 };
3589 };
3598 };
3590 "homedir-polyfill-1.0.3" = {
3599 "homedir-polyfill-1.0.3" = {
3591 name = "homedir-polyfill";
3600 name = "homedir-polyfill";
3592 packageName = "homedir-polyfill";
3601 packageName = "homedir-polyfill";
3593 version = "1.0.3";
3602 version = "1.0.3";
3594 src = fetchurl {
3603 src = fetchurl {
3595 url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz";
3604 url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz";
3596 sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==";
3605 sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==";
3597 };
3606 };
3598 };
3607 };
3599 "hooker-0.2.3" = {
3608 "hooker-0.2.3" = {
3600 name = "hooker";
3609 name = "hooker";
3601 packageName = "hooker";
3610 packageName = "hooker";
3602 version = "0.2.3";
3611 version = "0.2.3";
3603 src = fetchurl {
3612 src = fetchurl {
3604 url = "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz";
3613 url = "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz";
3605 sha1 = "b834f723cc4a242aa65963459df6d984c5d3d959";
3614 sha1 = "b834f723cc4a242aa65963459df6d984c5d3d959";
3606 };
3615 };
3607 };
3616 };
3608 "html-comment-regex-1.1.2" = {
3617 "html-comment-regex-1.1.2" = {
3609 name = "html-comment-regex";
3618 name = "html-comment-regex";
3610 packageName = "html-comment-regex";
3619 packageName = "html-comment-regex";
3611 version = "1.1.2";
3620 version = "1.1.2";
3612 src = fetchurl {
3621 src = fetchurl {
3613 url = "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz";
3622 url = "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz";
3614 sha512 = "P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==";
3623 sha512 = "P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==";
3615 };
3624 };
3616 };
3625 };
3617 "html-loader-0.4.5" = {
3626 "html-loader-0.4.5" = {
3618 name = "html-loader";
3627 name = "html-loader";
3619 packageName = "html-loader";
3628 packageName = "html-loader";
3620 version = "0.4.5";
3629 version = "0.4.5";
3621 src = fetchurl {
3630 src = fetchurl {
3622 url = "https://registry.npmjs.org/html-loader/-/html-loader-0.4.5.tgz";
3631 url = "https://registry.npmjs.org/html-loader/-/html-loader-0.4.5.tgz";
3623 sha1 = "5fbcd87cd63a5c49a7fce2fe56f425e05729c68c";
3632 sha1 = "5fbcd87cd63a5c49a7fce2fe56f425e05729c68c";
3624 };
3633 };
3625 };
3634 };
3626 "html-loader-0.5.5" = {
3635 "html-loader-0.5.5" = {
3627 name = "html-loader";
3636 name = "html-loader";
3628 packageName = "html-loader";
3637 packageName = "html-loader";
3629 version = "0.5.5";
3638 version = "0.5.5";
3630 src = fetchurl {
3639 src = fetchurl {
3631 url = "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz";
3640 url = "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz";
3632 sha512 = "7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==";
3641 sha512 = "7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==";
3633 };
3642 };
3634 };
3643 };
3635 "html-minifier-3.5.21" = {
3644 "html-minifier-3.5.21" = {
3636 name = "html-minifier";
3645 name = "html-minifier";
3637 packageName = "html-minifier";
3646 packageName = "html-minifier";
3638 version = "3.5.21";
3647 version = "3.5.21";
3639 src = fetchurl {
3648 src = fetchurl {
3640 url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz";
3649 url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz";
3641 sha512 = "LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==";
3650 sha512 = "LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==";
3642 };
3651 };
3643 };
3652 };
3644 "html-webpack-plugin-3.2.0" = {
3653 "html-webpack-plugin-3.2.0" = {
3645 name = "html-webpack-plugin";
3654 name = "html-webpack-plugin";
3646 packageName = "html-webpack-plugin";
3655 packageName = "html-webpack-plugin";
3647 version = "3.2.0";
3656 version = "3.2.0";
3648 src = fetchurl {
3657 src = fetchurl {
3649 url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz";
3658 url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz";
3650 sha1 = "b01abbd723acaaa7b37b6af4492ebda03d9dd37b";
3659 sha1 = "b01abbd723acaaa7b37b6af4492ebda03d9dd37b";
3651 };
3660 };
3652 };
3661 };
3653 "htmlparser2-3.8.3" = {
3662 "htmlparser2-3.8.3" = {
3654 name = "htmlparser2";
3663 name = "htmlparser2";
3655 packageName = "htmlparser2";
3664 packageName = "htmlparser2";
3656 version = "3.8.3";
3665 version = "3.8.3";
3657 src = fetchurl {
3666 src = fetchurl {
3658 url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz";
3667 url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz";
3659 sha1 = "996c28b191516a8be86501a7d79757e5c70c1068";
3668 sha1 = "996c28b191516a8be86501a7d79757e5c70c1068";
3660 };
3669 };
3661 };
3670 };
3662 "http-signature-1.1.1" = {
3671 "http-signature-1.1.1" = {
3663 name = "http-signature";
3672 name = "http-signature";
3664 packageName = "http-signature";
3673 packageName = "http-signature";
3665 version = "1.1.1";
3674 version = "1.1.1";
3666 src = fetchurl {
3675 src = fetchurl {
3667 url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
3676 url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
3668 sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
3677 sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
3669 };
3678 };
3670 };
3679 };
3671 "https-browserify-1.0.0" = {
3680 "https-browserify-1.0.0" = {
3672 name = "https-browserify";
3681 name = "https-browserify";
3673 packageName = "https-browserify";
3682 packageName = "https-browserify";
3674 version = "1.0.0";
3683 version = "1.0.0";
3675 src = fetchurl {
3684 src = fetchurl {
3676 url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz";
3685 url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz";
3677 sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
3686 sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
3678 };
3687 };
3679 };
3688 };
3680 "iconv-lite-0.2.11" = {
3689 "iconv-lite-0.2.11" = {
3681 name = "iconv-lite";
3690 name = "iconv-lite";
3682 packageName = "iconv-lite";
3691 packageName = "iconv-lite";
3683 version = "0.2.11";
3692 version = "0.2.11";
3684 src = fetchurl {
3693 src = fetchurl {
3685 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz";
3694 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz";
3686 sha1 = "1ce60a3a57864a292d1321ff4609ca4bb965adc8";
3695 sha1 = "1ce60a3a57864a292d1321ff4609ca4bb965adc8";
3687 };
3696 };
3688 };
3697 };
3689 "icss-replace-symbols-1.1.0" = {
3698 "icss-replace-symbols-1.1.0" = {
3690 name = "icss-replace-symbols";
3699 name = "icss-replace-symbols";
3691 packageName = "icss-replace-symbols";
3700 packageName = "icss-replace-symbols";
3692 version = "1.1.0";
3701 version = "1.1.0";
3693 src = fetchurl {
3702 src = fetchurl {
3694 url = "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz";
3703 url = "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz";
3695 sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded";
3704 sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded";
3696 };
3705 };
3697 };
3706 };
3698 "icss-utils-2.1.0" = {
3707 "icss-utils-2.1.0" = {
3699 name = "icss-utils";
3708 name = "icss-utils";
3700 packageName = "icss-utils";
3709 packageName = "icss-utils";
3701 version = "2.1.0";
3710 version = "2.1.0";
3702 src = fetchurl {
3711 src = fetchurl {
3703 url = "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz";
3712 url = "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz";
3704 sha1 = "83f0a0ec378bf3246178b6c2ad9136f135b1c962";
3713 sha1 = "83f0a0ec378bf3246178b6c2ad9136f135b1c962";
3705 };
3714 };
3706 };
3715 };
3707 "ieee754-1.1.13" = {
3716 "ieee754-1.1.13" = {
3708 name = "ieee754";
3717 name = "ieee754";
3709 packageName = "ieee754";
3718 packageName = "ieee754";
3710 version = "1.1.13";
3719 version = "1.1.13";
3711 src = fetchurl {
3720 src = fetchurl {
3712 url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz";
3721 url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz";
3713 sha512 = "4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==";
3722 sha512 = "4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==";
3714 };
3723 };
3715 };
3724 };
3716 "iferr-0.1.5" = {
3725 "iferr-0.1.5" = {
3717 name = "iferr";
3726 name = "iferr";
3718 packageName = "iferr";
3727 packageName = "iferr";
3719 version = "0.1.5";
3728 version = "0.1.5";
3720 src = fetchurl {
3729 src = fetchurl {
3721 url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz";
3730 url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz";
3722 sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
3731 sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
3723 };
3732 };
3724 };
3733 };
3725 "ignore-3.3.10" = {
3734 "ignore-3.3.10" = {
3726 name = "ignore";
3735 name = "ignore";
3727 packageName = "ignore";
3736 packageName = "ignore";
3728 version = "3.3.10";
3737 version = "3.3.10";
3729 src = fetchurl {
3738 src = fetchurl {
3730 url = "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz";
3739 url = "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz";
3731 sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==";
3740 sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==";
3732 };
3741 };
3733 };
3742 };
3734 "image-size-0.5.5" = {
3743 "image-size-0.5.5" = {
3735 name = "image-size";
3744 name = "image-size";
3736 packageName = "image-size";
3745 packageName = "image-size";
3737 version = "0.5.5";
3746 version = "0.5.5";
3738 src = fetchurl {
3747 src = fetchurl {
3739 url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz";
3748 url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz";
3740 sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c";
3749 sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c";
3741 };
3750 };
3742 };
3751 };
3743 "import-local-2.0.0" = {
3752 "import-local-2.0.0" = {
3744 name = "import-local";
3753 name = "import-local";
3745 packageName = "import-local";
3754 packageName = "import-local";
3746 version = "2.0.0";
3755 version = "2.0.0";
3747 src = fetchurl {
3756 src = fetchurl {
3748 url = "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz";
3757 url = "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz";
3749 sha512 = "b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==";
3758 sha512 = "b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==";
3750 };
3759 };
3751 };
3760 };
3752 "imports-loader-0.7.1" = {
3761 "imports-loader-0.7.1" = {
3753 name = "imports-loader";
3762 name = "imports-loader";
3754 packageName = "imports-loader";
3763 packageName = "imports-loader";
3755 version = "0.7.1";
3764 version = "0.7.1";
3756 src = fetchurl {
3765 src = fetchurl {
3757 url = "https://registry.npmjs.org/imports-loader/-/imports-loader-0.7.1.tgz";
3766 url = "https://registry.npmjs.org/imports-loader/-/imports-loader-0.7.1.tgz";
3758 sha1 = "f204b5f34702a32c1db7d48d89d5e867a0441253";
3767 sha1 = "f204b5f34702a32c1db7d48d89d5e867a0441253";
3759 };
3768 };
3760 };
3769 };
3761 "imurmurhash-0.1.4" = {
3770 "imurmurhash-0.1.4" = {
3762 name = "imurmurhash";
3771 name = "imurmurhash";
3763 packageName = "imurmurhash";
3772 packageName = "imurmurhash";
3764 version = "0.1.4";
3773 version = "0.1.4";
3765 src = fetchurl {
3774 src = fetchurl {
3766 url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
3775 url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
3767 sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
3776 sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
3768 };
3777 };
3769 };
3778 };
3770 "indexes-of-1.0.1" = {
3779 "indexes-of-1.0.1" = {
3771 name = "indexes-of";
3780 name = "indexes-of";
3772 packageName = "indexes-of";
3781 packageName = "indexes-of";
3773 version = "1.0.1";
3782 version = "1.0.1";
3774 src = fetchurl {
3783 src = fetchurl {
3775 url = "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz";
3784 url = "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz";
3776 sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607";
3785 sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607";
3777 };
3786 };
3778 };
3787 };
3779 "inflight-1.0.6" = {
3788 "inflight-1.0.6" = {
3780 name = "inflight";
3789 name = "inflight";
3781 packageName = "inflight";
3790 packageName = "inflight";
3782 version = "1.0.6";
3791 version = "1.0.6";
3783 src = fetchurl {
3792 src = fetchurl {
3784 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
3793 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
3785 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
3794 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
3786 };
3795 };
3787 };
3796 };
3788 "inherits-1.0.2" = {
3797 "inherits-1.0.2" = {
3789 name = "inherits";
3798 name = "inherits";
3790 packageName = "inherits";
3799 packageName = "inherits";
3791 version = "1.0.2";
3800 version = "1.0.2";
3792 src = fetchurl {
3801 src = fetchurl {
3793 url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
3802 url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
3794 sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
3803 sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
3795 };
3804 };
3796 };
3805 };
3797 "inherits-2.0.1" = {
3806 "inherits-2.0.1" = {
3798 name = "inherits";
3807 name = "inherits";
3799 packageName = "inherits";
3808 packageName = "inherits";
3800 version = "2.0.1";
3809 version = "2.0.1";
3801 src = fetchurl {
3810 src = fetchurl {
3802 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz";
3811 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz";
3803 sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
3812 sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
3804 };
3813 };
3805 };
3814 };
3806 "inherits-2.0.3" = {
3815 "inherits-2.0.3" = {
3807 name = "inherits";
3816 name = "inherits";
3808 packageName = "inherits";
3817 packageName = "inherits";
3809 version = "2.0.3";
3818 version = "2.0.3";
3810 src = fetchurl {
3819 src = fetchurl {
3811 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
3820 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
3812 sha1 = "633c2c83e3da42a502f52466022480f4208261de";
3821 sha1 = "633c2c83e3da42a502f52466022480f4208261de";
3813 };
3822 };
3814 };
3823 };
3815 "inherits-2.0.4" = {
3824 "inherits-2.0.4" = {
3816 name = "inherits";
3825 name = "inherits";
3817 packageName = "inherits";
3826 packageName = "inherits";
3818 version = "2.0.4";
3827 version = "2.0.4";
3819 src = fetchurl {
3828 src = fetchurl {
3820 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz";
3829 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz";
3821 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==";
3830 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==";
3822 };
3831 };
3823 };
3832 };
3824 "ini-1.3.5" = {
3833 "ini-1.3.5" = {
3825 name = "ini";
3834 name = "ini";
3826 packageName = "ini";
3835 packageName = "ini";
3827 version = "1.3.5";
3836 version = "1.3.5";
3828 src = fetchurl {
3837 src = fetchurl {
3829 url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
3838 url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
3830 sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
3839 sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
3831 };
3840 };
3832 };
3841 };
3833 "interpret-1.1.0" = {
3842 "interpret-1.1.0" = {
3834 name = "interpret";
3843 name = "interpret";
3835 packageName = "interpret";
3844 packageName = "interpret";
3836 version = "1.1.0";
3845 version = "1.1.0";
3837 src = fetchurl {
3846 src = fetchurl {
3838 url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
3847 url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
3839 sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
3848 sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
3840 };
3849 };
3841 };
3850 };
3842 "invariant-2.2.4" = {
3851 "invariant-2.2.4" = {
3843 name = "invariant";
3852 name = "invariant";
3844 packageName = "invariant";
3853 packageName = "invariant";
3845 version = "2.2.4";
3854 version = "2.2.4";
3846 src = fetchurl {
3855 src = fetchurl {
3847 url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz";
3856 url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz";
3848 sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==";
3857 sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==";
3849 };
3858 };
3850 };
3859 };
3851 "invert-kv-2.0.0" = {
3860 "invert-kv-2.0.0" = {
3852 name = "invert-kv";
3861 name = "invert-kv";
3853 packageName = "invert-kv";
3862 packageName = "invert-kv";
3854 version = "2.0.0";
3863 version = "2.0.0";
3855 src = fetchurl {
3864 src = fetchurl {
3856 url = "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz";
3865 url = "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz";
3857 sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==";
3866 sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==";
3858 };
3867 };
3859 };
3868 };
3860 "is-absolute-1.0.0" = {
3869 "is-absolute-1.0.0" = {
3861 name = "is-absolute";
3870 name = "is-absolute";
3862 packageName = "is-absolute";
3871 packageName = "is-absolute";
3863 version = "1.0.0";
3872 version = "1.0.0";
3864 src = fetchurl {
3873 src = fetchurl {
3865 url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
3874 url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
3866 sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==";
3875 sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==";
3867 };
3876 };
3868 };
3877 };
3869 "is-absolute-url-2.1.0" = {
3878 "is-absolute-url-2.1.0" = {
3870 name = "is-absolute-url";
3879 name = "is-absolute-url";
3871 packageName = "is-absolute-url";
3880 packageName = "is-absolute-url";
3872 version = "2.1.0";
3881 version = "2.1.0";
3873 src = fetchurl {
3882 src = fetchurl {
3874 url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz";
3883 url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz";
3875 sha1 = "50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6";
3884 sha1 = "50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6";
3876 };
3885 };
3877 };
3886 };
3878 "is-accessor-descriptor-0.1.6" = {
3887 "is-accessor-descriptor-0.1.6" = {
3879 name = "is-accessor-descriptor";
3888 name = "is-accessor-descriptor";
3880 packageName = "is-accessor-descriptor";
3889 packageName = "is-accessor-descriptor";
3881 version = "0.1.6";
3890 version = "0.1.6";
3882 src = fetchurl {
3891 src = fetchurl {
3883 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
3892 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
3884 sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
3893 sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
3885 };
3894 };
3886 };
3895 };
3887 "is-accessor-descriptor-1.0.0" = {
3896 "is-accessor-descriptor-1.0.0" = {
3888 name = "is-accessor-descriptor";
3897 name = "is-accessor-descriptor";
3889 packageName = "is-accessor-descriptor";
3898 packageName = "is-accessor-descriptor";
3890 version = "1.0.0";
3899 version = "1.0.0";
3891 src = fetchurl {
3900 src = fetchurl {
3892 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
3901 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
3893 sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
3902 sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
3894 };
3903 };
3895 };
3904 };
3896 "is-binary-path-1.0.1" = {
3905 "is-binary-path-1.0.1" = {
3897 name = "is-binary-path";
3906 name = "is-binary-path";
3898 packageName = "is-binary-path";
3907 packageName = "is-binary-path";
3899 version = "1.0.1";
3908 version = "1.0.1";
3900 src = fetchurl {
3909 src = fetchurl {
3901 url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
3910 url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
3902 sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
3911 sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
3903 };
3912 };
3904 };
3913 };
3905 "is-buffer-1.1.6" = {
3914 "is-buffer-1.1.6" = {
3906 name = "is-buffer";
3915 name = "is-buffer";
3907 packageName = "is-buffer";
3916 packageName = "is-buffer";
3908 version = "1.1.6";
3917 version = "1.1.6";
3909 src = fetchurl {
3918 src = fetchurl {
3910 url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
3919 url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
3911 sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
3920 sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
3912 };
3921 };
3913 };
3922 };
3914 "is-callable-1.1.5" = {
3923 "is-callable-1.1.5" = {
3915 name = "is-callable";
3924 name = "is-callable";
3916 packageName = "is-callable";
3925 packageName = "is-callable";
3917 version = "1.1.5";
3926 version = "1.1.5";
3918 src = fetchurl {
3927 src = fetchurl {
3919 url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz";
3928 url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz";
3920 sha512 = "ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==";
3929 sha512 = "ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==";
3921 };
3930 };
3922 };
3931 };
3923 "is-data-descriptor-0.1.4" = {
3932 "is-data-descriptor-0.1.4" = {
3924 name = "is-data-descriptor";
3933 name = "is-data-descriptor";
3925 packageName = "is-data-descriptor";
3934 packageName = "is-data-descriptor";
3926 version = "0.1.4";
3935 version = "0.1.4";
3927 src = fetchurl {
3936 src = fetchurl {
3928 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
3937 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
3929 sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
3938 sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
3930 };
3939 };
3931 };
3940 };
3932 "is-data-descriptor-1.0.0" = {
3941 "is-data-descriptor-1.0.0" = {
3933 name = "is-data-descriptor";
3942 name = "is-data-descriptor";
3934 packageName = "is-data-descriptor";
3943 packageName = "is-data-descriptor";
3935 version = "1.0.0";
3944 version = "1.0.0";
3936 src = fetchurl {
3945 src = fetchurl {
3937 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
3946 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
3938 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
3947 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
3939 };
3948 };
3940 };
3949 };
3941 "is-date-object-1.0.2" = {
3950 "is-date-object-1.0.2" = {
3942 name = "is-date-object";
3951 name = "is-date-object";
3943 packageName = "is-date-object";
3952 packageName = "is-date-object";
3944 version = "1.0.2";
3953 version = "1.0.2";
3945 src = fetchurl {
3954 src = fetchurl {
3946 url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz";
3955 url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz";
3947 sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==";
3956 sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==";
3948 };
3957 };
3949 };
3958 };
3950 "is-descriptor-0.1.6" = {
3959 "is-descriptor-0.1.6" = {
3951 name = "is-descriptor";
3960 name = "is-descriptor";
3952 packageName = "is-descriptor";
3961 packageName = "is-descriptor";
3953 version = "0.1.6";
3962 version = "0.1.6";
3954 src = fetchurl {
3963 src = fetchurl {
3955 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
3964 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
3956 sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
3965 sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
3957 };
3966 };
3958 };
3967 };
3959 "is-descriptor-1.0.2" = {
3968 "is-descriptor-1.0.2" = {
3960 name = "is-descriptor";
3969 name = "is-descriptor";
3961 packageName = "is-descriptor";
3970 packageName = "is-descriptor";
3962 version = "1.0.2";
3971 version = "1.0.2";
3963 src = fetchurl {
3972 src = fetchurl {
3964 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
3973 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
3965 sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
3974 sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
3966 };
3975 };
3967 };
3976 };
3968 "is-extendable-0.1.1" = {
3977 "is-extendable-0.1.1" = {
3969 name = "is-extendable";
3978 name = "is-extendable";
3970 packageName = "is-extendable";
3979 packageName = "is-extendable";
3971 version = "0.1.1";
3980 version = "0.1.1";
3972 src = fetchurl {
3981 src = fetchurl {
3973 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
3982 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
3974 sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
3983 sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
3975 };
3984 };
3976 };
3985 };
3977 "is-extendable-1.0.1" = {
3986 "is-extendable-1.0.1" = {
3978 name = "is-extendable";
3987 name = "is-extendable";
3979 packageName = "is-extendable";
3988 packageName = "is-extendable";
3980 version = "1.0.1";
3989 version = "1.0.1";
3981 src = fetchurl {
3990 src = fetchurl {
3982 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
3991 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
3983 sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
3992 sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
3984 };
3993 };
3985 };
3994 };
3986 "is-extglob-2.1.1" = {
3995 "is-extglob-2.1.1" = {
3987 name = "is-extglob";
3996 name = "is-extglob";
3988 packageName = "is-extglob";
3997 packageName = "is-extglob";
3989 version = "2.1.1";
3998 version = "2.1.1";
3990 src = fetchurl {
3999 src = fetchurl {
3991 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
4000 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
3992 sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
4001 sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
3993 };
4002 };
3994 };
4003 };
3995 "is-finite-1.1.0" = {
4004 "is-finite-1.1.0" = {
3996 name = "is-finite";
4005 name = "is-finite";
3997 packageName = "is-finite";
4006 packageName = "is-finite";
3998 version = "1.1.0";
4007 version = "1.1.0";
3999 src = fetchurl {
4008 src = fetchurl {
4000 url = "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz";
4009 url = "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz";
4001 sha512 = "cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==";
4010 sha512 = "cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==";
4002 };
4011 };
4003 };
4012 };
4004 "is-fullwidth-code-point-1.0.0" = {
4013 "is-fullwidth-code-point-1.0.0" = {
4005 name = "is-fullwidth-code-point";
4014 name = "is-fullwidth-code-point";
4006 packageName = "is-fullwidth-code-point";
4015 packageName = "is-fullwidth-code-point";
4007 version = "1.0.0";
4016 version = "1.0.0";
4008 src = fetchurl {
4017 src = fetchurl {
4009 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
4018 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
4010 sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
4019 sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
4011 };
4020 };
4012 };
4021 };
4013 "is-fullwidth-code-point-2.0.0" = {
4022 "is-fullwidth-code-point-2.0.0" = {
4014 name = "is-fullwidth-code-point";
4023 name = "is-fullwidth-code-point";
4015 packageName = "is-fullwidth-code-point";
4024 packageName = "is-fullwidth-code-point";
4016 version = "2.0.0";
4025 version = "2.0.0";
4017 src = fetchurl {
4026 src = fetchurl {
4018 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
4027 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
4019 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
4028 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
4020 };
4029 };
4021 };
4030 };
4022 "is-glob-3.1.0" = {
4031 "is-glob-3.1.0" = {
4023 name = "is-glob";
4032 name = "is-glob";
4024 packageName = "is-glob";
4033 packageName = "is-glob";
4025 version = "3.1.0";
4034 version = "3.1.0";
4026 src = fetchurl {
4035 src = fetchurl {
4027 url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
4036 url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
4028 sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
4037 sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
4029 };
4038 };
4030 };
4039 };
4031 "is-glob-4.0.1" = {
4040 "is-glob-4.0.1" = {
4032 name = "is-glob";
4041 name = "is-glob";
4033 packageName = "is-glob";
4042 packageName = "is-glob";
4034 version = "4.0.1";
4043 version = "4.0.1";
4035 src = fetchurl {
4044 src = fetchurl {
4036 url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz";
4045 url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz";
4037 sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==";
4046 sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==";
4038 };
4047 };
4039 };
4048 };
4040 "is-number-3.0.0" = {
4049 "is-number-3.0.0" = {
4041 name = "is-number";
4050 name = "is-number";
4042 packageName = "is-number";
4051 packageName = "is-number";
4043 version = "3.0.0";
4052 version = "3.0.0";
4044 src = fetchurl {
4053 src = fetchurl {
4045 url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
4054 url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
4046 sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
4055 sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
4047 };
4056 };
4048 };
4057 };
4049 "is-plain-obj-1.1.0" = {
4058 "is-plain-obj-1.1.0" = {
4050 name = "is-plain-obj";
4059 name = "is-plain-obj";
4051 packageName = "is-plain-obj";
4060 packageName = "is-plain-obj";
4052 version = "1.1.0";
4061 version = "1.1.0";
4053 src = fetchurl {
4062 src = fetchurl {
4054 url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz";
4063 url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz";
4055 sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e";
4064 sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e";
4056 };
4065 };
4057 };
4066 };
4058 "is-plain-object-2.0.4" = {
4067 "is-plain-object-2.0.4" = {
4059 name = "is-plain-object";
4068 name = "is-plain-object";
4060 packageName = "is-plain-object";
4069 packageName = "is-plain-object";
4061 version = "2.0.4";
4070 version = "2.0.4";
4062 src = fetchurl {
4071 src = fetchurl {
4063 url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
4072 url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
4064 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
4073 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
4065 };
4074 };
4066 };
4075 };
4067 "is-regex-1.0.5" = {
4076 "is-regex-1.0.5" = {
4068 name = "is-regex";
4077 name = "is-regex";
4069 packageName = "is-regex";
4078 packageName = "is-regex";
4070 version = "1.0.5";
4079 version = "1.0.5";
4071 src = fetchurl {
4080 src = fetchurl {
4072 url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz";
4081 url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz";
4073 sha512 = "vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==";
4082 sha512 = "vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==";
4074 };
4083 };
4075 };
4084 };
4076 "is-relative-1.0.0" = {
4085 "is-relative-1.0.0" = {
4077 name = "is-relative";
4086 name = "is-relative";
4078 packageName = "is-relative";
4087 packageName = "is-relative";
4079 version = "1.0.0";
4088 version = "1.0.0";
4080 src = fetchurl {
4089 src = fetchurl {
4081 url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
4090 url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
4082 sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
4091 sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
4083 };
4092 };
4084 };
4093 };
4085 "is-stream-1.1.0" = {
4094 "is-stream-1.1.0" = {
4086 name = "is-stream";
4095 name = "is-stream";
4087 packageName = "is-stream";
4096 packageName = "is-stream";
4088 version = "1.1.0";
4097 version = "1.1.0";
4089 src = fetchurl {
4098 src = fetchurl {
4090 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
4099 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
4091 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
4100 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
4092 };
4101 };
4093 };
4102 };
4094 "is-svg-2.1.0" = {
4103 "is-svg-2.1.0" = {
4095 name = "is-svg";
4104 name = "is-svg";
4096 packageName = "is-svg";
4105 packageName = "is-svg";
4097 version = "2.1.0";
4106 version = "2.1.0";
4098 src = fetchurl {
4107 src = fetchurl {
4099 url = "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz";
4108 url = "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz";
4100 sha1 = "cf61090da0d9efbcab8722deba6f032208dbb0e9";
4109 sha1 = "cf61090da0d9efbcab8722deba6f032208dbb0e9";
4101 };
4110 };
4102 };
4111 };
4103 "is-symbol-1.0.3" = {
4112 "is-symbol-1.0.3" = {
4104 name = "is-symbol";
4113 name = "is-symbol";
4105 packageName = "is-symbol";
4114 packageName = "is-symbol";
4106 version = "1.0.3";
4115 version = "1.0.3";
4107 src = fetchurl {
4116 src = fetchurl {
4108 url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz";
4117 url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz";
4109 sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==";
4118 sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==";
4110 };
4119 };
4111 };
4120 };
4112 "is-typedarray-1.0.0" = {
4121 "is-typedarray-1.0.0" = {
4113 name = "is-typedarray";
4122 name = "is-typedarray";
4114 packageName = "is-typedarray";
4123 packageName = "is-typedarray";
4115 version = "1.0.0";
4124 version = "1.0.0";
4116 src = fetchurl {
4125 src = fetchurl {
4117 url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
4126 url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
4118 sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
4127 sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
4119 };
4128 };
4120 };
4129 };
4121 "is-unc-path-1.0.0" = {
4130 "is-unc-path-1.0.0" = {
4122 name = "is-unc-path";
4131 name = "is-unc-path";
4123 packageName = "is-unc-path";
4132 packageName = "is-unc-path";
4124 version = "1.0.0";
4133 version = "1.0.0";
4125 src = fetchurl {
4134 src = fetchurl {
4126 url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
4135 url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
4127 sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==";
4136 sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==";
4128 };
4137 };
4129 };
4138 };
4130 "is-windows-1.0.2" = {
4139 "is-windows-1.0.2" = {
4131 name = "is-windows";
4140 name = "is-windows";
4132 packageName = "is-windows";
4141 packageName = "is-windows";
4133 version = "1.0.2";
4142 version = "1.0.2";
4134 src = fetchurl {
4143 src = fetchurl {
4135 url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
4144 url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
4136 sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
4145 sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
4137 };
4146 };
4138 };
4147 };
4139 "isarray-0.0.1" = {
4148 "isarray-0.0.1" = {
4140 name = "isarray";
4149 name = "isarray";
4141 packageName = "isarray";
4150 packageName = "isarray";
4142 version = "0.0.1";
4151 version = "0.0.1";
4143 src = fetchurl {
4152 src = fetchurl {
4144 url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
4153 url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
4145 sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
4154 sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
4146 };
4155 };
4147 };
4156 };
4148 "isarray-1.0.0" = {
4157 "isarray-1.0.0" = {
4149 name = "isarray";
4158 name = "isarray";
4150 packageName = "isarray";
4159 packageName = "isarray";
4151 version = "1.0.0";
4160 version = "1.0.0";
4152 src = fetchurl {
4161 src = fetchurl {
4153 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
4162 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
4154 sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
4163 sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
4155 };
4164 };
4156 };
4165 };
4157 "isexe-2.0.0" = {
4166 "isexe-2.0.0" = {
4158 name = "isexe";
4167 name = "isexe";
4159 packageName = "isexe";
4168 packageName = "isexe";
4160 version = "2.0.0";
4169 version = "2.0.0";
4161 src = fetchurl {
4170 src = fetchurl {
4162 url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
4171 url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
4163 sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
4172 sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
4164 };
4173 };
4165 };
4174 };
4166 "isobject-2.1.0" = {
4175 "isobject-2.1.0" = {
4167 name = "isobject";
4176 name = "isobject";
4168 packageName = "isobject";
4177 packageName = "isobject";
4169 version = "2.1.0";
4178 version = "2.1.0";
4170 src = fetchurl {
4179 src = fetchurl {
4171 url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
4180 url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
4172 sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
4181 sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
4173 };
4182 };
4174 };
4183 };
4175 "isobject-3.0.1" = {
4184 "isobject-3.0.1" = {
4176 name = "isobject";
4185 name = "isobject";
4177 packageName = "isobject";
4186 packageName = "isobject";
4178 version = "3.0.1";
4187 version = "3.0.1";
4179 src = fetchurl {
4188 src = fetchurl {
4180 url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
4189 url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
4181 sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
4190 sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
4182 };
4191 };
4183 };
4192 };
4184 "isstream-0.1.2" = {
4193 "isstream-0.1.2" = {
4185 name = "isstream";
4194 name = "isstream";
4186 packageName = "isstream";
4195 packageName = "isstream";
4187 version = "0.1.2";
4196 version = "0.1.2";
4188 src = fetchurl {
4197 src = fetchurl {
4189 url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
4198 url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
4190 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
4199 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
4191 };
4200 };
4192 };
4201 };
4193 "jquery-1.11.3" = {
4202 "jquery-1.11.3" = {
4194 name = "jquery";
4203 name = "jquery";
4195 packageName = "jquery";
4204 packageName = "jquery";
4196 version = "1.11.3";
4205 version = "1.11.3";
4197 src = fetchurl {
4206 src = fetchurl {
4198 url = "https://registry.npmjs.org/jquery/-/jquery-1.11.3.tgz";
4207 url = "https://registry.npmjs.org/jquery/-/jquery-1.11.3.tgz";
4199 sha1 = "dd8b74278b27102d29df63eae28308a8cfa1b583";
4208 sha1 = "dd8b74278b27102d29df63eae28308a8cfa1b583";
4200 };
4209 };
4201 };
4210 };
4202 "js-base64-2.5.2" = {
4211 "js-base64-2.5.2" = {
4203 name = "js-base64";
4212 name = "js-base64";
4204 packageName = "js-base64";
4213 packageName = "js-base64";
4205 version = "2.5.2";
4214 version = "2.5.2";
4206 src = fetchurl {
4215 src = fetchurl {
4207 url = "https://registry.npmjs.org/js-base64/-/js-base64-2.5.2.tgz";
4216 url = "https://registry.npmjs.org/js-base64/-/js-base64-2.5.2.tgz";
4208 sha512 = "Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ==";
4217 sha512 = "Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ==";
4209 };
4218 };
4210 };
4219 };
4211 "js-tokens-3.0.2" = {
4220 "js-tokens-3.0.2" = {
4212 name = "js-tokens";
4221 name = "js-tokens";
4213 packageName = "js-tokens";
4222 packageName = "js-tokens";
4214 version = "3.0.2";
4223 version = "3.0.2";
4215 src = fetchurl {
4224 src = fetchurl {
4216 url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz";
4225 url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz";
4217 sha1 = "9866df395102130e38f7f996bceb65443209c25b";
4226 sha1 = "9866df395102130e38f7f996bceb65443209c25b";
4218 };
4227 };
4219 };
4228 };
4220 "js-yaml-2.0.5" = {
4229 "js-yaml-2.0.5" = {
4221 name = "js-yaml";
4230 name = "js-yaml";
4222 packageName = "js-yaml";
4231 packageName = "js-yaml";
4223 version = "2.0.5";
4232 version = "2.0.5";
4224 src = fetchurl {
4233 src = fetchurl {
4225 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz";
4234 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz";
4226 sha1 = "a25ae6509999e97df278c6719da11bd0687743a8";
4235 sha1 = "a25ae6509999e97df278c6719da11bd0687743a8";
4227 };
4236 };
4228 };
4237 };
4229 "js-yaml-3.7.0" = {
4238 "js-yaml-3.7.0" = {
4230 name = "js-yaml";
4239 name = "js-yaml";
4231 packageName = "js-yaml";
4240 packageName = "js-yaml";
4232 version = "3.7.0";
4241 version = "3.7.0";
4233 src = fetchurl {
4242 src = fetchurl {
4234 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz";
4243 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz";
4235 sha1 = "5c967ddd837a9bfdca5f2de84253abe8a1c03b80";
4244 sha1 = "5c967ddd837a9bfdca5f2de84253abe8a1c03b80";
4236 };
4245 };
4237 };
4246 };
4238 "jsbn-0.1.1" = {
4247 "jsbn-0.1.1" = {
4239 name = "jsbn";
4248 name = "jsbn";
4240 packageName = "jsbn";
4249 packageName = "jsbn";
4241 version = "0.1.1";
4250 version = "0.1.1";
4242 src = fetchurl {
4251 src = fetchurl {
4243 url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
4252 url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
4244 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
4253 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
4245 };
4254 };
4246 };
4255 };
4247 "jsesc-0.5.0" = {
4256 "jsesc-0.5.0" = {
4248 name = "jsesc";
4257 name = "jsesc";
4249 packageName = "jsesc";
4258 packageName = "jsesc";
4250 version = "0.5.0";
4259 version = "0.5.0";
4251 src = fetchurl {
4260 src = fetchurl {
4252 url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz";
4261 url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz";
4253 sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d";
4262 sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d";
4254 };
4263 };
4255 };
4264 };
4256 "jsesc-1.3.0" = {
4265 "jsesc-1.3.0" = {
4257 name = "jsesc";
4266 name = "jsesc";
4258 packageName = "jsesc";
4267 packageName = "jsesc";
4259 version = "1.3.0";
4268 version = "1.3.0";
4260 src = fetchurl {
4269 src = fetchurl {
4261 url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz";
4270 url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz";
4262 sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
4271 sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
4263 };
4272 };
4264 };
4273 };
4265 "jshint-2.11.0" = {
4274 "jshint-2.11.0" = {
4266 name = "jshint";
4275 name = "jshint";
4267 packageName = "jshint";
4276 packageName = "jshint";
4268 version = "2.11.0";
4277 version = "2.11.0";
4269 src = fetchurl {
4278 src = fetchurl {
4270 url = "https://registry.npmjs.org/jshint/-/jshint-2.11.0.tgz";
4279 url = "https://registry.npmjs.org/jshint/-/jshint-2.11.0.tgz";
4271 sha512 = "ooaD/hrBPhu35xXW4gn+o3SOuzht73gdBuffgJzrZBJZPGgGiiTvJEgTyxFvBO2nz0+X1G6etF8SzUODTlLY6Q==";
4280 sha512 = "ooaD/hrBPhu35xXW4gn+o3SOuzht73gdBuffgJzrZBJZPGgGiiTvJEgTyxFvBO2nz0+X1G6etF8SzUODTlLY6Q==";
4272 };
4281 };
4273 };
4282 };
4274 "jshint-2.9.7" = {
4283 "jshint-2.9.7" = {
4275 name = "jshint";
4284 name = "jshint";
4276 packageName = "jshint";
4285 packageName = "jshint";
4277 version = "2.9.7";
4286 version = "2.9.7";
4278 src = fetchurl {
4287 src = fetchurl {
4279 url = "https://registry.npmjs.org/jshint/-/jshint-2.9.7.tgz";
4288 url = "https://registry.npmjs.org/jshint/-/jshint-2.9.7.tgz";
4280 sha512 = "Q8XN38hGsVQhdlM+4gd1Xl7OB1VieSuCJf+fEJjpo59JH99bVJhXRXAh26qQ15wfdd1VPMuDWNeSWoNl53T4YA==";
4289 sha512 = "Q8XN38hGsVQhdlM+4gd1Xl7OB1VieSuCJf+fEJjpo59JH99bVJhXRXAh26qQ15wfdd1VPMuDWNeSWoNl53T4YA==";
4281 };
4290 };
4282 };
4291 };
4283 "json-parse-better-errors-1.0.2" = {
4292 "json-parse-better-errors-1.0.2" = {
4284 name = "json-parse-better-errors";
4293 name = "json-parse-better-errors";
4285 packageName = "json-parse-better-errors";
4294 packageName = "json-parse-better-errors";
4286 version = "1.0.2";
4295 version = "1.0.2";
4287 src = fetchurl {
4296 src = fetchurl {
4288 url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
4297 url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
4289 sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
4298 sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
4290 };
4299 };
4291 };
4300 };
4292 "json-schema-0.2.3" = {
4301 "json-schema-0.2.3" = {
4293 name = "json-schema";
4302 name = "json-schema";
4294 packageName = "json-schema";
4303 packageName = "json-schema";
4295 version = "0.2.3";
4304 version = "0.2.3";
4296 src = fetchurl {
4305 src = fetchurl {
4297 url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
4306 url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
4298 sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
4307 sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
4299 };
4308 };
4300 };
4309 };
4301 "json-schema-traverse-0.4.1" = {
4310 "json-schema-traverse-0.4.1" = {
4302 name = "json-schema-traverse";
4311 name = "json-schema-traverse";
4303 packageName = "json-schema-traverse";
4312 packageName = "json-schema-traverse";
4304 version = "0.4.1";
4313 version = "0.4.1";
4305 src = fetchurl {
4314 src = fetchurl {
4306 url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
4315 url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
4307 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
4316 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
4308 };
4317 };
4309 };
4318 };
4310 "json-stable-stringify-1.0.1" = {
4319 "json-stable-stringify-1.0.1" = {
4311 name = "json-stable-stringify";
4320 name = "json-stable-stringify";
4312 packageName = "json-stable-stringify";
4321 packageName = "json-stable-stringify";
4313 version = "1.0.1";
4322 version = "1.0.1";
4314 src = fetchurl {
4323 src = fetchurl {
4315 url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
4324 url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
4316 sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
4325 sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
4317 };
4326 };
4318 };
4327 };
4319 "json-stringify-safe-5.0.1" = {
4328 "json-stringify-safe-5.0.1" = {
4320 name = "json-stringify-safe";
4329 name = "json-stringify-safe";
4321 packageName = "json-stringify-safe";
4330 packageName = "json-stringify-safe";
4322 version = "5.0.1";
4331 version = "5.0.1";
4323 src = fetchurl {
4332 src = fetchurl {
4324 url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
4333 url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
4325 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
4334 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
4326 };
4335 };
4327 };
4336 };
4328 "json5-0.5.1" = {
4337 "json5-0.5.1" = {
4329 name = "json5";
4338 name = "json5";
4330 packageName = "json5";
4339 packageName = "json5";
4331 version = "0.5.1";
4340 version = "0.5.1";
4332 src = fetchurl {
4341 src = fetchurl {
4333 url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz";
4342 url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz";
4334 sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
4343 sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
4335 };
4344 };
4336 };
4345 };
4337 "json5-1.0.1" = {
4346 "json5-1.0.1" = {
4338 name = "json5";
4347 name = "json5";
4339 packageName = "json5";
4348 packageName = "json5";
4340 version = "1.0.1";
4349 version = "1.0.1";
4341 src = fetchurl {
4350 src = fetchurl {
4342 url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz";
4351 url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz";
4343 sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==";
4352 sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==";
4344 };
4353 };
4345 };
4354 };
4346 "jsonify-0.0.0" = {
4355 "jsonify-0.0.0" = {
4347 name = "jsonify";
4356 name = "jsonify";
4348 packageName = "jsonify";
4357 packageName = "jsonify";
4349 version = "0.0.0";
4358 version = "0.0.0";
4350 src = fetchurl {
4359 src = fetchurl {
4351 url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
4360 url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
4352 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
4361 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
4353 };
4362 };
4354 };
4363 };
4355 "jsprim-1.4.1" = {
4364 "jsprim-1.4.1" = {
4356 name = "jsprim";
4365 name = "jsprim";
4357 packageName = "jsprim";
4366 packageName = "jsprim";
4358 version = "1.4.1";
4367 version = "1.4.1";
4359 src = fetchurl {
4368 src = fetchurl {
4360 url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
4369 url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
4361 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
4370 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
4362 };
4371 };
4363 };
4372 };
4364 "kind-of-3.2.2" = {
4373 "kind-of-3.2.2" = {
4365 name = "kind-of";
4374 name = "kind-of";
4366 packageName = "kind-of";
4375 packageName = "kind-of";
4367 version = "3.2.2";
4376 version = "3.2.2";
4368 src = fetchurl {
4377 src = fetchurl {
4369 url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
4378 url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
4370 sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
4379 sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
4371 };
4380 };
4372 };
4381 };
4373 "kind-of-4.0.0" = {
4382 "kind-of-4.0.0" = {
4374 name = "kind-of";
4383 name = "kind-of";
4375 packageName = "kind-of";
4384 packageName = "kind-of";
4376 version = "4.0.0";
4385 version = "4.0.0";
4377 src = fetchurl {
4386 src = fetchurl {
4378 url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
4387 url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
4379 sha1 = "20813df3d712928b207378691a45066fae72dd57";
4388 sha1 = "20813df3d712928b207378691a45066fae72dd57";
4380 };
4389 };
4381 };
4390 };
4382 "kind-of-5.1.0" = {
4391 "kind-of-5.1.0" = {
4383 name = "kind-of";
4392 name = "kind-of";
4384 packageName = "kind-of";
4393 packageName = "kind-of";
4385 version = "5.1.0";
4394 version = "5.1.0";
4386 src = fetchurl {
4395 src = fetchurl {
4387 url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
4396 url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
4388 sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
4397 sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
4389 };
4398 };
4390 };
4399 };
4391 "kind-of-6.0.3" = {
4400 "kind-of-6.0.3" = {
4392 name = "kind-of";
4401 name = "kind-of";
4393 packageName = "kind-of";
4402 packageName = "kind-of";
4394 version = "6.0.3";
4403 version = "6.0.3";
4395 src = fetchurl {
4404 src = fetchurl {
4396 url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz";
4405 url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz";
4397 sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==";
4406 sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==";
4398 };
4407 };
4399 };
4408 };
4400 "lazy-cache-1.0.4" = {
4409 "lazy-cache-1.0.4" = {
4401 name = "lazy-cache";
4410 name = "lazy-cache";
4402 packageName = "lazy-cache";
4411 packageName = "lazy-cache";
4403 version = "1.0.4";
4412 version = "1.0.4";
4404 src = fetchurl {
4413 src = fetchurl {
4405 url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz";
4414 url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz";
4406 sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e";
4415 sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e";
4407 };
4416 };
4408 };
4417 };
4409 "lcid-2.0.0" = {
4418 "lcid-2.0.0" = {
4410 name = "lcid";
4419 name = "lcid";
4411 packageName = "lcid";
4420 packageName = "lcid";
4412 version = "2.0.0";
4421 version = "2.0.0";
4413 src = fetchurl {
4422 src = fetchurl {
4414 url = "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz";
4423 url = "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz";
4415 sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==";
4424 sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==";
4416 };
4425 };
4417 };
4426 };
4418 "less-2.7.3" = {
4427 "less-2.7.3" = {
4419 name = "less";
4428 name = "less";
4420 packageName = "less";
4429 packageName = "less";
4421 version = "2.7.3";
4430 version = "2.7.3";
4422 src = fetchurl {
4431 src = fetchurl {
4423 url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz";
4432 url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz";
4424 sha512 = "KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==";
4433 sha512 = "KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==";
4425 };
4434 };
4426 };
4435 };
4427 "liftoff-2.5.0" = {
4436 "liftoff-2.5.0" = {
4428 name = "liftoff";
4437 name = "liftoff";
4429 packageName = "liftoff";
4438 packageName = "liftoff";
4430 version = "2.5.0";
4439 version = "2.5.0";
4431 src = fetchurl {
4440 src = fetchurl {
4432 url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
4441 url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
4433 sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
4442 sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
4434 };
4443 };
4435 };
4444 };
4436 "loader-runner-2.4.0" = {
4445 "loader-runner-2.4.0" = {
4437 name = "loader-runner";
4446 name = "loader-runner";
4438 packageName = "loader-runner";
4447 packageName = "loader-runner";
4439 version = "2.4.0";
4448 version = "2.4.0";
4440 src = fetchurl {
4449 src = fetchurl {
4441 url = "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz";
4450 url = "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz";
4442 sha512 = "Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==";
4451 sha512 = "Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==";
4443 };
4452 };
4444 };
4453 };
4445 "loader-utils-0.2.17" = {
4454 "loader-utils-0.2.17" = {
4446 name = "loader-utils";
4455 name = "loader-utils";
4447 packageName = "loader-utils";
4456 packageName = "loader-utils";
4448 version = "0.2.17";
4457 version = "0.2.17";
4449 src = fetchurl {
4458 src = fetchurl {
4450 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz";
4459 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz";
4451 sha1 = "f86e6374d43205a6e6c60e9196f17c0299bfb348";
4460 sha1 = "f86e6374d43205a6e6c60e9196f17c0299bfb348";
4452 };
4461 };
4453 };
4462 };
4454 "loader-utils-1.4.0" = {
4463 "loader-utils-1.4.0" = {
4455 name = "loader-utils";
4464 name = "loader-utils";
4456 packageName = "loader-utils";
4465 packageName = "loader-utils";
4457 version = "1.4.0";
4466 version = "1.4.0";
4458 src = fetchurl {
4467 src = fetchurl {
4459 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz";
4468 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz";
4460 sha512 = "qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==";
4469 sha512 = "qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==";
4461 };
4470 };
4462 };
4471 };
4463 "locate-path-2.0.0" = {
4472 "locate-path-2.0.0" = {
4464 name = "locate-path";
4473 name = "locate-path";
4465 packageName = "locate-path";
4474 packageName = "locate-path";
4466 version = "2.0.0";
4475 version = "2.0.0";
4467 src = fetchurl {
4476 src = fetchurl {
4468 url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz";
4477 url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz";
4469 sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
4478 sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
4470 };
4479 };
4471 };
4480 };
4472 "locate-path-3.0.0" = {
4481 "locate-path-3.0.0" = {
4473 name = "locate-path";
4482 name = "locate-path";
4474 packageName = "locate-path";
4483 packageName = "locate-path";
4475 version = "3.0.0";
4484 version = "3.0.0";
4476 src = fetchurl {
4485 src = fetchurl {
4477 url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz";
4486 url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz";
4478 sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
4487 sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
4479 };
4488 };
4480 };
4489 };
4481 "lodash-0.9.2" = {
4490 "lodash-0.9.2" = {
4482 name = "lodash";
4491 name = "lodash";
4483 packageName = "lodash";
4492 packageName = "lodash";
4484 version = "0.9.2";
4493 version = "0.9.2";
4485 src = fetchurl {
4494 src = fetchurl {
4486 url = "https://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz";
4495 url = "https://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz";
4487 sha1 = "8f3499c5245d346d682e5b0d3b40767e09f1a92c";
4496 sha1 = "8f3499c5245d346d682e5b0d3b40767e09f1a92c";
4488 };
4497 };
4489 };
4498 };
4490 "lodash-1.0.2" = {
4499 "lodash-1.0.2" = {
4491 name = "lodash";
4500 name = "lodash";
4492 packageName = "lodash";
4501 packageName = "lodash";
4493 version = "1.0.2";
4502 version = "1.0.2";
4494 src = fetchurl {
4503 src = fetchurl {
4495 url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
4504 url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
4496 sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
4505 sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
4497 };
4506 };
4498 };
4507 };
4499 "lodash-2.4.2" = {
4508 "lodash-2.4.2" = {
4500 name = "lodash";
4509 name = "lodash";
4501 packageName = "lodash";
4510 packageName = "lodash";
4502 version = "2.4.2";
4511 version = "2.4.2";
4503 src = fetchurl {
4512 src = fetchurl {
4504 url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
4513 url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
4505 sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
4514 sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
4506 };
4515 };
4507 };
4516 };
4508 "lodash-4.17.15" = {
4517 "lodash-4.17.15" = {
4509 name = "lodash";
4518 name = "lodash";
4510 packageName = "lodash";
4519 packageName = "lodash";
4511 version = "4.17.15";
4520 version = "4.17.15";
4512 src = fetchurl {
4521 src = fetchurl {
4513 url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz";
4522 url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz";
4514 sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==";
4523 sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==";
4515 };
4524 };
4516 };
4525 };
4517 "lodash.camelcase-4.3.0" = {
4526 "lodash.camelcase-4.3.0" = {
4518 name = "lodash.camelcase";
4527 name = "lodash.camelcase";
4519 packageName = "lodash.camelcase";
4528 packageName = "lodash.camelcase";
4520 version = "4.3.0";
4529 version = "4.3.0";
4521 src = fetchurl {
4530 src = fetchurl {
4522 url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz";
4531 url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz";
4523 sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6";
4532 sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6";
4524 };
4533 };
4525 };
4534 };
4526 "lodash.isplainobject-4.0.6" = {
4535 "lodash.isplainobject-4.0.6" = {
4527 name = "lodash.isplainobject";
4536 name = "lodash.isplainobject";
4528 packageName = "lodash.isplainobject";
4537 packageName = "lodash.isplainobject";
4529 version = "4.0.6";
4538 version = "4.0.6";
4530 src = fetchurl {
4539 src = fetchurl {
4531 url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
4540 url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
4532 sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
4541 sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
4533 };
4542 };
4534 };
4543 };
4535 "lodash.memoize-4.1.2" = {
4544 "lodash.memoize-4.1.2" = {
4536 name = "lodash.memoize";
4545 name = "lodash.memoize";
4537 packageName = "lodash.memoize";
4546 packageName = "lodash.memoize";
4538 version = "4.1.2";
4547 version = "4.1.2";
4539 src = fetchurl {
4548 src = fetchurl {
4540 url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz";
4549 url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz";
4541 sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe";
4550 sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe";
4542 };
4551 };
4543 };
4552 };
4544 "lodash.uniq-4.5.0" = {
4553 "lodash.uniq-4.5.0" = {
4545 name = "lodash.uniq";
4554 name = "lodash.uniq";
4546 packageName = "lodash.uniq";
4555 packageName = "lodash.uniq";
4547 version = "4.5.0";
4556 version = "4.5.0";
4548 src = fetchurl {
4557 src = fetchurl {
4549 url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz";
4558 url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz";
4550 sha1 = "d0225373aeb652adc1bc82e4945339a842754773";
4559 sha1 = "d0225373aeb652adc1bc82e4945339a842754773";
4551 };
4560 };
4552 };
4561 };
4553 "longest-1.0.1" = {
4562 "longest-1.0.1" = {
4554 name = "longest";
4563 name = "longest";
4555 packageName = "longest";
4564 packageName = "longest";
4556 version = "1.0.1";
4565 version = "1.0.1";
4557 src = fetchurl {
4566 src = fetchurl {
4558 url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz";
4567 url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz";
4559 sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097";
4568 sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097";
4560 };
4569 };
4561 };
4570 };
4562 "loose-envify-1.4.0" = {
4571 "loose-envify-1.4.0" = {
4563 name = "loose-envify";
4572 name = "loose-envify";
4564 packageName = "loose-envify";
4573 packageName = "loose-envify";
4565 version = "1.4.0";
4574 version = "1.4.0";
4566 src = fetchurl {
4575 src = fetchurl {
4567 url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz";
4576 url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz";
4568 sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==";
4577 sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==";
4569 };
4578 };
4570 };
4579 };
4571 "lower-case-1.1.4" = {
4580 "lower-case-1.1.4" = {
4572 name = "lower-case";
4581 name = "lower-case";
4573 packageName = "lower-case";
4582 packageName = "lower-case";
4574 version = "1.1.4";
4583 version = "1.1.4";
4575 src = fetchurl {
4584 src = fetchurl {
4576 url = "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz";
4585 url = "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz";
4577 sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac";
4586 sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac";
4578 };
4587 };
4579 };
4588 };
4580 "lru-cache-2.7.3" = {
4589 "lru-cache-2.7.3" = {
4581 name = "lru-cache";
4590 name = "lru-cache";
4582 packageName = "lru-cache";
4591 packageName = "lru-cache";
4583 version = "2.7.3";
4592 version = "2.7.3";
4584 src = fetchurl {
4593 src = fetchurl {
4585 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
4594 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
4586 sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
4595 sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
4587 };
4596 };
4588 };
4597 };
4589 "lru-cache-4.1.5" = {
4598 "lru-cache-4.1.5" = {
4590 name = "lru-cache";
4599 name = "lru-cache";
4591 packageName = "lru-cache";
4600 packageName = "lru-cache";
4592 version = "4.1.5";
4601 version = "4.1.5";
4593 src = fetchurl {
4602 src = fetchurl {
4594 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz";
4603 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz";
4595 sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==";
4604 sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==";
4596 };
4605 };
4597 };
4606 };
4598 "make-dir-1.3.0" = {
4607 "make-dir-1.3.0" = {
4599 name = "make-dir";
4608 name = "make-dir";
4600 packageName = "make-dir";
4609 packageName = "make-dir";
4601 version = "1.3.0";
4610 version = "1.3.0";
4602 src = fetchurl {
4611 src = fetchurl {
4603 url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz";
4612 url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz";
4604 sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==";
4613 sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==";
4605 };
4614 };
4606 };
4615 };
4607 "make-iterator-1.0.1" = {
4616 "make-iterator-1.0.1" = {
4608 name = "make-iterator";
4617 name = "make-iterator";
4609 packageName = "make-iterator";
4618 packageName = "make-iterator";
4610 version = "1.0.1";
4619 version = "1.0.1";
4611 src = fetchurl {
4620 src = fetchurl {
4612 url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz";
4621 url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz";
4613 sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
4622 sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
4614 };
4623 };
4615 };
4624 };
4616 "map-age-cleaner-0.1.3" = {
4625 "map-age-cleaner-0.1.3" = {
4617 name = "map-age-cleaner";
4626 name = "map-age-cleaner";
4618 packageName = "map-age-cleaner";
4627 packageName = "map-age-cleaner";
4619 version = "0.1.3";
4628 version = "0.1.3";
4620 src = fetchurl {
4629 src = fetchurl {
4621 url = "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz";
4630 url = "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz";
4622 sha512 = "bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==";
4631 sha512 = "bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==";
4623 };
4632 };
4624 };
4633 };
4625 "map-cache-0.2.2" = {
4634 "map-cache-0.2.2" = {
4626 name = "map-cache";
4635 name = "map-cache";
4627 packageName = "map-cache";
4636 packageName = "map-cache";
4628 version = "0.2.2";
4637 version = "0.2.2";
4629 src = fetchurl {
4638 src = fetchurl {
4630 url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
4639 url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
4631 sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
4640 sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
4632 };
4641 };
4633 };
4642 };
4634 "map-visit-1.0.0" = {
4643 "map-visit-1.0.0" = {
4635 name = "map-visit";
4644 name = "map-visit";
4636 packageName = "map-visit";
4645 packageName = "map-visit";
4637 version = "1.0.0";
4646 version = "1.0.0";
4638 src = fetchurl {
4647 src = fetchurl {
4639 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
4648 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
4640 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
4649 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
4641 };
4650 };
4642 };
4651 };
4643 "mark.js-8.11.1" = {
4652 "mark.js-8.11.1" = {
4644 name = "mark.js";
4653 name = "mark.js";
4645 packageName = "mark.js";
4654 packageName = "mark.js";
4646 version = "8.11.1";
4655 version = "8.11.1";
4647 src = fetchurl {
4656 src = fetchurl {
4648 url = "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz";
4657 url = "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz";
4649 sha1 = "180f1f9ebef8b0e638e4166ad52db879beb2ffc5";
4658 sha1 = "180f1f9ebef8b0e638e4166ad52db879beb2ffc5";
4650 };
4659 };
4651 };
4660 };
4652 "math-expression-evaluator-1.2.22" = {
4661 "math-expression-evaluator-1.2.22" = {
4653 name = "math-expression-evaluator";
4662 name = "math-expression-evaluator";
4654 packageName = "math-expression-evaluator";
4663 packageName = "math-expression-evaluator";
4655 version = "1.2.22";
4664 version = "1.2.22";
4656 src = fetchurl {
4665 src = fetchurl {
4657 url = "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.22.tgz";
4666 url = "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.22.tgz";
4658 sha512 = "L0j0tFVZBQQLeEjmWOvDLoRciIY8gQGWahvkztXUal8jH8R5Rlqo9GCvgqvXcy9LQhEWdQCVvzqAbxgYNt4blQ==";
4667 sha512 = "L0j0tFVZBQQLeEjmWOvDLoRciIY8gQGWahvkztXUal8jH8R5Rlqo9GCvgqvXcy9LQhEWdQCVvzqAbxgYNt4blQ==";
4659 };
4668 };
4660 };
4669 };
4661 "maxmin-2.1.0" = {
4670 "maxmin-2.1.0" = {
4662 name = "maxmin";
4671 name = "maxmin";
4663 packageName = "maxmin";
4672 packageName = "maxmin";
4664 version = "2.1.0";
4673 version = "2.1.0";
4665 src = fetchurl {
4674 src = fetchurl {
4666 url = "https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz";
4675 url = "https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz";
4667 sha1 = "4d3b220903d95eee7eb7ac7fa864e72dc09a3166";
4676 sha1 = "4d3b220903d95eee7eb7ac7fa864e72dc09a3166";
4668 };
4677 };
4669 };
4678 };
4670 "md5.js-1.3.5" = {
4679 "md5.js-1.3.5" = {
4671 name = "md5.js";
4680 name = "md5.js";
4672 packageName = "md5.js";
4681 packageName = "md5.js";
4673 version = "1.3.5";
4682 version = "1.3.5";
4674 src = fetchurl {
4683 src = fetchurl {
4675 url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz";
4684 url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz";
4676 sha512 = "xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==";
4685 sha512 = "xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==";
4677 };
4686 };
4678 };
4687 };
4679 "mem-4.3.0" = {
4688 "mem-4.3.0" = {
4680 name = "mem";
4689 name = "mem";
4681 packageName = "mem";
4690 packageName = "mem";
4682 version = "4.3.0";
4691 version = "4.3.0";
4683 src = fetchurl {
4692 src = fetchurl {
4684 url = "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz";
4693 url = "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz";
4685 sha512 = "qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==";
4694 sha512 = "qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==";
4686 };
4695 };
4687 };
4696 };
4688 "memory-fs-0.4.1" = {
4697 "memory-fs-0.4.1" = {
4689 name = "memory-fs";
4698 name = "memory-fs";
4690 packageName = "memory-fs";
4699 packageName = "memory-fs";
4691 version = "0.4.1";
4700 version = "0.4.1";
4692 src = fetchurl {
4701 src = fetchurl {
4693 url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz";
4702 url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz";
4694 sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
4703 sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
4695 };
4704 };
4696 };
4705 };
4697 "memory-fs-0.5.0" = {
4706 "memory-fs-0.5.0" = {
4698 name = "memory-fs";
4707 name = "memory-fs";
4699 packageName = "memory-fs";
4708 packageName = "memory-fs";
4700 version = "0.5.0";
4709 version = "0.5.0";
4701 src = fetchurl {
4710 src = fetchurl {
4702 url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz";
4711 url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz";
4703 sha512 = "jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==";
4712 sha512 = "jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==";
4704 };
4713 };
4705 };
4714 };
4706 "micromatch-3.1.10" = {
4715 "micromatch-3.1.10" = {
4707 name = "micromatch";
4716 name = "micromatch";
4708 packageName = "micromatch";
4717 packageName = "micromatch";
4709 version = "3.1.10";
4718 version = "3.1.10";
4710 src = fetchurl {
4719 src = fetchurl {
4711 url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
4720 url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
4712 sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
4721 sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
4713 };
4722 };
4714 };
4723 };
4715 "miller-rabin-4.0.1" = {
4724 "miller-rabin-4.0.1" = {
4716 name = "miller-rabin";
4725 name = "miller-rabin";
4717 packageName = "miller-rabin";
4726 packageName = "miller-rabin";
4718 version = "4.0.1";
4727 version = "4.0.1";
4719 src = fetchurl {
4728 src = fetchurl {
4720 url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz";
4729 url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz";
4721 sha512 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==";
4730 sha512 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==";
4722 };
4731 };
4723 };
4732 };
4724 "mime-1.6.0" = {
4733 "mime-1.6.0" = {
4725 name = "mime";
4734 name = "mime";
4726 packageName = "mime";
4735 packageName = "mime";
4727 version = "1.6.0";
4736 version = "1.6.0";
4728 src = fetchurl {
4737 src = fetchurl {
4729 url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz";
4738 url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz";
4730 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
4739 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
4731 };
4740 };
4732 };
4741 };
4733 "mime-db-1.43.0" = {
4742 "mime-db-1.44.0" = {
4734 name = "mime-db";
4743 name = "mime-db";
4735 packageName = "mime-db";
4744 packageName = "mime-db";
4736 version = "1.43.0";
4745 version = "1.44.0";
4737 src = fetchurl {
4746 src = fetchurl {
4738 url = "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz";
4747 url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz";
4739 sha512 = "+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==";
4748 sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==";
4740 };
4749 };
4741 };
4750 };
4742 "mime-types-2.1.26" = {
4751 "mime-types-2.1.27" = {
4743 name = "mime-types";
4752 name = "mime-types";
4744 packageName = "mime-types";
4753 packageName = "mime-types";
4745 version = "2.1.26";
4754 version = "2.1.27";
4746 src = fetchurl {
4755 src = fetchurl {
4747 url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz";
4756 url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz";
4748 sha512 = "01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==";
4757 sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==";
4749 };
4758 };
4750 };
4759 };
4751 "mimic-fn-2.1.0" = {
4760 "mimic-fn-2.1.0" = {
4752 name = "mimic-fn";
4761 name = "mimic-fn";
4753 packageName = "mimic-fn";
4762 packageName = "mimic-fn";
4754 version = "2.1.0";
4763 version = "2.1.0";
4755 src = fetchurl {
4764 src = fetchurl {
4756 url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz";
4765 url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz";
4757 sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==";
4766 sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==";
4758 };
4767 };
4759 };
4768 };
4760 "minimalistic-assert-1.0.1" = {
4769 "minimalistic-assert-1.0.1" = {
4761 name = "minimalistic-assert";
4770 name = "minimalistic-assert";
4762 packageName = "minimalistic-assert";
4771 packageName = "minimalistic-assert";
4763 version = "1.0.1";
4772 version = "1.0.1";
4764 src = fetchurl {
4773 src = fetchurl {
4765 url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
4774 url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
4766 sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==";
4775 sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==";
4767 };
4776 };
4768 };
4777 };
4769 "minimalistic-crypto-utils-1.0.1" = {
4778 "minimalistic-crypto-utils-1.0.1" = {
4770 name = "minimalistic-crypto-utils";
4779 name = "minimalistic-crypto-utils";
4771 packageName = "minimalistic-crypto-utils";
4780 packageName = "minimalistic-crypto-utils";
4772 version = "1.0.1";
4781 version = "1.0.1";
4773 src = fetchurl {
4782 src = fetchurl {
4774 url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
4783 url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
4775 sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
4784 sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
4776 };
4785 };
4777 };
4786 };
4778 "minimatch-0.2.14" = {
4787 "minimatch-0.2.14" = {
4779 name = "minimatch";
4788 name = "minimatch";
4780 packageName = "minimatch";
4789 packageName = "minimatch";
4781 version = "0.2.14";
4790 version = "0.2.14";
4782 src = fetchurl {
4791 src = fetchurl {
4783 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
4792 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
4784 sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
4793 sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
4785 };
4794 };
4786 };
4795 };
4787 "minimatch-0.3.0" = {
4796 "minimatch-0.3.0" = {
4788 name = "minimatch";
4797 name = "minimatch";
4789 packageName = "minimatch";
4798 packageName = "minimatch";
4790 version = "0.3.0";
4799 version = "0.3.0";
4791 src = fetchurl {
4800 src = fetchurl {
4792 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz";
4801 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz";
4793 sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd";
4802 sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd";
4794 };
4803 };
4795 };
4804 };
4796 "minimatch-3.0.4" = {
4805 "minimatch-3.0.4" = {
4797 name = "minimatch";
4806 name = "minimatch";
4798 packageName = "minimatch";
4807 packageName = "minimatch";
4799 version = "3.0.4";
4808 version = "3.0.4";
4800 src = fetchurl {
4809 src = fetchurl {
4801 url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
4810 url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
4802 sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
4811 sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
4803 };
4812 };
4804 };
4813 };
4805 "minimist-1.2.5" = {
4814 "minimist-1.2.5" = {
4806 name = "minimist";
4815 name = "minimist";
4807 packageName = "minimist";
4816 packageName = "minimist";
4808 version = "1.2.5";
4817 version = "1.2.5";
4809 src = fetchurl {
4818 src = fetchurl {
4810 url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz";
4819 url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz";
4811 sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==";
4820 sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==";
4812 };
4821 };
4813 };
4822 };
4814 "mississippi-2.0.0" = {
4823 "mississippi-2.0.0" = {
4815 name = "mississippi";
4824 name = "mississippi";
4816 packageName = "mississippi";
4825 packageName = "mississippi";
4817 version = "2.0.0";
4826 version = "2.0.0";
4818 src = fetchurl {
4827 src = fetchurl {
4819 url = "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz";
4828 url = "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz";
4820 sha512 = "zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==";
4829 sha512 = "zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==";
4821 };
4830 };
4822 };
4831 };
4823 "mixin-deep-1.3.2" = {
4832 "mixin-deep-1.3.2" = {
4824 name = "mixin-deep";
4833 name = "mixin-deep";
4825 packageName = "mixin-deep";
4834 packageName = "mixin-deep";
4826 version = "1.3.2";
4835 version = "1.3.2";
4827 src = fetchurl {
4836 src = fetchurl {
4828 url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz";
4837 url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz";
4829 sha512 = "WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==";
4838 sha512 = "WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==";
4830 };
4839 };
4831 };
4840 };
4832 "mkdirp-0.5.5" = {
4841 "mkdirp-0.5.5" = {
4833 name = "mkdirp";
4842 name = "mkdirp";
4834 packageName = "mkdirp";
4843 packageName = "mkdirp";
4835 version = "0.5.5";
4844 version = "0.5.5";
4836 src = fetchurl {
4845 src = fetchurl {
4837 url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz";
4846 url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz";
4838 sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==";
4847 sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==";
4839 };
4848 };
4840 };
4849 };
4841 "moment-2.24.0" = {
4850 "moment-2.25.3" = {
4842 name = "moment";
4851 name = "moment";
4843 packageName = "moment";
4852 packageName = "moment";
4844 version = "2.24.0";
4853 version = "2.25.3";
4845 src = fetchurl {
4854 src = fetchurl {
4846 url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz";
4855 url = "https://registry.npmjs.org/moment/-/moment-2.25.3.tgz";
4847 sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==";
4856 sha512 = "PuYv0PHxZvzc15Sp8ybUCoQ+xpyPWvjOuK72a5ovzp2LI32rJXOiIfyoFoYvG3s6EwwrdkMyWuRiEHSZRLJNdg==";
4848 };
4857 };
4849 };
4858 };
4850 "mousetrap-1.6.5" = {
4859 "mousetrap-1.6.5" = {
4851 name = "mousetrap";
4860 name = "mousetrap";
4852 packageName = "mousetrap";
4861 packageName = "mousetrap";
4853 version = "1.6.5";
4862 version = "1.6.5";
4854 src = fetchurl {
4863 src = fetchurl {
4855 url = "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.5.tgz";
4864 url = "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.5.tgz";
4856 sha512 = "QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==";
4865 sha512 = "QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==";
4857 };
4866 };
4858 };
4867 };
4859 "move-concurrently-1.0.1" = {
4868 "move-concurrently-1.0.1" = {
4860 name = "move-concurrently";
4869 name = "move-concurrently";
4861 packageName = "move-concurrently";
4870 packageName = "move-concurrently";
4862 version = "1.0.1";
4871 version = "1.0.1";
4863 src = fetchurl {
4872 src = fetchurl {
4864 url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz";
4873 url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz";
4865 sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
4874 sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
4866 };
4875 };
4867 };
4876 };
4868 "ms-2.0.0" = {
4877 "ms-2.0.0" = {
4869 name = "ms";
4878 name = "ms";
4870 packageName = "ms";
4879 packageName = "ms";
4871 version = "2.0.0";
4880 version = "2.0.0";
4872 src = fetchurl {
4881 src = fetchurl {
4873 url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
4882 url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
4874 sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
4883 sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
4875 };
4884 };
4876 };
4885 };
4877 "nan-2.14.0" = {
4886 "nan-2.14.1" = {
4878 name = "nan";
4887 name = "nan";
4879 packageName = "nan";
4888 packageName = "nan";
4880 version = "2.14.0";
4889 version = "2.14.1";
4881 src = fetchurl {
4890 src = fetchurl {
4882 url = "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz";
4891 url = "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz";
4883 sha512 = "INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==";
4892 sha512 = "isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==";
4884 };
4893 };
4885 };
4894 };
4886 "nanomatch-1.2.13" = {
4895 "nanomatch-1.2.13" = {
4887 name = "nanomatch";
4896 name = "nanomatch";
4888 packageName = "nanomatch";
4897 packageName = "nanomatch";
4889 version = "1.2.13";
4898 version = "1.2.13";
4890 src = fetchurl {
4899 src = fetchurl {
4891 url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
4900 url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
4892 sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
4901 sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
4893 };
4902 };
4894 };
4903 };
4895 "neo-async-2.6.1" = {
4904 "neo-async-2.6.1" = {
4896 name = "neo-async";
4905 name = "neo-async";
4897 packageName = "neo-async";
4906 packageName = "neo-async";
4898 version = "2.6.1";
4907 version = "2.6.1";
4899 src = fetchurl {
4908 src = fetchurl {
4900 url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz";
4909 url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz";
4901 sha512 = "iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==";
4910 sha512 = "iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==";
4902 };
4911 };
4903 };
4912 };
4904 "nice-try-1.0.5" = {
4913 "nice-try-1.0.5" = {
4905 name = "nice-try";
4914 name = "nice-try";
4906 packageName = "nice-try";
4915 packageName = "nice-try";
4907 version = "1.0.5";
4916 version = "1.0.5";
4908 src = fetchurl {
4917 src = fetchurl {
4909 url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz";
4918 url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz";
4910 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==";
4919 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==";
4911 };
4920 };
4912 };
4921 };
4913 "no-case-2.3.2" = {
4922 "no-case-2.3.2" = {
4914 name = "no-case";
4923 name = "no-case";
4915 packageName = "no-case";
4924 packageName = "no-case";
4916 version = "2.3.2";
4925 version = "2.3.2";
4917 src = fetchurl {
4926 src = fetchurl {
4918 url = "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz";
4927 url = "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz";
4919 sha512 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==";
4928 sha512 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==";
4920 };
4929 };
4921 };
4930 };
4922 "node-libs-browser-2.2.1" = {
4931 "node-libs-browser-2.2.1" = {
4923 name = "node-libs-browser";
4932 name = "node-libs-browser";
4924 packageName = "node-libs-browser";
4933 packageName = "node-libs-browser";
4925 version = "2.2.1";
4934 version = "2.2.1";
4926 src = fetchurl {
4935 src = fetchurl {
4927 url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz";
4936 url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz";
4928 sha512 = "h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==";
4937 sha512 = "h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==";
4929 };
4938 };
4930 };
4939 };
4931 "nopt-1.0.10" = {
4940 "nopt-1.0.10" = {
4932 name = "nopt";
4941 name = "nopt";
4933 packageName = "nopt";
4942 packageName = "nopt";
4934 version = "1.0.10";
4943 version = "1.0.10";
4935 src = fetchurl {
4944 src = fetchurl {
4936 url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
4945 url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
4937 sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
4946 sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
4938 };
4947 };
4939 };
4948 };
4940 "nopt-2.0.0" = {
4949 "nopt-2.0.0" = {
4941 name = "nopt";
4950 name = "nopt";
4942 packageName = "nopt";
4951 packageName = "nopt";
4943 version = "2.0.0";
4952 version = "2.0.0";
4944 src = fetchurl {
4953 src = fetchurl {
4945 url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz";
4954 url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz";
4946 sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d";
4955 sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d";
4947 };
4956 };
4948 };
4957 };
4949 "nopt-4.0.3" = {
4958 "nopt-4.0.3" = {
4950 name = "nopt";
4959 name = "nopt";
4951 packageName = "nopt";
4960 packageName = "nopt";
4952 version = "4.0.3";
4961 version = "4.0.3";
4953 src = fetchurl {
4962 src = fetchurl {
4954 url = "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz";
4963 url = "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz";
4955 sha512 = "CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==";
4964 sha512 = "CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==";
4956 };
4965 };
4957 };
4966 };
4958 "noptify-0.0.3" = {
4967 "noptify-0.0.3" = {
4959 name = "noptify";
4968 name = "noptify";
4960 packageName = "noptify";
4969 packageName = "noptify";
4961 version = "0.0.3";
4970 version = "0.0.3";
4962 src = fetchurl {
4971 src = fetchurl {
4963 url = "https://registry.npmjs.org/noptify/-/noptify-0.0.3.tgz";
4972 url = "https://registry.npmjs.org/noptify/-/noptify-0.0.3.tgz";
4964 sha1 = "58f654a73d9753df0c51d9686dc92104a67f4bbb";
4973 sha1 = "58f654a73d9753df0c51d9686dc92104a67f4bbb";
4965 };
4974 };
4966 };
4975 };
4967 "normalize-path-2.1.1" = {
4976 "normalize-path-2.1.1" = {
4968 name = "normalize-path";
4977 name = "normalize-path";
4969 packageName = "normalize-path";
4978 packageName = "normalize-path";
4970 version = "2.1.1";
4979 version = "2.1.1";
4971 src = fetchurl {
4980 src = fetchurl {
4972 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
4981 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
4973 sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
4982 sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
4974 };
4983 };
4975 };
4984 };
4976 "normalize-path-3.0.0" = {
4985 "normalize-path-3.0.0" = {
4977 name = "normalize-path";
4986 name = "normalize-path";
4978 packageName = "normalize-path";
4987 packageName = "normalize-path";
4979 version = "3.0.0";
4988 version = "3.0.0";
4980 src = fetchurl {
4989 src = fetchurl {
4981 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz";
4990 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz";
4982 sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==";
4991 sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==";
4983 };
4992 };
4984 };
4993 };
4985 "normalize-range-0.1.2" = {
4994 "normalize-range-0.1.2" = {
4986 name = "normalize-range";
4995 name = "normalize-range";
4987 packageName = "normalize-range";
4996 packageName = "normalize-range";
4988 version = "0.1.2";
4997 version = "0.1.2";
4989 src = fetchurl {
4998 src = fetchurl {
4990 url = "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz";
4999 url = "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz";
4991 sha1 = "2d10c06bdfd312ea9777695a4d28439456b75942";
5000 sha1 = "2d10c06bdfd312ea9777695a4d28439456b75942";
4992 };
5001 };
4993 };
5002 };
4994 "normalize-url-1.9.1" = {
5003 "normalize-url-1.9.1" = {
4995 name = "normalize-url";
5004 name = "normalize-url";
4996 packageName = "normalize-url";
5005 packageName = "normalize-url";
4997 version = "1.9.1";
5006 version = "1.9.1";
4998 src = fetchurl {
5007 src = fetchurl {
4999 url = "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz";
5008 url = "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz";
5000 sha1 = "2cc0d66b31ea23036458436e3620d85954c66c3c";
5009 sha1 = "2cc0d66b31ea23036458436e3620d85954c66c3c";
5001 };
5010 };
5002 };
5011 };
5003 "npm-run-path-2.0.2" = {
5012 "npm-run-path-2.0.2" = {
5004 name = "npm-run-path";
5013 name = "npm-run-path";
5005 packageName = "npm-run-path";
5014 packageName = "npm-run-path";
5006 version = "2.0.2";
5015 version = "2.0.2";
5007 src = fetchurl {
5016 src = fetchurl {
5008 url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
5017 url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
5009 sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
5018 sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
5010 };
5019 };
5011 };
5020 };
5012 "nth-check-1.0.2" = {
5021 "nth-check-1.0.2" = {
5013 name = "nth-check";
5022 name = "nth-check";
5014 packageName = "nth-check";
5023 packageName = "nth-check";
5015 version = "1.0.2";
5024 version = "1.0.2";
5016 src = fetchurl {
5025 src = fetchurl {
5017 url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz";
5026 url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz";
5018 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==";
5027 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==";
5019 };
5028 };
5020 };
5029 };
5021 "num2fraction-1.2.2" = {
5030 "num2fraction-1.2.2" = {
5022 name = "num2fraction";
5031 name = "num2fraction";
5023 packageName = "num2fraction";
5032 packageName = "num2fraction";
5024 version = "1.2.2";
5033 version = "1.2.2";
5025 src = fetchurl {
5034 src = fetchurl {
5026 url = "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz";
5035 url = "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz";
5027 sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede";
5036 sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede";
5028 };
5037 };
5029 };
5038 };
5030 "number-is-nan-1.0.1" = {
5039 "number-is-nan-1.0.1" = {
5031 name = "number-is-nan";
5040 name = "number-is-nan";
5032 packageName = "number-is-nan";
5041 packageName = "number-is-nan";
5033 version = "1.0.1";
5042 version = "1.0.1";
5034 src = fetchurl {
5043 src = fetchurl {
5035 url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
5044 url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
5036 sha1 = "097b602b53422a522c1afb8790318336941a011d";
5045 sha1 = "097b602b53422a522c1afb8790318336941a011d";
5037 };
5046 };
5038 };
5047 };
5039 "oauth-sign-0.8.2" = {
5048 "oauth-sign-0.8.2" = {
5040 name = "oauth-sign";
5049 name = "oauth-sign";
5041 packageName = "oauth-sign";
5050 packageName = "oauth-sign";
5042 version = "0.8.2";
5051 version = "0.8.2";
5043 src = fetchurl {
5052 src = fetchurl {
5044 url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
5053 url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
5045 sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
5054 sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
5046 };
5055 };
5047 };
5056 };
5048 "object-assign-4.1.1" = {
5057 "object-assign-4.1.1" = {
5049 name = "object-assign";
5058 name = "object-assign";
5050 packageName = "object-assign";
5059 packageName = "object-assign";
5051 version = "4.1.1";
5060 version = "4.1.1";
5052 src = fetchurl {
5061 src = fetchurl {
5053 url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
5062 url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
5054 sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
5063 sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
5055 };
5064 };
5056 };
5065 };
5057 "object-copy-0.1.0" = {
5066 "object-copy-0.1.0" = {
5058 name = "object-copy";
5067 name = "object-copy";
5059 packageName = "object-copy";
5068 packageName = "object-copy";
5060 version = "0.1.0";
5069 version = "0.1.0";
5061 src = fetchurl {
5070 src = fetchurl {
5062 url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
5071 url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
5063 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
5072 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
5064 };
5073 };
5065 };
5074 };
5066 "object-inspect-1.7.0" = {
5075 "object-inspect-1.7.0" = {
5067 name = "object-inspect";
5076 name = "object-inspect";
5068 packageName = "object-inspect";
5077 packageName = "object-inspect";
5069 version = "1.7.0";
5078 version = "1.7.0";
5070 src = fetchurl {
5079 src = fetchurl {
5071 url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz";
5080 url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz";
5072 sha512 = "a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==";
5081 sha512 = "a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==";
5073 };
5082 };
5074 };
5083 };
5075 "object-keys-1.1.1" = {
5084 "object-keys-1.1.1" = {
5076 name = "object-keys";
5085 name = "object-keys";
5077 packageName = "object-keys";
5086 packageName = "object-keys";
5078 version = "1.1.1";
5087 version = "1.1.1";
5079 src = fetchurl {
5088 src = fetchurl {
5080 url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz";
5089 url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz";
5081 sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==";
5090 sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==";
5082 };
5091 };
5083 };
5092 };
5084 "object-visit-1.0.1" = {
5093 "object-visit-1.0.1" = {
5085 name = "object-visit";
5094 name = "object-visit";
5086 packageName = "object-visit";
5095 packageName = "object-visit";
5087 version = "1.0.1";
5096 version = "1.0.1";
5088 src = fetchurl {
5097 src = fetchurl {
5089 url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
5098 url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
5090 sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
5099 sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
5091 };
5100 };
5092 };
5101 };
5093 "object.assign-4.1.0" = {
5102 "object.assign-4.1.0" = {
5094 name = "object.assign";
5103 name = "object.assign";
5095 packageName = "object.assign";
5104 packageName = "object.assign";
5096 version = "4.1.0";
5105 version = "4.1.0";
5097 src = fetchurl {
5106 src = fetchurl {
5098 url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz";
5107 url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz";
5099 sha512 = "exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==";
5108 sha512 = "exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==";
5100 };
5109 };
5101 };
5110 };
5102 "object.defaults-1.1.0" = {
5111 "object.defaults-1.1.0" = {
5103 name = "object.defaults";
5112 name = "object.defaults";
5104 packageName = "object.defaults";
5113 packageName = "object.defaults";
5105 version = "1.1.0";
5114 version = "1.1.0";
5106 src = fetchurl {
5115 src = fetchurl {
5107 url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
5116 url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
5108 sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
5117 sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
5109 };
5118 };
5110 };
5119 };
5111 "object.getownpropertydescriptors-2.1.0" = {
5120 "object.getownpropertydescriptors-2.1.0" = {
5112 name = "object.getownpropertydescriptors";
5121 name = "object.getownpropertydescriptors";
5113 packageName = "object.getownpropertydescriptors";
5122 packageName = "object.getownpropertydescriptors";
5114 version = "2.1.0";
5123 version = "2.1.0";
5115 src = fetchurl {
5124 src = fetchurl {
5116 url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz";
5125 url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz";
5117 sha512 = "Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==";
5126 sha512 = "Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==";
5118 };
5127 };
5119 };
5128 };
5120 "object.map-1.0.1" = {
5129 "object.map-1.0.1" = {
5121 name = "object.map";
5130 name = "object.map";
5122 packageName = "object.map";
5131 packageName = "object.map";
5123 version = "1.0.1";
5132 version = "1.0.1";
5124 src = fetchurl {
5133 src = fetchurl {
5125 url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
5134 url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
5126 sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
5135 sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
5127 };
5136 };
5128 };
5137 };
5129 "object.pick-1.3.0" = {
5138 "object.pick-1.3.0" = {
5130 name = "object.pick";
5139 name = "object.pick";
5131 packageName = "object.pick";
5140 packageName = "object.pick";
5132 version = "1.3.0";
5141 version = "1.3.0";
5133 src = fetchurl {
5142 src = fetchurl {
5134 url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
5143 url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
5135 sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
5144 sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
5136 };
5145 };
5137 };
5146 };
5138 "once-1.4.0" = {
5147 "once-1.4.0" = {
5139 name = "once";
5148 name = "once";
5140 packageName = "once";
5149 packageName = "once";
5141 version = "1.4.0";
5150 version = "1.4.0";
5142 src = fetchurl {
5151 src = fetchurl {
5143 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
5152 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
5144 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
5153 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
5145 };
5154 };
5146 };
5155 };
5147 "os-browserify-0.3.0" = {
5156 "os-browserify-0.3.0" = {
5148 name = "os-browserify";
5157 name = "os-browserify";
5149 packageName = "os-browserify";
5158 packageName = "os-browserify";
5150 version = "0.3.0";
5159 version = "0.3.0";
5151 src = fetchurl {
5160 src = fetchurl {
5152 url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz";
5161 url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz";
5153 sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
5162 sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
5154 };
5163 };
5155 };
5164 };
5156 "os-homedir-1.0.2" = {
5165 "os-homedir-1.0.2" = {
5157 name = "os-homedir";
5166 name = "os-homedir";
5158 packageName = "os-homedir";
5167 packageName = "os-homedir";
5159 version = "1.0.2";
5168 version = "1.0.2";
5160 src = fetchurl {
5169 src = fetchurl {
5161 url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
5170 url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
5162 sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
5171 sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
5163 };
5172 };
5164 };
5173 };
5165 "os-locale-3.1.0" = {
5174 "os-locale-3.1.0" = {
5166 name = "os-locale";
5175 name = "os-locale";
5167 packageName = "os-locale";
5176 packageName = "os-locale";
5168 version = "3.1.0";
5177 version = "3.1.0";
5169 src = fetchurl {
5178 src = fetchurl {
5170 url = "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz";
5179 url = "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz";
5171 sha512 = "Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==";
5180 sha512 = "Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==";
5172 };
5181 };
5173 };
5182 };
5174 "os-tmpdir-1.0.2" = {
5183 "os-tmpdir-1.0.2" = {
5175 name = "os-tmpdir";
5184 name = "os-tmpdir";
5176 packageName = "os-tmpdir";
5185 packageName = "os-tmpdir";
5177 version = "1.0.2";
5186 version = "1.0.2";
5178 src = fetchurl {
5187 src = fetchurl {
5179 url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
5188 url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
5180 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
5189 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
5181 };
5190 };
5182 };
5191 };
5183 "osenv-0.1.5" = {
5192 "osenv-0.1.5" = {
5184 name = "osenv";
5193 name = "osenv";
5185 packageName = "osenv";
5194 packageName = "osenv";
5186 version = "0.1.5";
5195 version = "0.1.5";
5187 src = fetchurl {
5196 src = fetchurl {
5188 url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
5197 url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
5189 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
5198 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
5190 };
5199 };
5191 };
5200 };
5192 "p-defer-1.0.0" = {
5201 "p-defer-1.0.0" = {
5193 name = "p-defer";
5202 name = "p-defer";
5194 packageName = "p-defer";
5203 packageName = "p-defer";
5195 version = "1.0.0";
5204 version = "1.0.0";
5196 src = fetchurl {
5205 src = fetchurl {
5197 url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz";
5206 url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz";
5198 sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c";
5207 sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c";
5199 };
5208 };
5200 };
5209 };
5201 "p-finally-1.0.0" = {
5210 "p-finally-1.0.0" = {
5202 name = "p-finally";
5211 name = "p-finally";
5203 packageName = "p-finally";
5212 packageName = "p-finally";
5204 version = "1.0.0";
5213 version = "1.0.0";
5205 src = fetchurl {
5214 src = fetchurl {
5206 url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
5215 url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
5207 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
5216 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
5208 };
5217 };
5209 };
5218 };
5210 "p-is-promise-2.1.0" = {
5219 "p-is-promise-2.1.0" = {
5211 name = "p-is-promise";
5220 name = "p-is-promise";
5212 packageName = "p-is-promise";
5221 packageName = "p-is-promise";
5213 version = "2.1.0";
5222 version = "2.1.0";
5214 src = fetchurl {
5223 src = fetchurl {
5215 url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz";
5224 url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz";
5216 sha512 = "Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==";
5225 sha512 = "Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==";
5217 };
5226 };
5218 };
5227 };
5219 "p-limit-1.3.0" = {
5228 "p-limit-1.3.0" = {
5220 name = "p-limit";
5229 name = "p-limit";
5221 packageName = "p-limit";
5230 packageName = "p-limit";
5222 version = "1.3.0";
5231 version = "1.3.0";
5223 src = fetchurl {
5232 src = fetchurl {
5224 url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz";
5233 url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz";
5225 sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==";
5234 sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==";
5226 };
5235 };
5227 };
5236 };
5228 "p-limit-2.3.0" = {
5237 "p-limit-2.3.0" = {
5229 name = "p-limit";
5238 name = "p-limit";
5230 packageName = "p-limit";
5239 packageName = "p-limit";
5231 version = "2.3.0";
5240 version = "2.3.0";
5232 src = fetchurl {
5241 src = fetchurl {
5233 url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz";
5242 url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz";
5234 sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==";
5243 sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==";
5235 };
5244 };
5236 };
5245 };
5237 "p-locate-2.0.0" = {
5246 "p-locate-2.0.0" = {
5238 name = "p-locate";
5247 name = "p-locate";
5239 packageName = "p-locate";
5248 packageName = "p-locate";
5240 version = "2.0.0";
5249 version = "2.0.0";
5241 src = fetchurl {
5250 src = fetchurl {
5242 url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
5251 url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
5243 sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
5252 sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
5244 };
5253 };
5245 };
5254 };
5246 "p-locate-3.0.0" = {
5255 "p-locate-3.0.0" = {
5247 name = "p-locate";
5256 name = "p-locate";
5248 packageName = "p-locate";
5257 packageName = "p-locate";
5249 version = "3.0.0";
5258 version = "3.0.0";
5250 src = fetchurl {
5259 src = fetchurl {
5251 url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz";
5260 url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz";
5252 sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==";
5261 sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==";
5253 };
5262 };
5254 };
5263 };
5255 "p-try-1.0.0" = {
5264 "p-try-1.0.0" = {
5256 name = "p-try";
5265 name = "p-try";
5257 packageName = "p-try";
5266 packageName = "p-try";
5258 version = "1.0.0";
5267 version = "1.0.0";
5259 src = fetchurl {
5268 src = fetchurl {
5260 url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
5269 url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
5261 sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
5270 sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
5262 };
5271 };
5263 };
5272 };
5264 "p-try-2.2.0" = {
5273 "p-try-2.2.0" = {
5265 name = "p-try";
5274 name = "p-try";
5266 packageName = "p-try";
5275 packageName = "p-try";
5267 version = "2.2.0";
5276 version = "2.2.0";
5268 src = fetchurl {
5277 src = fetchurl {
5269 url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz";
5278 url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz";
5270 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==";
5279 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==";
5271 };
5280 };
5272 };
5281 };
5273 "pako-1.0.11" = {
5282 "pako-1.0.11" = {
5274 name = "pako";
5283 name = "pako";
5275 packageName = "pako";
5284 packageName = "pako";
5276 version = "1.0.11";
5285 version = "1.0.11";
5277 src = fetchurl {
5286 src = fetchurl {
5278 url = "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz";
5287 url = "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz";
5279 sha512 = "4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==";
5288 sha512 = "4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==";
5280 };
5289 };
5281 };
5290 };
5282 "parallel-transform-1.2.0" = {
5291 "parallel-transform-1.2.0" = {
5283 name = "parallel-transform";
5292 name = "parallel-transform";
5284 packageName = "parallel-transform";
5293 packageName = "parallel-transform";
5285 version = "1.2.0";
5294 version = "1.2.0";
5286 src = fetchurl {
5295 src = fetchurl {
5287 url = "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz";
5296 url = "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz";
5288 sha512 = "P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==";
5297 sha512 = "P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==";
5289 };
5298 };
5290 };
5299 };
5291 "param-case-2.1.1" = {
5300 "param-case-2.1.1" = {
5292 name = "param-case";
5301 name = "param-case";
5293 packageName = "param-case";
5302 packageName = "param-case";
5294 version = "2.1.1";
5303 version = "2.1.1";
5295 src = fetchurl {
5304 src = fetchurl {
5296 url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz";
5305 url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz";
5297 sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247";
5306 sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247";
5298 };
5307 };
5299 };
5308 };
5300 "parse-asn1-5.1.5" = {
5309 "parse-asn1-5.1.5" = {
5301 name = "parse-asn1";
5310 name = "parse-asn1";
5302 packageName = "parse-asn1";
5311 packageName = "parse-asn1";
5303 version = "5.1.5";
5312 version = "5.1.5";
5304 src = fetchurl {
5313 src = fetchurl {
5305 url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz";
5314 url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz";
5306 sha512 = "jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==";
5315 sha512 = "jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==";
5307 };
5316 };
5308 };
5317 };
5309 "parse-filepath-1.0.2" = {
5318 "parse-filepath-1.0.2" = {
5310 name = "parse-filepath";
5319 name = "parse-filepath";
5311 packageName = "parse-filepath";
5320 packageName = "parse-filepath";
5312 version = "1.0.2";
5321 version = "1.0.2";
5313 src = fetchurl {
5322 src = fetchurl {
5314 url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
5323 url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
5315 sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
5324 sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
5316 };
5325 };
5317 };
5326 };
5318 "parse-passwd-1.0.0" = {
5327 "parse-passwd-1.0.0" = {
5319 name = "parse-passwd";
5328 name = "parse-passwd";
5320 packageName = "parse-passwd";
5329 packageName = "parse-passwd";
5321 version = "1.0.0";
5330 version = "1.0.0";
5322 src = fetchurl {
5331 src = fetchurl {
5323 url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
5332 url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
5324 sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
5333 sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
5325 };
5334 };
5326 };
5335 };
5327 "parse5-2.2.3" = {
5336 "parse5-2.2.3" = {
5328 name = "parse5";
5337 name = "parse5";
5329 packageName = "parse5";
5338 packageName = "parse5";
5330 version = "2.2.3";
5339 version = "2.2.3";
5331 src = fetchurl {
5340 src = fetchurl {
5332 url = "https://registry.npmjs.org/parse5/-/parse5-2.2.3.tgz";
5341 url = "https://registry.npmjs.org/parse5/-/parse5-2.2.3.tgz";
5333 sha1 = "0c4fc41c1000c5e6b93d48b03f8083837834e9f6";
5342 sha1 = "0c4fc41c1000c5e6b93d48b03f8083837834e9f6";
5334 };
5343 };
5335 };
5344 };
5336 "parse5-3.0.3" = {
5345 "parse5-3.0.3" = {
5337 name = "parse5";
5346 name = "parse5";
5338 packageName = "parse5";
5347 packageName = "parse5";
5339 version = "3.0.3";
5348 version = "3.0.3";
5340 src = fetchurl {
5349 src = fetchurl {
5341 url = "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz";
5350 url = "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz";
5342 sha512 = "rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==";
5351 sha512 = "rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==";
5343 };
5352 };
5344 };
5353 };
5345 "parse5-utils-2.0.0" = {
5354 "parse5-utils-2.0.0" = {
5346 name = "parse5-utils";
5355 name = "parse5-utils";
5347 packageName = "parse5-utils";
5356 packageName = "parse5-utils";
5348 version = "2.0.0";
5357 version = "2.0.0";
5349 src = fetchurl {
5358 src = fetchurl {
5350 url = "https://registry.npmjs.org/parse5-utils/-/parse5-utils-2.0.0.tgz";
5359 url = "https://registry.npmjs.org/parse5-utils/-/parse5-utils-2.0.0.tgz";
5351 sha1 = "c926c1764e2431a450a5941f302db9beaec9d78a";
5360 sha1 = "c926c1764e2431a450a5941f302db9beaec9d78a";
5352 };
5361 };
5353 };
5362 };
5354 "pascalcase-0.1.1" = {
5363 "pascalcase-0.1.1" = {
5355 name = "pascalcase";
5364 name = "pascalcase";
5356 packageName = "pascalcase";
5365 packageName = "pascalcase";
5357 version = "0.1.1";
5366 version = "0.1.1";
5358 src = fetchurl {
5367 src = fetchurl {
5359 url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
5368 url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
5360 sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
5369 sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
5361 };
5370 };
5362 };
5371 };
5363 "path-browserify-0.0.1" = {
5372 "path-browserify-0.0.1" = {
5364 name = "path-browserify";
5373 name = "path-browserify";
5365 packageName = "path-browserify";
5374 packageName = "path-browserify";
5366 version = "0.0.1";
5375 version = "0.0.1";
5367 src = fetchurl {
5376 src = fetchurl {
5368 url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz";
5377 url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz";
5369 sha512 = "BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==";
5378 sha512 = "BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==";
5370 };
5379 };
5371 };
5380 };
5372 "path-dirname-1.0.2" = {
5381 "path-dirname-1.0.2" = {
5373 name = "path-dirname";
5382 name = "path-dirname";
5374 packageName = "path-dirname";
5383 packageName = "path-dirname";
5375 version = "1.0.2";
5384 version = "1.0.2";
5376 src = fetchurl {
5385 src = fetchurl {
5377 url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
5386 url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
5378 sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
5387 sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
5379 };
5388 };
5380 };
5389 };
5381 "path-exists-3.0.0" = {
5390 "path-exists-3.0.0" = {
5382 name = "path-exists";
5391 name = "path-exists";
5383 packageName = "path-exists";
5392 packageName = "path-exists";
5384 version = "3.0.0";
5393 version = "3.0.0";
5385 src = fetchurl {
5394 src = fetchurl {
5386 url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
5395 url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
5387 sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
5396 sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
5388 };
5397 };
5389 };
5398 };
5390 "path-is-absolute-1.0.1" = {
5399 "path-is-absolute-1.0.1" = {
5391 name = "path-is-absolute";
5400 name = "path-is-absolute";
5392 packageName = "path-is-absolute";
5401 packageName = "path-is-absolute";
5393 version = "1.0.1";
5402 version = "1.0.1";
5394 src = fetchurl {
5403 src = fetchurl {
5395 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
5404 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
5396 sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
5405 sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
5397 };
5406 };
5398 };
5407 };
5399 "path-key-2.0.1" = {
5408 "path-key-2.0.1" = {
5400 name = "path-key";
5409 name = "path-key";
5401 packageName = "path-key";
5410 packageName = "path-key";
5402 version = "2.0.1";
5411 version = "2.0.1";
5403 src = fetchurl {
5412 src = fetchurl {
5404 url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
5413 url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
5405 sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
5414 sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
5406 };
5415 };
5407 };
5416 };
5408 "path-parse-1.0.6" = {
5417 "path-parse-1.0.6" = {
5409 name = "path-parse";
5418 name = "path-parse";
5410 packageName = "path-parse";
5419 packageName = "path-parse";
5411 version = "1.0.6";
5420 version = "1.0.6";
5412 src = fetchurl {
5421 src = fetchurl {
5413 url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
5422 url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
5414 sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
5423 sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
5415 };
5424 };
5416 };
5425 };
5417 "path-root-0.1.1" = {
5426 "path-root-0.1.1" = {
5418 name = "path-root";
5427 name = "path-root";
5419 packageName = "path-root";
5428 packageName = "path-root";
5420 version = "0.1.1";
5429 version = "0.1.1";
5421 src = fetchurl {
5430 src = fetchurl {
5422 url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
5431 url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
5423 sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
5432 sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
5424 };
5433 };
5425 };
5434 };
5426 "path-root-regex-0.1.2" = {
5435 "path-root-regex-0.1.2" = {
5427 name = "path-root-regex";
5436 name = "path-root-regex";
5428 packageName = "path-root-regex";
5437 packageName = "path-root-regex";
5429 version = "0.1.2";
5438 version = "0.1.2";
5430 src = fetchurl {
5439 src = fetchurl {
5431 url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
5440 url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
5432 sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
5441 sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
5433 };
5442 };
5434 };
5443 };
5435 "path-type-3.0.0" = {
5444 "path-type-3.0.0" = {
5436 name = "path-type";
5445 name = "path-type";
5437 packageName = "path-type";
5446 packageName = "path-type";
5438 version = "3.0.0";
5447 version = "3.0.0";
5439 src = fetchurl {
5448 src = fetchurl {
5440 url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz";
5449 url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz";
5441 sha512 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==";
5450 sha512 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==";
5442 };
5451 };
5443 };
5452 };
5444 "pbkdf2-3.0.17" = {
5453 "pbkdf2-3.0.17" = {
5445 name = "pbkdf2";
5454 name = "pbkdf2";
5446 packageName = "pbkdf2";
5455 packageName = "pbkdf2";
5447 version = "3.0.17";
5456 version = "3.0.17";
5448 src = fetchurl {
5457 src = fetchurl {
5449 url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz";
5458 url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz";
5450 sha512 = "U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==";
5459 sha512 = "U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==";
5451 };
5460 };
5452 };
5461 };
5453 "performance-now-0.2.0" = {
5462 "performance-now-0.2.0" = {
5454 name = "performance-now";
5463 name = "performance-now";
5455 packageName = "performance-now";
5464 packageName = "performance-now";
5456 version = "0.2.0";
5465 version = "0.2.0";
5457 src = fetchurl {
5466 src = fetchurl {
5458 url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
5467 url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
5459 sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
5468 sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
5460 };
5469 };
5461 };
5470 };
5462 "pify-3.0.0" = {
5471 "pify-3.0.0" = {
5463 name = "pify";
5472 name = "pify";
5464 packageName = "pify";
5473 packageName = "pify";
5465 version = "3.0.0";
5474 version = "3.0.0";
5466 src = fetchurl {
5475 src = fetchurl {
5467 url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
5476 url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
5468 sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
5477 sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
5469 };
5478 };
5470 };
5479 };
5471 "pkg-dir-2.0.0" = {
5480 "pkg-dir-2.0.0" = {
5472 name = "pkg-dir";
5481 name = "pkg-dir";
5473 packageName = "pkg-dir";
5482 packageName = "pkg-dir";
5474 version = "2.0.0";
5483 version = "2.0.0";
5475 src = fetchurl {
5484 src = fetchurl {
5476 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz";
5485 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz";
5477 sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
5486 sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
5478 };
5487 };
5479 };
5488 };
5480 "pkg-dir-3.0.0" = {
5489 "pkg-dir-3.0.0" = {
5481 name = "pkg-dir";
5490 name = "pkg-dir";
5482 packageName = "pkg-dir";
5491 packageName = "pkg-dir";
5483 version = "3.0.0";
5492 version = "3.0.0";
5484 src = fetchurl {
5493 src = fetchurl {
5485 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz";
5494 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz";
5486 sha512 = "/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==";
5495 sha512 = "/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==";
5487 };
5496 };
5488 };
5497 };
5489 "polymer-webpack-loader-2.0.3" = {
5498 "polymer-webpack-loader-2.0.3" = {
5490 name = "polymer-webpack-loader";
5499 name = "polymer-webpack-loader";
5491 packageName = "polymer-webpack-loader";
5500 packageName = "polymer-webpack-loader";
5492 version = "2.0.3";
5501 version = "2.0.3";
5493 src = fetchurl {
5502 src = fetchurl {
5494 url = "https://registry.npmjs.org/polymer-webpack-loader/-/polymer-webpack-loader-2.0.3.tgz";
5503 url = "https://registry.npmjs.org/polymer-webpack-loader/-/polymer-webpack-loader-2.0.3.tgz";
5495 sha512 = "3SR+/qVAGeVKltvsSMA+euGdLwj8ZZJnwd5NvXRvbdQ7yO57sdcTpRw3d34pTc9YTZxncW/kozuI/9bHjr/rdg==";
5504 sha512 = "3SR+/qVAGeVKltvsSMA+euGdLwj8ZZJnwd5NvXRvbdQ7yO57sdcTpRw3d34pTc9YTZxncW/kozuI/9bHjr/rdg==";
5496 };
5505 };
5497 };
5506 };
5498 "posix-character-classes-0.1.1" = {
5507 "posix-character-classes-0.1.1" = {
5499 name = "posix-character-classes";
5508 name = "posix-character-classes";
5500 packageName = "posix-character-classes";
5509 packageName = "posix-character-classes";
5501 version = "0.1.1";
5510 version = "0.1.1";
5502 src = fetchurl {
5511 src = fetchurl {
5503 url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
5512 url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
5504 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
5513 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
5505 };
5514 };
5506 };
5515 };
5507 "postcss-5.2.18" = {
5516 "postcss-5.2.18" = {
5508 name = "postcss";
5517 name = "postcss";
5509 packageName = "postcss";
5518 packageName = "postcss";
5510 version = "5.2.18";
5519 version = "5.2.18";
5511 src = fetchurl {
5520 src = fetchurl {
5512 url = "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz";
5521 url = "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz";
5513 sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==";
5522 sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==";
5514 };
5523 };
5515 };
5524 };
5516 "postcss-6.0.23" = {
5525 "postcss-6.0.23" = {
5517 name = "postcss";
5526 name = "postcss";
5518 packageName = "postcss";
5527 packageName = "postcss";
5519 version = "6.0.23";
5528 version = "6.0.23";
5520 src = fetchurl {
5529 src = fetchurl {
5521 url = "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz";
5530 url = "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz";
5522 sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==";
5531 sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==";
5523 };
5532 };
5524 };
5533 };
5525 "postcss-calc-5.3.1" = {
5534 "postcss-calc-5.3.1" = {
5526 name = "postcss-calc";
5535 name = "postcss-calc";
5527 packageName = "postcss-calc";
5536 packageName = "postcss-calc";
5528 version = "5.3.1";
5537 version = "5.3.1";
5529 src = fetchurl {
5538 src = fetchurl {
5530 url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz";
5539 url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz";
5531 sha1 = "77bae7ca928ad85716e2fda42f261bf7c1d65b5e";
5540 sha1 = "77bae7ca928ad85716e2fda42f261bf7c1d65b5e";
5532 };
5541 };
5533 };
5542 };
5534 "postcss-colormin-2.2.2" = {
5543 "postcss-colormin-2.2.2" = {
5535 name = "postcss-colormin";
5544 name = "postcss-colormin";
5536 packageName = "postcss-colormin";
5545 packageName = "postcss-colormin";
5537 version = "2.2.2";
5546 version = "2.2.2";
5538 src = fetchurl {
5547 src = fetchurl {
5539 url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz";
5548 url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz";
5540 sha1 = "6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b";
5549 sha1 = "6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b";
5541 };
5550 };
5542 };
5551 };
5543 "postcss-convert-values-2.6.1" = {
5552 "postcss-convert-values-2.6.1" = {
5544 name = "postcss-convert-values";
5553 name = "postcss-convert-values";
5545 packageName = "postcss-convert-values";
5554 packageName = "postcss-convert-values";
5546 version = "2.6.1";
5555 version = "2.6.1";
5547 src = fetchurl {
5556 src = fetchurl {
5548 url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz";
5557 url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz";
5549 sha1 = "bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d";
5558 sha1 = "bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d";
5550 };
5559 };
5551 };
5560 };
5552 "postcss-discard-comments-2.0.4" = {
5561 "postcss-discard-comments-2.0.4" = {
5553 name = "postcss-discard-comments";
5562 name = "postcss-discard-comments";
5554 packageName = "postcss-discard-comments";
5563 packageName = "postcss-discard-comments";
5555 version = "2.0.4";
5564 version = "2.0.4";
5556 src = fetchurl {
5565 src = fetchurl {
5557 url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz";
5566 url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz";
5558 sha1 = "befe89fafd5b3dace5ccce51b76b81514be00e3d";
5567 sha1 = "befe89fafd5b3dace5ccce51b76b81514be00e3d";
5559 };
5568 };
5560 };
5569 };
5561 "postcss-discard-duplicates-2.1.0" = {
5570 "postcss-discard-duplicates-2.1.0" = {
5562 name = "postcss-discard-duplicates";
5571 name = "postcss-discard-duplicates";
5563 packageName = "postcss-discard-duplicates";
5572 packageName = "postcss-discard-duplicates";
5564 version = "2.1.0";
5573 version = "2.1.0";
5565 src = fetchurl {
5574 src = fetchurl {
5566 url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz";
5575 url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz";
5567 sha1 = "b9abf27b88ac188158a5eb12abcae20263b91932";
5576 sha1 = "b9abf27b88ac188158a5eb12abcae20263b91932";
5568 };
5577 };
5569 };
5578 };
5570 "postcss-discard-empty-2.1.0" = {
5579 "postcss-discard-empty-2.1.0" = {
5571 name = "postcss-discard-empty";
5580 name = "postcss-discard-empty";
5572 packageName = "postcss-discard-empty";
5581 packageName = "postcss-discard-empty";
5573 version = "2.1.0";
5582 version = "2.1.0";
5574 src = fetchurl {
5583 src = fetchurl {
5575 url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz";
5584 url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz";
5576 sha1 = "d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5";
5585 sha1 = "d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5";
5577 };
5586 };
5578 };
5587 };
5579 "postcss-discard-overridden-0.1.1" = {
5588 "postcss-discard-overridden-0.1.1" = {
5580 name = "postcss-discard-overridden";
5589 name = "postcss-discard-overridden";
5581 packageName = "postcss-discard-overridden";
5590 packageName = "postcss-discard-overridden";
5582 version = "0.1.1";
5591 version = "0.1.1";
5583 src = fetchurl {
5592 src = fetchurl {
5584 url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz";
5593 url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz";
5585 sha1 = "8b1eaf554f686fb288cd874c55667b0aa3668d58";
5594 sha1 = "8b1eaf554f686fb288cd874c55667b0aa3668d58";
5586 };
5595 };
5587 };
5596 };
5588 "postcss-discard-unused-2.2.3" = {
5597 "postcss-discard-unused-2.2.3" = {
5589 name = "postcss-discard-unused";
5598 name = "postcss-discard-unused";
5590 packageName = "postcss-discard-unused";
5599 packageName = "postcss-discard-unused";
5591 version = "2.2.3";
5600 version = "2.2.3";
5592 src = fetchurl {
5601 src = fetchurl {
5593 url = "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz";
5602 url = "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz";
5594 sha1 = "bce30b2cc591ffc634322b5fb3464b6d934f4433";
5603 sha1 = "bce30b2cc591ffc634322b5fb3464b6d934f4433";
5595 };
5604 };
5596 };
5605 };
5597 "postcss-filter-plugins-2.0.3" = {
5606 "postcss-filter-plugins-2.0.3" = {
5598 name = "postcss-filter-plugins";
5607 name = "postcss-filter-plugins";
5599 packageName = "postcss-filter-plugins";
5608 packageName = "postcss-filter-plugins";
5600 version = "2.0.3";
5609 version = "2.0.3";
5601 src = fetchurl {
5610 src = fetchurl {
5602 url = "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz";
5611 url = "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz";
5603 sha512 = "T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==";
5612 sha512 = "T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==";
5604 };
5613 };
5605 };
5614 };
5606 "postcss-merge-idents-2.1.7" = {
5615 "postcss-merge-idents-2.1.7" = {
5607 name = "postcss-merge-idents";
5616 name = "postcss-merge-idents";
5608 packageName = "postcss-merge-idents";
5617 packageName = "postcss-merge-idents";
5609 version = "2.1.7";
5618 version = "2.1.7";
5610 src = fetchurl {
5619 src = fetchurl {
5611 url = "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz";
5620 url = "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz";
5612 sha1 = "4c5530313c08e1d5b3bbf3d2bbc747e278eea270";
5621 sha1 = "4c5530313c08e1d5b3bbf3d2bbc747e278eea270";
5613 };
5622 };
5614 };
5623 };
5615 "postcss-merge-longhand-2.0.2" = {
5624 "postcss-merge-longhand-2.0.2" = {
5616 name = "postcss-merge-longhand";
5625 name = "postcss-merge-longhand";
5617 packageName = "postcss-merge-longhand";
5626 packageName = "postcss-merge-longhand";
5618 version = "2.0.2";
5627 version = "2.0.2";
5619 src = fetchurl {
5628 src = fetchurl {
5620 url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz";
5629 url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz";
5621 sha1 = "23d90cd127b0a77994915332739034a1a4f3d658";
5630 sha1 = "23d90cd127b0a77994915332739034a1a4f3d658";
5622 };
5631 };
5623 };
5632 };
5624 "postcss-merge-rules-2.1.2" = {
5633 "postcss-merge-rules-2.1.2" = {
5625 name = "postcss-merge-rules";
5634 name = "postcss-merge-rules";
5626 packageName = "postcss-merge-rules";
5635 packageName = "postcss-merge-rules";
5627 version = "2.1.2";
5636 version = "2.1.2";
5628 src = fetchurl {
5637 src = fetchurl {
5629 url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz";
5638 url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz";
5630 sha1 = "d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721";
5639 sha1 = "d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721";
5631 };
5640 };
5632 };
5641 };
5633 "postcss-message-helpers-2.0.0" = {
5642 "postcss-message-helpers-2.0.0" = {
5634 name = "postcss-message-helpers";
5643 name = "postcss-message-helpers";
5635 packageName = "postcss-message-helpers";
5644 packageName = "postcss-message-helpers";
5636 version = "2.0.0";
5645 version = "2.0.0";
5637 src = fetchurl {
5646 src = fetchurl {
5638 url = "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz";
5647 url = "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz";
5639 sha1 = "a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e";
5648 sha1 = "a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e";
5640 };
5649 };
5641 };
5650 };
5642 "postcss-minify-font-values-1.0.5" = {
5651 "postcss-minify-font-values-1.0.5" = {
5643 name = "postcss-minify-font-values";
5652 name = "postcss-minify-font-values";
5644 packageName = "postcss-minify-font-values";
5653 packageName = "postcss-minify-font-values";
5645 version = "1.0.5";
5654 version = "1.0.5";
5646 src = fetchurl {
5655 src = fetchurl {
5647 url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz";
5656 url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz";
5648 sha1 = "4b58edb56641eba7c8474ab3526cafd7bbdecb69";
5657 sha1 = "4b58edb56641eba7c8474ab3526cafd7bbdecb69";
5649 };
5658 };
5650 };
5659 };
5651 "postcss-minify-gradients-1.0.5" = {
5660 "postcss-minify-gradients-1.0.5" = {
5652 name = "postcss-minify-gradients";
5661 name = "postcss-minify-gradients";
5653 packageName = "postcss-minify-gradients";
5662 packageName = "postcss-minify-gradients";
5654 version = "1.0.5";
5663 version = "1.0.5";
5655 src = fetchurl {
5664 src = fetchurl {
5656 url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz";
5665 url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz";
5657 sha1 = "5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1";
5666 sha1 = "5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1";
5658 };
5667 };
5659 };
5668 };
5660 "postcss-minify-params-1.2.2" = {
5669 "postcss-minify-params-1.2.2" = {
5661 name = "postcss-minify-params";
5670 name = "postcss-minify-params";
5662 packageName = "postcss-minify-params";
5671 packageName = "postcss-minify-params";
5663 version = "1.2.2";
5672 version = "1.2.2";
5664 src = fetchurl {
5673 src = fetchurl {
5665 url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz";
5674 url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz";
5666 sha1 = "ad2ce071373b943b3d930a3fa59a358c28d6f1f3";
5675 sha1 = "ad2ce071373b943b3d930a3fa59a358c28d6f1f3";
5667 };
5676 };
5668 };
5677 };
5669 "postcss-minify-selectors-2.1.1" = {
5678 "postcss-minify-selectors-2.1.1" = {
5670 name = "postcss-minify-selectors";
5679 name = "postcss-minify-selectors";
5671 packageName = "postcss-minify-selectors";
5680 packageName = "postcss-minify-selectors";
5672 version = "2.1.1";
5681 version = "2.1.1";
5673 src = fetchurl {
5682 src = fetchurl {
5674 url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz";
5683 url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz";
5675 sha1 = "b2c6a98c0072cf91b932d1a496508114311735bf";
5684 sha1 = "b2c6a98c0072cf91b932d1a496508114311735bf";
5676 };
5685 };
5677 };
5686 };
5678 "postcss-modules-extract-imports-1.2.1" = {
5687 "postcss-modules-extract-imports-1.2.1" = {
5679 name = "postcss-modules-extract-imports";
5688 name = "postcss-modules-extract-imports";
5680 packageName = "postcss-modules-extract-imports";
5689 packageName = "postcss-modules-extract-imports";
5681 version = "1.2.1";
5690 version = "1.2.1";
5682 src = fetchurl {
5691 src = fetchurl {
5683 url = "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz";
5692 url = "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz";
5684 sha512 = "6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==";
5693 sha512 = "6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==";
5685 };
5694 };
5686 };
5695 };
5687 "postcss-modules-local-by-default-1.2.0" = {
5696 "postcss-modules-local-by-default-1.2.0" = {
5688 name = "postcss-modules-local-by-default";
5697 name = "postcss-modules-local-by-default";
5689 packageName = "postcss-modules-local-by-default";
5698 packageName = "postcss-modules-local-by-default";
5690 version = "1.2.0";
5699 version = "1.2.0";
5691 src = fetchurl {
5700 src = fetchurl {
5692 url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz";
5701 url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz";
5693 sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069";
5702 sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069";
5694 };
5703 };
5695 };
5704 };
5696 "postcss-modules-scope-1.1.0" = {
5705 "postcss-modules-scope-1.1.0" = {
5697 name = "postcss-modules-scope";
5706 name = "postcss-modules-scope";
5698 packageName = "postcss-modules-scope";
5707 packageName = "postcss-modules-scope";
5699 version = "1.1.0";
5708 version = "1.1.0";
5700 src = fetchurl {
5709 src = fetchurl {
5701 url = "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz";
5710 url = "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz";
5702 sha1 = "d6ea64994c79f97b62a72b426fbe6056a194bb90";
5711 sha1 = "d6ea64994c79f97b62a72b426fbe6056a194bb90";
5703 };
5712 };
5704 };
5713 };
5705 "postcss-modules-values-1.3.0" = {
5714 "postcss-modules-values-1.3.0" = {
5706 name = "postcss-modules-values";
5715 name = "postcss-modules-values";
5707 packageName = "postcss-modules-values";
5716 packageName = "postcss-modules-values";
5708 version = "1.3.0";
5717 version = "1.3.0";
5709 src = fetchurl {
5718 src = fetchurl {
5710 url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz";
5719 url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz";
5711 sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20";
5720 sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20";
5712 };
5721 };
5713 };
5722 };
5714 "postcss-normalize-charset-1.1.1" = {
5723 "postcss-normalize-charset-1.1.1" = {
5715 name = "postcss-normalize-charset";
5724 name = "postcss-normalize-charset";
5716 packageName = "postcss-normalize-charset";
5725 packageName = "postcss-normalize-charset";
5717 version = "1.1.1";
5726 version = "1.1.1";
5718 src = fetchurl {
5727 src = fetchurl {
5719 url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz";
5728 url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz";
5720 sha1 = "ef9ee71212d7fe759c78ed162f61ed62b5cb93f1";
5729 sha1 = "ef9ee71212d7fe759c78ed162f61ed62b5cb93f1";
5721 };
5730 };
5722 };
5731 };
5723 "postcss-normalize-url-3.0.8" = {
5732 "postcss-normalize-url-3.0.8" = {
5724 name = "postcss-normalize-url";
5733 name = "postcss-normalize-url";
5725 packageName = "postcss-normalize-url";
5734 packageName = "postcss-normalize-url";
5726 version = "3.0.8";
5735 version = "3.0.8";
5727 src = fetchurl {
5736 src = fetchurl {
5728 url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz";
5737 url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz";
5729 sha1 = "108f74b3f2fcdaf891a2ffa3ea4592279fc78222";
5738 sha1 = "108f74b3f2fcdaf891a2ffa3ea4592279fc78222";
5730 };
5739 };
5731 };
5740 };
5732 "postcss-ordered-values-2.2.3" = {
5741 "postcss-ordered-values-2.2.3" = {
5733 name = "postcss-ordered-values";
5742 name = "postcss-ordered-values";
5734 packageName = "postcss-ordered-values";
5743 packageName = "postcss-ordered-values";
5735 version = "2.2.3";
5744 version = "2.2.3";
5736 src = fetchurl {
5745 src = fetchurl {
5737 url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz";
5746 url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz";
5738 sha1 = "eec6c2a67b6c412a8db2042e77fe8da43f95c11d";
5747 sha1 = "eec6c2a67b6c412a8db2042e77fe8da43f95c11d";
5739 };
5748 };
5740 };
5749 };
5741 "postcss-reduce-idents-2.4.0" = {
5750 "postcss-reduce-idents-2.4.0" = {
5742 name = "postcss-reduce-idents";
5751 name = "postcss-reduce-idents";
5743 packageName = "postcss-reduce-idents";
5752 packageName = "postcss-reduce-idents";
5744 version = "2.4.0";
5753 version = "2.4.0";
5745 src = fetchurl {
5754 src = fetchurl {
5746 url = "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz";
5755 url = "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz";
5747 sha1 = "c2c6d20cc958284f6abfbe63f7609bf409059ad3";
5756 sha1 = "c2c6d20cc958284f6abfbe63f7609bf409059ad3";
5748 };
5757 };
5749 };
5758 };
5750 "postcss-reduce-initial-1.0.1" = {
5759 "postcss-reduce-initial-1.0.1" = {
5751 name = "postcss-reduce-initial";
5760 name = "postcss-reduce-initial";
5752 packageName = "postcss-reduce-initial";
5761 packageName = "postcss-reduce-initial";
5753 version = "1.0.1";
5762 version = "1.0.1";
5754 src = fetchurl {
5763 src = fetchurl {
5755 url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz";
5764 url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz";
5756 sha1 = "68f80695f045d08263a879ad240df8dd64f644ea";
5765 sha1 = "68f80695f045d08263a879ad240df8dd64f644ea";
5757 };
5766 };
5758 };
5767 };
5759 "postcss-reduce-transforms-1.0.4" = {
5768 "postcss-reduce-transforms-1.0.4" = {
5760 name = "postcss-reduce-transforms";
5769 name = "postcss-reduce-transforms";
5761 packageName = "postcss-reduce-transforms";
5770 packageName = "postcss-reduce-transforms";
5762 version = "1.0.4";
5771 version = "1.0.4";
5763 src = fetchurl {
5772 src = fetchurl {
5764 url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz";
5773 url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz";
5765 sha1 = "ff76f4d8212437b31c298a42d2e1444025771ae1";
5774 sha1 = "ff76f4d8212437b31c298a42d2e1444025771ae1";
5766 };
5775 };
5767 };
5776 };
5768 "postcss-selector-parser-2.2.3" = {
5777 "postcss-selector-parser-2.2.3" = {
5769 name = "postcss-selector-parser";
5778 name = "postcss-selector-parser";
5770 packageName = "postcss-selector-parser";
5779 packageName = "postcss-selector-parser";
5771 version = "2.2.3";
5780 version = "2.2.3";
5772 src = fetchurl {
5781 src = fetchurl {
5773 url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz";
5782 url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz";
5774 sha1 = "f9437788606c3c9acee16ffe8d8b16297f27bb90";
5783 sha1 = "f9437788606c3c9acee16ffe8d8b16297f27bb90";
5775 };
5784 };
5776 };
5785 };
5777 "postcss-svgo-2.1.6" = {
5786 "postcss-svgo-2.1.6" = {
5778 name = "postcss-svgo";
5787 name = "postcss-svgo";
5779 packageName = "postcss-svgo";
5788 packageName = "postcss-svgo";
5780 version = "2.1.6";
5789 version = "2.1.6";
5781 src = fetchurl {
5790 src = fetchurl {
5782 url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz";
5791 url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz";
5783 sha1 = "b6df18aa613b666e133f08adb5219c2684ac108d";
5792 sha1 = "b6df18aa613b666e133f08adb5219c2684ac108d";
5784 };
5793 };
5785 };
5794 };
5786 "postcss-unique-selectors-2.0.2" = {
5795 "postcss-unique-selectors-2.0.2" = {
5787 name = "postcss-unique-selectors";
5796 name = "postcss-unique-selectors";
5788 packageName = "postcss-unique-selectors";
5797 packageName = "postcss-unique-selectors";
5789 version = "2.0.2";
5798 version = "2.0.2";
5790 src = fetchurl {
5799 src = fetchurl {
5791 url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz";
5800 url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz";
5792 sha1 = "981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d";
5801 sha1 = "981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d";
5793 };
5802 };
5794 };
5803 };
5795 "postcss-value-parser-3.3.1" = {
5804 "postcss-value-parser-3.3.1" = {
5796 name = "postcss-value-parser";
5805 name = "postcss-value-parser";
5797 packageName = "postcss-value-parser";
5806 packageName = "postcss-value-parser";
5798 version = "3.3.1";
5807 version = "3.3.1";
5799 src = fetchurl {
5808 src = fetchurl {
5800 url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz";
5809 url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz";
5801 sha512 = "pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==";
5810 sha512 = "pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==";
5802 };
5811 };
5803 };
5812 };
5804 "postcss-zindex-2.2.0" = {
5813 "postcss-zindex-2.2.0" = {
5805 name = "postcss-zindex";
5814 name = "postcss-zindex";
5806 packageName = "postcss-zindex";
5815 packageName = "postcss-zindex";
5807 version = "2.2.0";
5816 version = "2.2.0";
5808 src = fetchurl {
5817 src = fetchurl {
5809 url = "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz";
5818 url = "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz";
5810 sha1 = "d2109ddc055b91af67fc4cb3b025946639d2af22";
5819 sha1 = "d2109ddc055b91af67fc4cb3b025946639d2af22";
5811 };
5820 };
5812 };
5821 };
5813 "prepend-http-1.0.4" = {
5822 "prepend-http-1.0.4" = {
5814 name = "prepend-http";
5823 name = "prepend-http";
5815 packageName = "prepend-http";
5824 packageName = "prepend-http";
5816 version = "1.0.4";
5825 version = "1.0.4";
5817 src = fetchurl {
5826 src = fetchurl {
5818 url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz";
5827 url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz";
5819 sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc";
5828 sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc";
5820 };
5829 };
5821 };
5830 };
5822 "pretty-bytes-3.0.1" = {
5831 "pretty-bytes-3.0.1" = {
5823 name = "pretty-bytes";
5832 name = "pretty-bytes";
5824 packageName = "pretty-bytes";
5833 packageName = "pretty-bytes";
5825 version = "3.0.1";
5834 version = "3.0.1";
5826 src = fetchurl {
5835 src = fetchurl {
5827 url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz";
5836 url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz";
5828 sha1 = "27d0008d778063a0b4811bb35c79f1bd5d5fbccf";
5837 sha1 = "27d0008d778063a0b4811bb35c79f1bd5d5fbccf";
5829 };
5838 };
5830 };
5839 };
5831 "pretty-error-2.1.1" = {
5840 "pretty-error-2.1.1" = {
5832 name = "pretty-error";
5841 name = "pretty-error";
5833 packageName = "pretty-error";
5842 packageName = "pretty-error";
5834 version = "2.1.1";
5843 version = "2.1.1";
5835 src = fetchurl {
5844 src = fetchurl {
5836 url = "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz";
5845 url = "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz";
5837 sha1 = "5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3";
5846 sha1 = "5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3";
5838 };
5847 };
5839 };
5848 };
5840 "private-0.1.8" = {
5849 "private-0.1.8" = {
5841 name = "private";
5850 name = "private";
5842 packageName = "private";
5851 packageName = "private";
5843 version = "0.1.8";
5852 version = "0.1.8";
5844 src = fetchurl {
5853 src = fetchurl {
5845 url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz";
5854 url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz";
5846 sha512 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==";
5855 sha512 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==";
5847 };
5856 };
5848 };
5857 };
5849 "process-0.11.10" = {
5858 "process-0.11.10" = {
5850 name = "process";
5859 name = "process";
5851 packageName = "process";
5860 packageName = "process";
5852 version = "0.11.10";
5861 version = "0.11.10";
5853 src = fetchurl {
5862 src = fetchurl {
5854 url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz";
5863 url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz";
5855 sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
5864 sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
5856 };
5865 };
5857 };
5866 };
5858 "process-nextick-args-2.0.1" = {
5867 "process-nextick-args-2.0.1" = {
5859 name = "process-nextick-args";
5868 name = "process-nextick-args";
5860 packageName = "process-nextick-args";
5869 packageName = "process-nextick-args";
5861 version = "2.0.1";
5870 version = "2.0.1";
5862 src = fetchurl {
5871 src = fetchurl {
5863 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz";
5872 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz";
5864 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==";
5873 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==";
5865 };
5874 };
5866 };
5875 };
5867 "promise-7.3.1" = {
5876 "promise-7.3.1" = {
5868 name = "promise";
5877 name = "promise";
5869 packageName = "promise";
5878 packageName = "promise";
5870 version = "7.3.1";
5879 version = "7.3.1";
5871 src = fetchurl {
5880 src = fetchurl {
5872 url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz";
5881 url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz";
5873 sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==";
5882 sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==";
5874 };
5883 };
5875 };
5884 };
5876 "promise-inflight-1.0.1" = {
5885 "promise-inflight-1.0.1" = {
5877 name = "promise-inflight";
5886 name = "promise-inflight";
5878 packageName = "promise-inflight";
5887 packageName = "promise-inflight";
5879 version = "1.0.1";
5888 version = "1.0.1";
5880 src = fetchurl {
5889 src = fetchurl {
5881 url = "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz";
5890 url = "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz";
5882 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
5891 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
5883 };
5892 };
5884 };
5893 };
5885 "prr-1.0.1" = {
5894 "prr-1.0.1" = {
5886 name = "prr";
5895 name = "prr";
5887 packageName = "prr";
5896 packageName = "prr";
5888 version = "1.0.1";
5897 version = "1.0.1";
5889 src = fetchurl {
5898 src = fetchurl {
5890 url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz";
5899 url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz";
5891 sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
5900 sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
5892 };
5901 };
5893 };
5902 };
5894 "pseudomap-1.0.2" = {
5903 "pseudomap-1.0.2" = {
5895 name = "pseudomap";
5904 name = "pseudomap";
5896 packageName = "pseudomap";
5905 packageName = "pseudomap";
5897 version = "1.0.2";
5906 version = "1.0.2";
5898 src = fetchurl {
5907 src = fetchurl {
5899 url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
5908 url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
5900 sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
5909 sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
5901 };
5910 };
5902 };
5911 };
5903 "public-encrypt-4.0.3" = {
5912 "public-encrypt-4.0.3" = {
5904 name = "public-encrypt";
5913 name = "public-encrypt";
5905 packageName = "public-encrypt";
5914 packageName = "public-encrypt";
5906 version = "4.0.3";
5915 version = "4.0.3";
5907 src = fetchurl {
5916 src = fetchurl {
5908 url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz";
5917 url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz";
5909 sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==";
5918 sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==";
5910 };
5919 };
5911 };
5920 };
5912 "pump-2.0.1" = {
5921 "pump-2.0.1" = {
5913 name = "pump";
5922 name = "pump";
5914 packageName = "pump";
5923 packageName = "pump";
5915 version = "2.0.1";
5924 version = "2.0.1";
5916 src = fetchurl {
5925 src = fetchurl {
5917 url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz";
5926 url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz";
5918 sha512 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==";
5927 sha512 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==";
5919 };
5928 };
5920 };
5929 };
5921 "pump-3.0.0" = {
5930 "pump-3.0.0" = {
5922 name = "pump";
5931 name = "pump";
5923 packageName = "pump";
5932 packageName = "pump";
5924 version = "3.0.0";
5933 version = "3.0.0";
5925 src = fetchurl {
5934 src = fetchurl {
5926 url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz";
5935 url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz";
5927 sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==";
5936 sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==";
5928 };
5937 };
5929 };
5938 };
5930 "pumpify-1.5.1" = {
5939 "pumpify-1.5.1" = {
5931 name = "pumpify";
5940 name = "pumpify";
5932 packageName = "pumpify";
5941 packageName = "pumpify";
5933 version = "1.5.1";
5942 version = "1.5.1";
5934 src = fetchurl {
5943 src = fetchurl {
5935 url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz";
5944 url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz";
5936 sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==";
5945 sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==";
5937 };
5946 };
5938 };
5947 };
5939 "punycode-1.3.2" = {
5948 "punycode-1.3.2" = {
5940 name = "punycode";
5949 name = "punycode";
5941 packageName = "punycode";
5950 packageName = "punycode";
5942 version = "1.3.2";
5951 version = "1.3.2";
5943 src = fetchurl {
5952 src = fetchurl {
5944 url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz";
5953 url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz";
5945 sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
5954 sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
5946 };
5955 };
5947 };
5956 };
5948 "punycode-1.4.1" = {
5957 "punycode-1.4.1" = {
5949 name = "punycode";
5958 name = "punycode";
5950 packageName = "punycode";
5959 packageName = "punycode";
5951 version = "1.4.1";
5960 version = "1.4.1";
5952 src = fetchurl {
5961 src = fetchurl {
5953 url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
5962 url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
5954 sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
5963 sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
5955 };
5964 };
5956 };
5965 };
5957 "punycode-2.1.1" = {
5966 "punycode-2.1.1" = {
5958 name = "punycode";
5967 name = "punycode";
5959 packageName = "punycode";
5968 packageName = "punycode";
5960 version = "2.1.1";
5969 version = "2.1.1";
5961 src = fetchurl {
5970 src = fetchurl {
5962 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
5971 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
5963 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
5972 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
5964 };
5973 };
5965 };
5974 };
5966 "q-1.5.1" = {
5975 "q-1.5.1" = {
5967 name = "q";
5976 name = "q";
5968 packageName = "q";
5977 packageName = "q";
5969 version = "1.5.1";
5978 version = "1.5.1";
5970 src = fetchurl {
5979 src = fetchurl {
5971 url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz";
5980 url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz";
5972 sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7";
5981 sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7";
5973 };
5982 };
5974 };
5983 };
5975 "qrious-4.0.2" = {
5984 "qrious-4.0.2" = {
5976 name = "qrious";
5985 name = "qrious";
5977 packageName = "qrious";
5986 packageName = "qrious";
5978 version = "4.0.2";
5987 version = "4.0.2";
5979 src = fetchurl {
5988 src = fetchurl {
5980 url = "https://registry.npmjs.org/qrious/-/qrious-4.0.2.tgz";
5989 url = "https://registry.npmjs.org/qrious/-/qrious-4.0.2.tgz";
5981 sha512 = "xWPJIrK1zu5Ypn898fBp8RHkT/9ibquV2Kv24S/JY9VYEhMBMKur1gHVsOiNUh7PHP9uCgejjpZUHUIXXKoU/g==";
5990 sha512 = "xWPJIrK1zu5Ypn898fBp8RHkT/9ibquV2Kv24S/JY9VYEhMBMKur1gHVsOiNUh7PHP9uCgejjpZUHUIXXKoU/g==";
5982 };
5991 };
5983 };
5992 };
5984 "qs-0.5.6" = {
5993 "qs-0.5.6" = {
5985 name = "qs";
5994 name = "qs";
5986 packageName = "qs";
5995 packageName = "qs";
5987 version = "0.5.6";
5996 version = "0.5.6";
5988 src = fetchurl {
5997 src = fetchurl {
5989 url = "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz";
5998 url = "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz";
5990 sha1 = "31b1ad058567651c526921506b9a8793911a0384";
5999 sha1 = "31b1ad058567651c526921506b9a8793911a0384";
5991 };
6000 };
5992 };
6001 };
5993 "qs-6.4.0" = {
6002 "qs-6.4.0" = {
5994 name = "qs";
6003 name = "qs";
5995 packageName = "qs";
6004 packageName = "qs";
5996 version = "6.4.0";
6005 version = "6.4.0";
5997 src = fetchurl {
6006 src = fetchurl {
5998 url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
6007 url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
5999 sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
6008 sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
6000 };
6009 };
6001 };
6010 };
6002 "query-string-4.3.4" = {
6011 "query-string-4.3.4" = {
6003 name = "query-string";
6012 name = "query-string";
6004 packageName = "query-string";
6013 packageName = "query-string";
6005 version = "4.3.4";
6014 version = "4.3.4";
6006 src = fetchurl {
6015 src = fetchurl {
6007 url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz";
6016 url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz";
6008 sha1 = "bbb693b9ca915c232515b228b1a02b609043dbeb";
6017 sha1 = "bbb693b9ca915c232515b228b1a02b609043dbeb";
6009 };
6018 };
6010 };
6019 };
6011 "querystring-0.2.0" = {
6020 "querystring-0.2.0" = {
6012 name = "querystring";
6021 name = "querystring";
6013 packageName = "querystring";
6022 packageName = "querystring";
6014 version = "0.2.0";
6023 version = "0.2.0";
6015 src = fetchurl {
6024 src = fetchurl {
6016 url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz";
6025 url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz";
6017 sha1 = "b209849203bb25df820da756e747005878521620";
6026 sha1 = "b209849203bb25df820da756e747005878521620";
6018 };
6027 };
6019 };
6028 };
6020 "querystring-es3-0.2.1" = {
6029 "querystring-es3-0.2.1" = {
6021 name = "querystring-es3";
6030 name = "querystring-es3";
6022 packageName = "querystring-es3";
6031 packageName = "querystring-es3";
6023 version = "0.2.1";
6032 version = "0.2.1";
6024 src = fetchurl {
6033 src = fetchurl {
6025 url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz";
6034 url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz";
6026 sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
6035 sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
6027 };
6036 };
6028 };
6037 };
6029 "randombytes-2.1.0" = {
6038 "randombytes-2.1.0" = {
6030 name = "randombytes";
6039 name = "randombytes";
6031 packageName = "randombytes";
6040 packageName = "randombytes";
6032 version = "2.1.0";
6041 version = "2.1.0";
6033 src = fetchurl {
6042 src = fetchurl {
6034 url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz";
6043 url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz";
6035 sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==";
6044 sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==";
6036 };
6045 };
6037 };
6046 };
6038 "randomfill-1.0.4" = {
6047 "randomfill-1.0.4" = {
6039 name = "randomfill";
6048 name = "randomfill";
6040 packageName = "randomfill";
6049 packageName = "randomfill";
6041 version = "1.0.4";
6050 version = "1.0.4";
6042 src = fetchurl {
6051 src = fetchurl {
6043 url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz";
6052 url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz";
6044 sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==";
6053 sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==";
6045 };
6054 };
6046 };
6055 };
6047 "raw-loader-1.0.0-beta.0" = {
6056 "raw-loader-1.0.0-beta.0" = {
6048 name = "raw-loader";
6057 name = "raw-loader";
6049 packageName = "raw-loader";
6058 packageName = "raw-loader";
6050 version = "1.0.0-beta.0";
6059 version = "1.0.0-beta.0";
6051 src = fetchurl {
6060 src = fetchurl {
6052 url = "https://registry.npmjs.org/raw-loader/-/raw-loader-1.0.0-beta.0.tgz";
6061 url = "https://registry.npmjs.org/raw-loader/-/raw-loader-1.0.0-beta.0.tgz";
6053 sha512 = "guh4ZNAf96f+CDwfnPbFeFiO5YcfPllUmZrgcoOmx6iqZPq+DcKbnyjPuBxEAtQ3tqqd++qChsQfQB+VBzFT0Q==";
6062 sha512 = "guh4ZNAf96f+CDwfnPbFeFiO5YcfPllUmZrgcoOmx6iqZPq+DcKbnyjPuBxEAtQ3tqqd++qChsQfQB+VBzFT0Q==";
6054 };
6063 };
6055 };
6064 };
6056 "readable-stream-1.1.14" = {
6065 "readable-stream-1.1.14" = {
6057 name = "readable-stream";
6066 name = "readable-stream";
6058 packageName = "readable-stream";
6067 packageName = "readable-stream";
6059 version = "1.1.14";
6068 version = "1.1.14";
6060 src = fetchurl {
6069 src = fetchurl {
6061 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
6070 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
6062 sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
6071 sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
6063 };
6072 };
6064 };
6073 };
6065 "readable-stream-2.3.7" = {
6074 "readable-stream-2.3.7" = {
6066 name = "readable-stream";
6075 name = "readable-stream";
6067 packageName = "readable-stream";
6076 packageName = "readable-stream";
6068 version = "2.3.7";
6077 version = "2.3.7";
6069 src = fetchurl {
6078 src = fetchurl {
6070 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz";
6079 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz";
6071 sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==";
6080 sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==";
6072 };
6081 };
6073 };
6082 };
6083 "readable-stream-3.6.0" = {
6084 name = "readable-stream";
6085 packageName = "readable-stream";
6086 version = "3.6.0";
6087 src = fetchurl {
6088 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz";
6089 sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==";
6090 };
6091 };
6074 "readdirp-2.2.1" = {
6092 "readdirp-2.2.1" = {
6075 name = "readdirp";
6093 name = "readdirp";
6076 packageName = "readdirp";
6094 packageName = "readdirp";
6077 version = "2.2.1";
6095 version = "2.2.1";
6078 src = fetchurl {
6096 src = fetchurl {
6079 url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz";
6097 url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz";
6080 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==";
6098 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==";
6081 };
6099 };
6082 };
6100 };
6083 "recast-0.11.23" = {
6101 "recast-0.11.23" = {
6084 name = "recast";
6102 name = "recast";
6085 packageName = "recast";
6103 packageName = "recast";
6086 version = "0.11.23";
6104 version = "0.11.23";
6087 src = fetchurl {
6105 src = fetchurl {
6088 url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
6106 url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
6089 sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
6107 sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
6090 };
6108 };
6091 };
6109 };
6092 "rechoir-0.6.2" = {
6110 "rechoir-0.6.2" = {
6093 name = "rechoir";
6111 name = "rechoir";
6094 packageName = "rechoir";
6112 packageName = "rechoir";
6095 version = "0.6.2";
6113 version = "0.6.2";
6096 src = fetchurl {
6114 src = fetchurl {
6097 url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
6115 url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
6098 sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
6116 sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
6099 };
6117 };
6100 };
6118 };
6101 "reduce-css-calc-1.3.0" = {
6119 "reduce-css-calc-1.3.0" = {
6102 name = "reduce-css-calc";
6120 name = "reduce-css-calc";
6103 packageName = "reduce-css-calc";
6121 packageName = "reduce-css-calc";
6104 version = "1.3.0";
6122 version = "1.3.0";
6105 src = fetchurl {
6123 src = fetchurl {
6106 url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz";
6124 url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz";
6107 sha1 = "747c914e049614a4c9cfbba629871ad1d2927716";
6125 sha1 = "747c914e049614a4c9cfbba629871ad1d2927716";
6108 };
6126 };
6109 };
6127 };
6110 "reduce-function-call-1.0.3" = {
6128 "reduce-function-call-1.0.3" = {
6111 name = "reduce-function-call";
6129 name = "reduce-function-call";
6112 packageName = "reduce-function-call";
6130 packageName = "reduce-function-call";
6113 version = "1.0.3";
6131 version = "1.0.3";
6114 src = fetchurl {
6132 src = fetchurl {
6115 url = "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz";
6133 url = "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz";
6116 sha512 = "Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==";
6134 sha512 = "Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==";
6117 };
6135 };
6118 };
6136 };
6119 "regenerate-1.4.0" = {
6137 "regenerate-1.4.0" = {
6120 name = "regenerate";
6138 name = "regenerate";
6121 packageName = "regenerate";
6139 packageName = "regenerate";
6122 version = "1.4.0";
6140 version = "1.4.0";
6123 src = fetchurl {
6141 src = fetchurl {
6124 url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz";
6142 url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz";
6125 sha512 = "1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==";
6143 sha512 = "1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==";
6126 };
6144 };
6127 };
6145 };
6128 "regenerate-unicode-properties-8.2.0" = {
6146 "regenerate-unicode-properties-8.2.0" = {
6129 name = "regenerate-unicode-properties";
6147 name = "regenerate-unicode-properties";
6130 packageName = "regenerate-unicode-properties";
6148 packageName = "regenerate-unicode-properties";
6131 version = "8.2.0";
6149 version = "8.2.0";
6132 src = fetchurl {
6150 src = fetchurl {
6133 url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz";
6151 url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz";
6134 sha512 = "F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==";
6152 sha512 = "F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==";
6135 };
6153 };
6136 };
6154 };
6137 "regenerator-runtime-0.11.1" = {
6155 "regenerator-runtime-0.11.1" = {
6138 name = "regenerator-runtime";
6156 name = "regenerator-runtime";
6139 packageName = "regenerator-runtime";
6157 packageName = "regenerator-runtime";
6140 version = "0.11.1";
6158 version = "0.11.1";
6141 src = fetchurl {
6159 src = fetchurl {
6142 url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
6160 url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
6143 sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==";
6161 sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==";
6144 };
6162 };
6145 };
6163 };
6146 "regenerator-transform-0.10.1" = {
6164 "regenerator-transform-0.10.1" = {
6147 name = "regenerator-transform";
6165 name = "regenerator-transform";
6148 packageName = "regenerator-transform";
6166 packageName = "regenerator-transform";
6149 version = "0.10.1";
6167 version = "0.10.1";
6150 src = fetchurl {
6168 src = fetchurl {
6151 url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz";
6169 url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz";
6152 sha512 = "PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==";
6170 sha512 = "PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==";
6153 };
6171 };
6154 };
6172 };
6155 "regex-not-1.0.2" = {
6173 "regex-not-1.0.2" = {
6156 name = "regex-not";
6174 name = "regex-not";
6157 packageName = "regex-not";
6175 packageName = "regex-not";
6158 version = "1.0.2";
6176 version = "1.0.2";
6159 src = fetchurl {
6177 src = fetchurl {
6160 url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
6178 url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
6161 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
6179 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
6162 };
6180 };
6163 };
6181 };
6164 "regexpu-core-2.0.0" = {
6182 "regexpu-core-2.0.0" = {
6165 name = "regexpu-core";
6183 name = "regexpu-core";
6166 packageName = "regexpu-core";
6184 packageName = "regexpu-core";
6167 version = "2.0.0";
6185 version = "2.0.0";
6168 src = fetchurl {
6186 src = fetchurl {
6169 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz";
6187 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz";
6170 sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240";
6188 sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240";
6171 };
6189 };
6172 };
6190 };
6173 "regexpu-core-4.7.0" = {
6191 "regexpu-core-4.7.0" = {
6174 name = "regexpu-core";
6192 name = "regexpu-core";
6175 packageName = "regexpu-core";
6193 packageName = "regexpu-core";
6176 version = "4.7.0";
6194 version = "4.7.0";
6177 src = fetchurl {
6195 src = fetchurl {
6178 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz";
6196 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz";
6179 sha512 = "TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==";
6197 sha512 = "TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==";
6180 };
6198 };
6181 };
6199 };
6182 "regjsgen-0.2.0" = {
6200 "regjsgen-0.2.0" = {
6183 name = "regjsgen";
6201 name = "regjsgen";
6184 packageName = "regjsgen";
6202 packageName = "regjsgen";
6185 version = "0.2.0";
6203 version = "0.2.0";
6186 src = fetchurl {
6204 src = fetchurl {
6187 url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz";
6205 url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz";
6188 sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7";
6206 sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7";
6189 };
6207 };
6190 };
6208 };
6191 "regjsgen-0.5.1" = {
6209 "regjsgen-0.5.1" = {
6192 name = "regjsgen";
6210 name = "regjsgen";
6193 packageName = "regjsgen";
6211 packageName = "regjsgen";
6194 version = "0.5.1";
6212 version = "0.5.1";
6195 src = fetchurl {
6213 src = fetchurl {
6196 url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz";
6214 url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz";
6197 sha512 = "5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==";
6215 sha512 = "5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==";
6198 };
6216 };
6199 };
6217 };
6200 "regjsparser-0.1.5" = {
6218 "regjsparser-0.1.5" = {
6201 name = "regjsparser";
6219 name = "regjsparser";
6202 packageName = "regjsparser";
6220 packageName = "regjsparser";
6203 version = "0.1.5";
6221 version = "0.1.5";
6204 src = fetchurl {
6222 src = fetchurl {
6205 url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz";
6223 url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz";
6206 sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c";
6224 sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c";
6207 };
6225 };
6208 };
6226 };
6209 "regjsparser-0.6.4" = {
6227 "regjsparser-0.6.4" = {
6210 name = "regjsparser";
6228 name = "regjsparser";
6211 packageName = "regjsparser";
6229 packageName = "regjsparser";
6212 version = "0.6.4";
6230 version = "0.6.4";
6213 src = fetchurl {
6231 src = fetchurl {
6214 url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz";
6232 url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz";
6215 sha512 = "64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==";
6233 sha512 = "64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==";
6216 };
6234 };
6217 };
6235 };
6218 "relateurl-0.2.7" = {
6236 "relateurl-0.2.7" = {
6219 name = "relateurl";
6237 name = "relateurl";
6220 packageName = "relateurl";
6238 packageName = "relateurl";
6221 version = "0.2.7";
6239 version = "0.2.7";
6222 src = fetchurl {
6240 src = fetchurl {
6223 url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz";
6241 url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz";
6224 sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9";
6242 sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9";
6225 };
6243 };
6226 };
6244 };
6227 "remove-trailing-separator-1.1.0" = {
6245 "remove-trailing-separator-1.1.0" = {
6228 name = "remove-trailing-separator";
6246 name = "remove-trailing-separator";
6229 packageName = "remove-trailing-separator";
6247 packageName = "remove-trailing-separator";
6230 version = "1.1.0";
6248 version = "1.1.0";
6231 src = fetchurl {
6249 src = fetchurl {
6232 url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
6250 url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
6233 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
6251 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
6234 };
6252 };
6235 };
6253 };
6236 "renderkid-2.0.3" = {
6254 "renderkid-2.0.3" = {
6237 name = "renderkid";
6255 name = "renderkid";
6238 packageName = "renderkid";
6256 packageName = "renderkid";
6239 version = "2.0.3";
6257 version = "2.0.3";
6240 src = fetchurl {
6258 src = fetchurl {
6241 url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz";
6259 url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz";
6242 sha512 = "z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==";
6260 sha512 = "z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==";
6243 };
6261 };
6244 };
6262 };
6245 "repeat-element-1.1.3" = {
6263 "repeat-element-1.1.3" = {
6246 name = "repeat-element";
6264 name = "repeat-element";
6247 packageName = "repeat-element";
6265 packageName = "repeat-element";
6248 version = "1.1.3";
6266 version = "1.1.3";
6249 src = fetchurl {
6267 src = fetchurl {
6250 url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
6268 url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
6251 sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
6269 sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
6252 };
6270 };
6253 };
6271 };
6254 "repeat-string-1.6.1" = {
6272 "repeat-string-1.6.1" = {
6255 name = "repeat-string";
6273 name = "repeat-string";
6256 packageName = "repeat-string";
6274 packageName = "repeat-string";
6257 version = "1.6.1";
6275 version = "1.6.1";
6258 src = fetchurl {
6276 src = fetchurl {
6259 url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
6277 url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
6260 sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
6278 sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
6261 };
6279 };
6262 };
6280 };
6263 "repeating-2.0.1" = {
6281 "repeating-2.0.1" = {
6264 name = "repeating";
6282 name = "repeating";
6265 packageName = "repeating";
6283 packageName = "repeating";
6266 version = "2.0.1";
6284 version = "2.0.1";
6267 src = fetchurl {
6285 src = fetchurl {
6268 url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz";
6286 url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz";
6269 sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
6287 sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
6270 };
6288 };
6271 };
6289 };
6272 "request-2.81.0" = {
6290 "request-2.81.0" = {
6273 name = "request";
6291 name = "request";
6274 packageName = "request";
6292 packageName = "request";
6275 version = "2.81.0";
6293 version = "2.81.0";
6276 src = fetchurl {
6294 src = fetchurl {
6277 url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
6295 url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
6278 sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
6296 sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
6279 };
6297 };
6280 };
6298 };
6281 "require-directory-2.1.1" = {
6299 "require-directory-2.1.1" = {
6282 name = "require-directory";
6300 name = "require-directory";
6283 packageName = "require-directory";
6301 packageName = "require-directory";
6284 version = "2.1.1";
6302 version = "2.1.1";
6285 src = fetchurl {
6303 src = fetchurl {
6286 url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
6304 url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
6287 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
6305 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
6288 };
6306 };
6289 };
6307 };
6290 "require-main-filename-1.0.1" = {
6308 "require-main-filename-1.0.1" = {
6291 name = "require-main-filename";
6309 name = "require-main-filename";
6292 packageName = "require-main-filename";
6310 packageName = "require-main-filename";
6293 version = "1.0.1";
6311 version = "1.0.1";
6294 src = fetchurl {
6312 src = fetchurl {
6295 url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
6313 url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
6296 sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
6314 sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
6297 };
6315 };
6298 };
6316 };
6299 "resolve-1.16.0" = {
6317 "resolve-1.17.0" = {
6300 name = "resolve";
6318 name = "resolve";
6301 packageName = "resolve";
6319 packageName = "resolve";
6302 version = "1.16.0";
6320 version = "1.17.0";
6303 src = fetchurl {
6321 src = fetchurl {
6304 url = "https://registry.npmjs.org/resolve/-/resolve-1.16.0.tgz";
6322 url = "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz";
6305 sha512 = "LarL/PIKJvc09k1jaeT4kQb/8/7P+qV4qSnN2K80AES+OHdfZELAKVOBjxsvtToT/uLOfFbvYvKfZmV8cee7nA==";
6323 sha512 = "ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==";
6306 };
6324 };
6307 };
6325 };
6308 "resolve-cwd-2.0.0" = {
6326 "resolve-cwd-2.0.0" = {
6309 name = "resolve-cwd";
6327 name = "resolve-cwd";
6310 packageName = "resolve-cwd";
6328 packageName = "resolve-cwd";
6311 version = "2.0.0";
6329 version = "2.0.0";
6312 src = fetchurl {
6330 src = fetchurl {
6313 url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
6331 url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
6314 sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
6332 sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
6315 };
6333 };
6316 };
6334 };
6317 "resolve-dir-1.0.1" = {
6335 "resolve-dir-1.0.1" = {
6318 name = "resolve-dir";
6336 name = "resolve-dir";
6319 packageName = "resolve-dir";
6337 packageName = "resolve-dir";
6320 version = "1.0.1";
6338 version = "1.0.1";
6321 src = fetchurl {
6339 src = fetchurl {
6322 url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
6340 url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
6323 sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
6341 sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
6324 };
6342 };
6325 };
6343 };
6326 "resolve-from-3.0.0" = {
6344 "resolve-from-3.0.0" = {
6327 name = "resolve-from";
6345 name = "resolve-from";
6328 packageName = "resolve-from";
6346 packageName = "resolve-from";
6329 version = "3.0.0";
6347 version = "3.0.0";
6330 src = fetchurl {
6348 src = fetchurl {
6331 url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz";
6349 url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz";
6332 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
6350 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
6333 };
6351 };
6334 };
6352 };
6335 "resolve-url-0.2.1" = {
6353 "resolve-url-0.2.1" = {
6336 name = "resolve-url";
6354 name = "resolve-url";
6337 packageName = "resolve-url";
6355 packageName = "resolve-url";
6338 version = "0.2.1";
6356 version = "0.2.1";
6339 src = fetchurl {
6357 src = fetchurl {
6340 url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
6358 url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
6341 sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
6359 sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
6342 };
6360 };
6343 };
6361 };
6344 "ret-0.1.15" = {
6362 "ret-0.1.15" = {
6345 name = "ret";
6363 name = "ret";
6346 packageName = "ret";
6364 packageName = "ret";
6347 version = "0.1.15";
6365 version = "0.1.15";
6348 src = fetchurl {
6366 src = fetchurl {
6349 url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
6367 url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
6350 sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
6368 sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
6351 };
6369 };
6352 };
6370 };
6353 "right-align-0.1.3" = {
6371 "right-align-0.1.3" = {
6354 name = "right-align";
6372 name = "right-align";
6355 packageName = "right-align";
6373 packageName = "right-align";
6356 version = "0.1.3";
6374 version = "0.1.3";
6357 src = fetchurl {
6375 src = fetchurl {
6358 url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz";
6376 url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz";
6359 sha1 = "61339b722fe6a3515689210d24e14c96148613ef";
6377 sha1 = "61339b722fe6a3515689210d24e14c96148613ef";
6360 };
6378 };
6361 };
6379 };
6362 "rimraf-2.2.8" = {
6380 "rimraf-2.2.8" = {
6363 name = "rimraf";
6381 name = "rimraf";
6364 packageName = "rimraf";
6382 packageName = "rimraf";
6365 version = "2.2.8";
6383 version = "2.2.8";
6366 src = fetchurl {
6384 src = fetchurl {
6367 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
6385 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
6368 sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
6386 sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
6369 };
6387 };
6370 };
6388 };
6371 "rimraf-2.7.1" = {
6389 "rimraf-2.7.1" = {
6372 name = "rimraf";
6390 name = "rimraf";
6373 packageName = "rimraf";
6391 packageName = "rimraf";
6374 version = "2.7.1";
6392 version = "2.7.1";
6375 src = fetchurl {
6393 src = fetchurl {
6376 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz";
6394 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz";
6377 sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==";
6395 sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==";
6378 };
6396 };
6379 };
6397 };
6380 "ripemd160-2.0.2" = {
6398 "ripemd160-2.0.2" = {
6381 name = "ripemd160";
6399 name = "ripemd160";
6382 packageName = "ripemd160";
6400 packageName = "ripemd160";
6383 version = "2.0.2";
6401 version = "2.0.2";
6384 src = fetchurl {
6402 src = fetchurl {
6385 url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz";
6403 url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz";
6386 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==";
6404 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==";
6387 };
6405 };
6388 };
6406 };
6389 "run-queue-1.0.3" = {
6407 "run-queue-1.0.3" = {
6390 name = "run-queue";
6408 name = "run-queue";
6391 packageName = "run-queue";
6409 packageName = "run-queue";
6392 version = "1.0.3";
6410 version = "1.0.3";
6393 src = fetchurl {
6411 src = fetchurl {
6394 url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz";
6412 url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz";
6395 sha1 = "e848396f057d223f24386924618e25694161ec47";
6413 sha1 = "e848396f057d223f24386924618e25694161ec47";
6396 };
6414 };
6397 };
6415 };
6398 "safe-buffer-5.1.2" = {
6416 "safe-buffer-5.1.2" = {
6399 name = "safe-buffer";
6417 name = "safe-buffer";
6400 packageName = "safe-buffer";
6418 packageName = "safe-buffer";
6401 version = "5.1.2";
6419 version = "5.1.2";
6402 src = fetchurl {
6420 src = fetchurl {
6403 url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
6421 url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
6404 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
6422 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
6405 };
6423 };
6406 };
6424 };
6407 "safe-buffer-5.2.0" = {
6425 "safe-buffer-5.2.1" = {
6408 name = "safe-buffer";
6426 name = "safe-buffer";
6409 packageName = "safe-buffer";
6427 packageName = "safe-buffer";
6410 version = "5.2.0";
6428 version = "5.2.1";
6411 src = fetchurl {
6429 src = fetchurl {
6412 url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz";
6430 url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz";
6413 sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==";
6431 sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==";
6414 };
6432 };
6415 };
6433 };
6416 "safe-regex-1.1.0" = {
6434 "safe-regex-1.1.0" = {
6417 name = "safe-regex";
6435 name = "safe-regex";
6418 packageName = "safe-regex";
6436 packageName = "safe-regex";
6419 version = "1.1.0";
6437 version = "1.1.0";
6420 src = fetchurl {
6438 src = fetchurl {
6421 url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
6439 url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
6422 sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
6440 sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
6423 };
6441 };
6424 };
6442 };
6425 "safer-buffer-2.1.2" = {
6443 "safer-buffer-2.1.2" = {
6426 name = "safer-buffer";
6444 name = "safer-buffer";
6427 packageName = "safer-buffer";
6445 packageName = "safer-buffer";
6428 version = "2.1.2";
6446 version = "2.1.2";
6429 src = fetchurl {
6447 src = fetchurl {
6430 url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
6448 url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
6431 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
6449 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
6432 };
6450 };
6433 };
6451 };
6434 "sax-1.2.4" = {
6452 "sax-1.2.4" = {
6435 name = "sax";
6453 name = "sax";
6436 packageName = "sax";
6454 packageName = "sax";
6437 version = "1.2.4";
6455 version = "1.2.4";
6438 src = fetchurl {
6456 src = fetchurl {
6439 url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
6457 url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
6440 sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==";
6458 sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==";
6441 };
6459 };
6442 };
6460 };
6443 "schema-utils-0.4.7" = {
6461 "schema-utils-0.4.7" = {
6444 name = "schema-utils";
6462 name = "schema-utils";
6445 packageName = "schema-utils";
6463 packageName = "schema-utils";
6446 version = "0.4.7";
6464 version = "0.4.7";
6447 src = fetchurl {
6465 src = fetchurl {
6448 url = "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz";
6466 url = "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz";
6449 sha512 = "v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==";
6467 sha512 = "v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==";
6450 };
6468 };
6451 };
6469 };
6452 "select-1.1.2" = {
6470 "select-1.1.2" = {
6453 name = "select";
6471 name = "select";
6454 packageName = "select";
6472 packageName = "select";
6455 version = "1.1.2";
6473 version = "1.1.2";
6456 src = fetchurl {
6474 src = fetchurl {
6457 url = "https://registry.npmjs.org/select/-/select-1.1.2.tgz";
6475 url = "https://registry.npmjs.org/select/-/select-1.1.2.tgz";
6458 sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d";
6476 sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d";
6459 };
6477 };
6460 };
6478 };
6461 "semver-5.7.1" = {
6479 "semver-5.7.1" = {
6462 name = "semver";
6480 name = "semver";
6463 packageName = "semver";
6481 packageName = "semver";
6464 version = "5.7.1";
6482 version = "5.7.1";
6465 src = fetchurl {
6483 src = fetchurl {
6466 url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz";
6484 url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz";
6467 sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==";
6485 sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==";
6468 };
6486 };
6469 };
6487 };
6470 "serialize-javascript-1.9.1" = {
6488 "serialize-javascript-1.9.1" = {
6471 name = "serialize-javascript";
6489 name = "serialize-javascript";
6472 packageName = "serialize-javascript";
6490 packageName = "serialize-javascript";
6473 version = "1.9.1";
6491 version = "1.9.1";
6474 src = fetchurl {
6492 src = fetchurl {
6475 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz";
6493 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz";
6476 sha512 = "0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==";
6494 sha512 = "0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==";
6477 };
6495 };
6478 };
6496 };
6479 "set-blocking-2.0.0" = {
6497 "set-blocking-2.0.0" = {
6480 name = "set-blocking";
6498 name = "set-blocking";
6481 packageName = "set-blocking";
6499 packageName = "set-blocking";
6482 version = "2.0.0";
6500 version = "2.0.0";
6483 src = fetchurl {
6501 src = fetchurl {
6484 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
6502 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
6485 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
6503 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
6486 };
6504 };
6487 };
6505 };
6488 "set-value-2.0.1" = {
6506 "set-value-2.0.1" = {
6489 name = "set-value";
6507 name = "set-value";
6490 packageName = "set-value";
6508 packageName = "set-value";
6491 version = "2.0.1";
6509 version = "2.0.1";
6492 src = fetchurl {
6510 src = fetchurl {
6493 url = "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz";
6511 url = "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz";
6494 sha512 = "JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==";
6512 sha512 = "JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==";
6495 };
6513 };
6496 };
6514 };
6497 "setimmediate-1.0.5" = {
6515 "setimmediate-1.0.5" = {
6498 name = "setimmediate";
6516 name = "setimmediate";
6499 packageName = "setimmediate";
6517 packageName = "setimmediate";
6500 version = "1.0.5";
6518 version = "1.0.5";
6501 src = fetchurl {
6519 src = fetchurl {
6502 url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
6520 url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
6503 sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
6521 sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
6504 };
6522 };
6505 };
6523 };
6506 "sha.js-2.4.11" = {
6524 "sha.js-2.4.11" = {
6507 name = "sha.js";
6525 name = "sha.js";
6508 packageName = "sha.js";
6526 packageName = "sha.js";
6509 version = "2.4.11";
6527 version = "2.4.11";
6510 src = fetchurl {
6528 src = fetchurl {
6511 url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz";
6529 url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz";
6512 sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==";
6530 sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==";
6513 };
6531 };
6514 };
6532 };
6515 "shebang-command-1.2.0" = {
6533 "shebang-command-1.2.0" = {
6516 name = "shebang-command";
6534 name = "shebang-command";
6517 packageName = "shebang-command";
6535 packageName = "shebang-command";
6518 version = "1.2.0";
6536 version = "1.2.0";
6519 src = fetchurl {
6537 src = fetchurl {
6520 url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
6538 url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
6521 sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
6539 sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
6522 };
6540 };
6523 };
6541 };
6524 "shebang-regex-1.0.0" = {
6542 "shebang-regex-1.0.0" = {
6525 name = "shebang-regex";
6543 name = "shebang-regex";
6526 packageName = "shebang-regex";
6544 packageName = "shebang-regex";
6527 version = "1.0.0";
6545 version = "1.0.0";
6528 src = fetchurl {
6546 src = fetchurl {
6529 url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
6547 url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
6530 sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
6548 sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
6531 };
6549 };
6532 };
6550 };
6533 "shelljs-0.3.0" = {
6551 "shelljs-0.3.0" = {
6534 name = "shelljs";
6552 name = "shelljs";
6535 packageName = "shelljs";
6553 packageName = "shelljs";
6536 version = "0.3.0";
6554 version = "0.3.0";
6537 src = fetchurl {
6555 src = fetchurl {
6538 url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz";
6556 url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz";
6539 sha1 = "3596e6307a781544f591f37da618360f31db57b1";
6557 sha1 = "3596e6307a781544f591f37da618360f31db57b1";
6540 };
6558 };
6541 };
6559 };
6542 "sigmund-1.0.1" = {
6560 "sigmund-1.0.1" = {
6543 name = "sigmund";
6561 name = "sigmund";
6544 packageName = "sigmund";
6562 packageName = "sigmund";
6545 version = "1.0.1";
6563 version = "1.0.1";
6546 src = fetchurl {
6564 src = fetchurl {
6547 url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
6565 url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
6548 sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
6566 sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
6549 };
6567 };
6550 };
6568 };
6551 "signal-exit-3.0.3" = {
6569 "signal-exit-3.0.3" = {
6552 name = "signal-exit";
6570 name = "signal-exit";
6553 packageName = "signal-exit";
6571 packageName = "signal-exit";
6554 version = "3.0.3";
6572 version = "3.0.3";
6555 src = fetchurl {
6573 src = fetchurl {
6556 url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz";
6574 url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz";
6557 sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==";
6575 sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==";
6558 };
6576 };
6559 };
6577 };
6560 "slash-1.0.0" = {
6578 "slash-1.0.0" = {
6561 name = "slash";
6579 name = "slash";
6562 packageName = "slash";
6580 packageName = "slash";
6563 version = "1.0.0";
6581 version = "1.0.0";
6564 src = fetchurl {
6582 src = fetchurl {
6565 url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz";
6583 url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz";
6566 sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
6584 sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
6567 };
6585 };
6568 };
6586 };
6569 "snapdragon-0.8.2" = {
6587 "snapdragon-0.8.2" = {
6570 name = "snapdragon";
6588 name = "snapdragon";
6571 packageName = "snapdragon";
6589 packageName = "snapdragon";
6572 version = "0.8.2";
6590 version = "0.8.2";
6573 src = fetchurl {
6591 src = fetchurl {
6574 url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
6592 url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
6575 sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
6593 sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
6576 };
6594 };
6577 };
6595 };
6578 "snapdragon-node-2.1.1" = {
6596 "snapdragon-node-2.1.1" = {
6579 name = "snapdragon-node";
6597 name = "snapdragon-node";
6580 packageName = "snapdragon-node";
6598 packageName = "snapdragon-node";
6581 version = "2.1.1";
6599 version = "2.1.1";
6582 src = fetchurl {
6600 src = fetchurl {
6583 url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
6601 url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
6584 sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
6602 sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
6585 };
6603 };
6586 };
6604 };
6587 "snapdragon-util-3.0.1" = {
6605 "snapdragon-util-3.0.1" = {
6588 name = "snapdragon-util";
6606 name = "snapdragon-util";
6589 packageName = "snapdragon-util";
6607 packageName = "snapdragon-util";
6590 version = "3.0.1";
6608 version = "3.0.1";
6591 src = fetchurl {
6609 src = fetchurl {
6592 url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
6610 url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
6593 sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
6611 sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
6594 };
6612 };
6595 };
6613 };
6596 "sntp-1.0.9" = {
6614 "sntp-1.0.9" = {
6597 name = "sntp";
6615 name = "sntp";
6598 packageName = "sntp";
6616 packageName = "sntp";
6599 version = "1.0.9";
6617 version = "1.0.9";
6600 src = fetchurl {
6618 src = fetchurl {
6601 url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
6619 url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
6602 sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
6620 sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
6603 };
6621 };
6604 };
6622 };
6605 "sort-keys-1.1.2" = {
6623 "sort-keys-1.1.2" = {
6606 name = "sort-keys";
6624 name = "sort-keys";
6607 packageName = "sort-keys";
6625 packageName = "sort-keys";
6608 version = "1.1.2";
6626 version = "1.1.2";
6609 src = fetchurl {
6627 src = fetchurl {
6610 url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz";
6628 url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz";
6611 sha1 = "441b6d4d346798f1b4e49e8920adfba0e543f9ad";
6629 sha1 = "441b6d4d346798f1b4e49e8920adfba0e543f9ad";
6612 };
6630 };
6613 };
6631 };
6614 "source-list-map-0.1.8" = {
6632 "source-list-map-0.1.8" = {
6615 name = "source-list-map";
6633 name = "source-list-map";
6616 packageName = "source-list-map";
6634 packageName = "source-list-map";
6617 version = "0.1.8";
6635 version = "0.1.8";
6618 src = fetchurl {
6636 src = fetchurl {
6619 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz";
6637 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz";
6620 sha1 = "c550b2ab5427f6b3f21f5afead88c4f5587b2106";
6638 sha1 = "c550b2ab5427f6b3f21f5afead88c4f5587b2106";
6621 };
6639 };
6622 };
6640 };
6623 "source-list-map-2.0.1" = {
6641 "source-list-map-2.0.1" = {
6624 name = "source-list-map";
6642 name = "source-list-map";
6625 packageName = "source-list-map";
6643 packageName = "source-list-map";
6626 version = "2.0.1";
6644 version = "2.0.1";
6627 src = fetchurl {
6645 src = fetchurl {
6628 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz";
6646 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz";
6629 sha512 = "qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==";
6647 sha512 = "qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==";
6630 };
6648 };
6631 };
6649 };
6632 "source-map-0.3.0" = {
6650 "source-map-0.3.0" = {
6633 name = "source-map";
6651 name = "source-map";
6634 packageName = "source-map";
6652 packageName = "source-map";
6635 version = "0.3.0";
6653 version = "0.3.0";
6636 src = fetchurl {
6654 src = fetchurl {
6637 url = "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz";
6655 url = "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz";
6638 sha1 = "8586fb9a5a005e5b501e21cd18b6f21b457ad1f9";
6656 sha1 = "8586fb9a5a005e5b501e21cd18b6f21b457ad1f9";
6639 };
6657 };
6640 };
6658 };
6641 "source-map-0.4.4" = {
6659 "source-map-0.4.4" = {
6642 name = "source-map";
6660 name = "source-map";
6643 packageName = "source-map";
6661 packageName = "source-map";
6644 version = "0.4.4";
6662 version = "0.4.4";
6645 src = fetchurl {
6663 src = fetchurl {
6646 url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz";
6664 url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz";
6647 sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b";
6665 sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b";
6648 };
6666 };
6649 };
6667 };
6650 "source-map-0.5.7" = {
6668 "source-map-0.5.7" = {
6651 name = "source-map";
6669 name = "source-map";
6652 packageName = "source-map";
6670 packageName = "source-map";
6653 version = "0.5.7";
6671 version = "0.5.7";
6654 src = fetchurl {
6672 src = fetchurl {
6655 url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
6673 url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
6656 sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
6674 sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
6657 };
6675 };
6658 };
6676 };
6659 "source-map-0.6.1" = {
6677 "source-map-0.6.1" = {
6660 name = "source-map";
6678 name = "source-map";
6661 packageName = "source-map";
6679 packageName = "source-map";
6662 version = "0.6.1";
6680 version = "0.6.1";
6663 src = fetchurl {
6681 src = fetchurl {
6664 url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz";
6682 url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz";
6665 sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
6683 sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
6666 };
6684 };
6667 };
6685 };
6668 "source-map-resolve-0.5.3" = {
6686 "source-map-resolve-0.5.3" = {
6669 name = "source-map-resolve";
6687 name = "source-map-resolve";
6670 packageName = "source-map-resolve";
6688 packageName = "source-map-resolve";
6671 version = "0.5.3";
6689 version = "0.5.3";
6672 src = fetchurl {
6690 src = fetchurl {
6673 url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz";
6691 url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz";
6674 sha512 = "Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==";
6692 sha512 = "Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==";
6675 };
6693 };
6676 };
6694 };
6677 "source-map-support-0.4.18" = {
6695 "source-map-support-0.4.18" = {
6678 name = "source-map-support";
6696 name = "source-map-support";
6679 packageName = "source-map-support";
6697 packageName = "source-map-support";
6680 version = "0.4.18";
6698 version = "0.4.18";
6681 src = fetchurl {
6699 src = fetchurl {
6682 url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz";
6700 url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz";
6683 sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==";
6701 sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==";
6684 };
6702 };
6685 };
6703 };
6686 "source-map-url-0.4.0" = {
6704 "source-map-url-0.4.0" = {
6687 name = "source-map-url";
6705 name = "source-map-url";
6688 packageName = "source-map-url";
6706 packageName = "source-map-url";
6689 version = "0.4.0";
6707 version = "0.4.0";
6690 src = fetchurl {
6708 src = fetchurl {
6691 url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
6709 url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
6692 sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
6710 sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
6693 };
6711 };
6694 };
6712 };
6695 "split-string-3.1.0" = {
6713 "split-string-3.1.0" = {
6696 name = "split-string";
6714 name = "split-string";
6697 packageName = "split-string";
6715 packageName = "split-string";
6698 version = "3.1.0";
6716 version = "3.1.0";
6699 src = fetchurl {
6717 src = fetchurl {
6700 url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
6718 url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
6701 sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
6719 sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
6702 };
6720 };
6703 };
6721 };
6704 "sprintf-js-1.0.3" = {
6722 "sprintf-js-1.0.3" = {
6705 name = "sprintf-js";
6723 name = "sprintf-js";
6706 packageName = "sprintf-js";
6724 packageName = "sprintf-js";
6707 version = "1.0.3";
6725 version = "1.0.3";
6708 src = fetchurl {
6726 src = fetchurl {
6709 url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz";
6727 url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz";
6710 sha1 = "04e6926f662895354f3dd015203633b857297e2c";
6728 sha1 = "04e6926f662895354f3dd015203633b857297e2c";
6711 };
6729 };
6712 };
6730 };
6713 "sshpk-1.16.1" = {
6731 "sshpk-1.16.1" = {
6714 name = "sshpk";
6732 name = "sshpk";
6715 packageName = "sshpk";
6733 packageName = "sshpk";
6716 version = "1.16.1";
6734 version = "1.16.1";
6717 src = fetchurl {
6735 src = fetchurl {
6718 url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz";
6736 url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz";
6719 sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==";
6737 sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==";
6720 };
6738 };
6721 };
6739 };
6722 "ssri-5.3.0" = {
6740 "ssri-5.3.0" = {
6723 name = "ssri";
6741 name = "ssri";
6724 packageName = "ssri";
6742 packageName = "ssri";
6725 version = "5.3.0";
6743 version = "5.3.0";
6726 src = fetchurl {
6744 src = fetchurl {
6727 url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
6745 url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
6728 sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
6746 sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
6729 };
6747 };
6730 };
6748 };
6731 "static-extend-0.1.2" = {
6749 "static-extend-0.1.2" = {
6732 name = "static-extend";
6750 name = "static-extend";
6733 packageName = "static-extend";
6751 packageName = "static-extend";
6734 version = "0.1.2";
6752 version = "0.1.2";
6735 src = fetchurl {
6753 src = fetchurl {
6736 url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
6754 url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
6737 sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
6755 sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
6738 };
6756 };
6739 };
6757 };
6740 "sticky-sidebar-3.3.1" = {
6758 "sticky-sidebar-3.3.1" = {
6741 name = "sticky-sidebar";
6759 name = "sticky-sidebar";
6742 packageName = "sticky-sidebar";
6760 packageName = "sticky-sidebar";
6743 version = "3.3.1";
6761 version = "3.3.1";
6744 src = fetchurl {
6762 src = fetchurl {
6745 url = "https://registry.npmjs.org/sticky-sidebar/-/sticky-sidebar-3.3.1.tgz";
6763 url = "https://registry.npmjs.org/sticky-sidebar/-/sticky-sidebar-3.3.1.tgz";
6746 sha1 = "142bf6b64c2b416e4b707ebf8f09b8b5a5043877";
6764 sha1 = "142bf6b64c2b416e4b707ebf8f09b8b5a5043877";
6747 };
6765 };
6748 };
6766 };
6749 "stream-browserify-2.0.2" = {
6767 "stream-browserify-2.0.2" = {
6750 name = "stream-browserify";
6768 name = "stream-browserify";
6751 packageName = "stream-browserify";
6769 packageName = "stream-browserify";
6752 version = "2.0.2";
6770 version = "2.0.2";
6753 src = fetchurl {
6771 src = fetchurl {
6754 url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz";
6772 url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz";
6755 sha512 = "nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==";
6773 sha512 = "nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==";
6756 };
6774 };
6757 };
6775 };
6758 "stream-each-1.2.3" = {
6776 "stream-each-1.2.3" = {
6759 name = "stream-each";
6777 name = "stream-each";
6760 packageName = "stream-each";
6778 packageName = "stream-each";
6761 version = "1.2.3";
6779 version = "1.2.3";
6762 src = fetchurl {
6780 src = fetchurl {
6763 url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz";
6781 url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz";
6764 sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==";
6782 sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==";
6765 };
6783 };
6766 };
6784 };
6767 "stream-http-2.8.3" = {
6785 "stream-http-2.8.3" = {
6768 name = "stream-http";
6786 name = "stream-http";
6769 packageName = "stream-http";
6787 packageName = "stream-http";
6770 version = "2.8.3";
6788 version = "2.8.3";
6771 src = fetchurl {
6789 src = fetchurl {
6772 url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz";
6790 url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz";
6773 sha512 = "+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==";
6791 sha512 = "+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==";
6774 };
6792 };
6775 };
6793 };
6776 "stream-shift-1.0.1" = {
6794 "stream-shift-1.0.1" = {
6777 name = "stream-shift";
6795 name = "stream-shift";
6778 packageName = "stream-shift";
6796 packageName = "stream-shift";
6779 version = "1.0.1";
6797 version = "1.0.1";
6780 src = fetchurl {
6798 src = fetchurl {
6781 url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz";
6799 url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz";
6782 sha512 = "AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==";
6800 sha512 = "AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==";
6783 };
6801 };
6784 };
6802 };
6785 "strict-uri-encode-1.1.0" = {
6803 "strict-uri-encode-1.1.0" = {
6786 name = "strict-uri-encode";
6804 name = "strict-uri-encode";
6787 packageName = "strict-uri-encode";
6805 packageName = "strict-uri-encode";
6788 version = "1.1.0";
6806 version = "1.1.0";
6789 src = fetchurl {
6807 src = fetchurl {
6790 url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz";
6808 url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz";
6791 sha1 = "279b225df1d582b1f54e65addd4352e18faa0713";
6809 sha1 = "279b225df1d582b1f54e65addd4352e18faa0713";
6792 };
6810 };
6793 };
6811 };
6794 "string-width-1.0.2" = {
6812 "string-width-1.0.2" = {
6795 name = "string-width";
6813 name = "string-width";
6796 packageName = "string-width";
6814 packageName = "string-width";
6797 version = "1.0.2";
6815 version = "1.0.2";
6798 src = fetchurl {
6816 src = fetchurl {
6799 url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
6817 url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
6800 sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
6818 sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
6801 };
6819 };
6802 };
6820 };
6803 "string-width-2.1.1" = {
6821 "string-width-2.1.1" = {
6804 name = "string-width";
6822 name = "string-width";
6805 packageName = "string-width";
6823 packageName = "string-width";
6806 version = "2.1.1";
6824 version = "2.1.1";
6807 src = fetchurl {
6825 src = fetchurl {
6808 url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
6826 url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
6809 sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
6827 sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
6810 };
6828 };
6811 };
6829 };
6812 "string.prototype.trimend-1.0.1" = {
6830 "string.prototype.trimend-1.0.1" = {
6813 name = "string.prototype.trimend";
6831 name = "string.prototype.trimend";
6814 packageName = "string.prototype.trimend";
6832 packageName = "string.prototype.trimend";
6815 version = "1.0.1";
6833 version = "1.0.1";
6816 src = fetchurl {
6834 src = fetchurl {
6817 url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz";
6835 url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz";
6818 sha512 = "LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==";
6836 sha512 = "LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==";
6819 };
6837 };
6820 };
6838 };
6821 "string.prototype.trimleft-2.1.2" = {
6839 "string.prototype.trimleft-2.1.2" = {
6822 name = "string.prototype.trimleft";
6840 name = "string.prototype.trimleft";
6823 packageName = "string.prototype.trimleft";
6841 packageName = "string.prototype.trimleft";
6824 version = "2.1.2";
6842 version = "2.1.2";
6825 src = fetchurl {
6843 src = fetchurl {
6826 url = "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz";
6844 url = "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz";
6827 sha512 = "gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==";
6845 sha512 = "gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==";
6828 };
6846 };
6829 };
6847 };
6830 "string.prototype.trimright-2.1.2" = {
6848 "string.prototype.trimright-2.1.2" = {
6831 name = "string.prototype.trimright";
6849 name = "string.prototype.trimright";
6832 packageName = "string.prototype.trimright";
6850 packageName = "string.prototype.trimright";
6833 version = "2.1.2";
6851 version = "2.1.2";
6834 src = fetchurl {
6852 src = fetchurl {
6835 url = "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz";
6853 url = "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz";
6836 sha512 = "ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==";
6854 sha512 = "ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==";
6837 };
6855 };
6838 };
6856 };
6839 "string.prototype.trimstart-1.0.1" = {
6857 "string.prototype.trimstart-1.0.1" = {
6840 name = "string.prototype.trimstart";
6858 name = "string.prototype.trimstart";
6841 packageName = "string.prototype.trimstart";
6859 packageName = "string.prototype.trimstart";
6842 version = "1.0.1";
6860 version = "1.0.1";
6843 src = fetchurl {
6861 src = fetchurl {
6844 url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz";
6862 url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz";
6845 sha512 = "XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==";
6863 sha512 = "XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==";
6846 };
6864 };
6847 };
6865 };
6848 "string_decoder-0.10.31" = {
6866 "string_decoder-0.10.31" = {
6849 name = "string_decoder";
6867 name = "string_decoder";
6850 packageName = "string_decoder";
6868 packageName = "string_decoder";
6851 version = "0.10.31";
6869 version = "0.10.31";
6852 src = fetchurl {
6870 src = fetchurl {
6853 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
6871 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
6854 sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
6872 sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
6855 };
6873 };
6856 };
6874 };
6857 "string_decoder-1.1.1" = {
6875 "string_decoder-1.1.1" = {
6858 name = "string_decoder";
6876 name = "string_decoder";
6859 packageName = "string_decoder";
6877 packageName = "string_decoder";
6860 version = "1.1.1";
6878 version = "1.1.1";
6861 src = fetchurl {
6879 src = fetchurl {
6862 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
6880 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
6863 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
6881 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
6864 };
6882 };
6865 };
6883 };
6866 "string_decoder-1.3.0" = {
6884 "string_decoder-1.3.0" = {
6867 name = "string_decoder";
6885 name = "string_decoder";
6868 packageName = "string_decoder";
6886 packageName = "string_decoder";
6869 version = "1.3.0";
6887 version = "1.3.0";
6870 src = fetchurl {
6888 src = fetchurl {
6871 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz";
6889 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz";
6872 sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==";
6890 sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==";
6873 };
6891 };
6874 };
6892 };
6875 "stringstream-0.0.6" = {
6893 "stringstream-0.0.6" = {
6876 name = "stringstream";
6894 name = "stringstream";
6877 packageName = "stringstream";
6895 packageName = "stringstream";
6878 version = "0.0.6";
6896 version = "0.0.6";
6879 src = fetchurl {
6897 src = fetchurl {
6880 url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz";
6898 url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz";
6881 sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==";
6899 sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==";
6882 };
6900 };
6883 };
6901 };
6884 "strip-ansi-0.3.0" = {
6902 "strip-ansi-0.3.0" = {
6885 name = "strip-ansi";
6903 name = "strip-ansi";
6886 packageName = "strip-ansi";
6904 packageName = "strip-ansi";
6887 version = "0.3.0";
6905 version = "0.3.0";
6888 src = fetchurl {
6906 src = fetchurl {
6889 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz";
6907 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz";
6890 sha1 = "25f48ea22ca79187f3174a4db8759347bb126220";
6908 sha1 = "25f48ea22ca79187f3174a4db8759347bb126220";
6891 };
6909 };
6892 };
6910 };
6893 "strip-ansi-3.0.1" = {
6911 "strip-ansi-3.0.1" = {
6894 name = "strip-ansi";
6912 name = "strip-ansi";
6895 packageName = "strip-ansi";
6913 packageName = "strip-ansi";
6896 version = "3.0.1";
6914 version = "3.0.1";
6897 src = fetchurl {
6915 src = fetchurl {
6898 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
6916 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
6899 sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
6917 sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
6900 };
6918 };
6901 };
6919 };
6902 "strip-ansi-4.0.0" = {
6920 "strip-ansi-4.0.0" = {
6903 name = "strip-ansi";
6921 name = "strip-ansi";
6904 packageName = "strip-ansi";
6922 packageName = "strip-ansi";
6905 version = "4.0.0";
6923 version = "4.0.0";
6906 src = fetchurl {
6924 src = fetchurl {
6907 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
6925 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
6908 sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
6926 sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
6909 };
6927 };
6910 };
6928 };
6911 "strip-eof-1.0.0" = {
6929 "strip-eof-1.0.0" = {
6912 name = "strip-eof";
6930 name = "strip-eof";
6913 packageName = "strip-eof";
6931 packageName = "strip-eof";
6914 version = "1.0.0";
6932 version = "1.0.0";
6915 src = fetchurl {
6933 src = fetchurl {
6916 url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
6934 url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
6917 sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
6935 sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
6918 };
6936 };
6919 };
6937 };
6920 "strip-json-comments-1.0.4" = {
6938 "strip-json-comments-1.0.4" = {
6921 name = "strip-json-comments";
6939 name = "strip-json-comments";
6922 packageName = "strip-json-comments";
6940 packageName = "strip-json-comments";
6923 version = "1.0.4";
6941 version = "1.0.4";
6924 src = fetchurl {
6942 src = fetchurl {
6925 url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz";
6943 url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz";
6926 sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91";
6944 sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91";
6927 };
6945 };
6928 };
6946 };
6929 "style-loader-0.21.0" = {
6947 "style-loader-0.21.0" = {
6930 name = "style-loader";
6948 name = "style-loader";
6931 packageName = "style-loader";
6949 packageName = "style-loader";
6932 version = "0.21.0";
6950 version = "0.21.0";
6933 src = fetchurl {
6951 src = fetchurl {
6934 url = "https://registry.npmjs.org/style-loader/-/style-loader-0.21.0.tgz";
6952 url = "https://registry.npmjs.org/style-loader/-/style-loader-0.21.0.tgz";
6935 sha512 = "T+UNsAcl3Yg+BsPKs1vd22Fr8sVT+CJMtzqc6LEw9bbJZb43lm9GoeIfUcDEefBSWC0BhYbcdupV1GtI4DGzxg==";
6953 sha512 = "T+UNsAcl3Yg+BsPKs1vd22Fr8sVT+CJMtzqc6LEw9bbJZb43lm9GoeIfUcDEefBSWC0BhYbcdupV1GtI4DGzxg==";
6936 };
6954 };
6937 };
6955 };
6938 "supports-color-0.2.0" = {
6956 "supports-color-0.2.0" = {
6939 name = "supports-color";
6957 name = "supports-color";
6940 packageName = "supports-color";
6958 packageName = "supports-color";
6941 version = "0.2.0";
6959 version = "0.2.0";
6942 src = fetchurl {
6960 src = fetchurl {
6943 url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz";
6961 url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz";
6944 sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a";
6962 sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a";
6945 };
6963 };
6946 };
6964 };
6947 "supports-color-2.0.0" = {
6965 "supports-color-2.0.0" = {
6948 name = "supports-color";
6966 name = "supports-color";
6949 packageName = "supports-color";
6967 packageName = "supports-color";
6950 version = "2.0.0";
6968 version = "2.0.0";
6951 src = fetchurl {
6969 src = fetchurl {
6952 url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
6970 url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
6953 sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
6971 sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
6954 };
6972 };
6955 };
6973 };
6956 "supports-color-3.2.3" = {
6974 "supports-color-3.2.3" = {
6957 name = "supports-color";
6975 name = "supports-color";
6958 packageName = "supports-color";
6976 packageName = "supports-color";
6959 version = "3.2.3";
6977 version = "3.2.3";
6960 src = fetchurl {
6978 src = fetchurl {
6961 url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz";
6979 url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz";
6962 sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6";
6980 sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6";
6963 };
6981 };
6964 };
6982 };
6965 "supports-color-5.5.0" = {
6983 "supports-color-5.5.0" = {
6966 name = "supports-color";
6984 name = "supports-color";
6967 packageName = "supports-color";
6985 packageName = "supports-color";
6968 version = "5.5.0";
6986 version = "5.5.0";
6969 src = fetchurl {
6987 src = fetchurl {
6970 url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz";
6988 url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz";
6971 sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==";
6989 sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==";
6972 };
6990 };
6973 };
6991 };
6974 "svgo-0.7.2" = {
6992 "svgo-0.7.2" = {
6975 name = "svgo";
6993 name = "svgo";
6976 packageName = "svgo";
6994 packageName = "svgo";
6977 version = "0.7.2";
6995 version = "0.7.2";
6978 src = fetchurl {
6996 src = fetchurl {
6979 url = "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz";
6997 url = "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz";
6980 sha1 = "9f5772413952135c6fefbf40afe6a4faa88b4bb5";
6998 sha1 = "9f5772413952135c6fefbf40afe6a4faa88b4bb5";
6981 };
6999 };
6982 };
7000 };
6983 "sweetalert2-9.10.12" = {
7001 "sweetalert2-9.10.13" = {
6984 name = "sweetalert2";
7002 name = "sweetalert2";
6985 packageName = "sweetalert2";
7003 packageName = "sweetalert2";
6986 version = "9.10.12";
7004 version = "9.10.13";
6987 src = fetchurl {
7005 src = fetchurl {
6988 url = "https://registry.npmjs.org/sweetalert2/-/sweetalert2-9.10.12.tgz";
7006 url = "https://registry.npmjs.org/sweetalert2/-/sweetalert2-9.10.13.tgz";
6989 sha512 = "RnarmbDGTPmwecJbaVdq5LvlzbVReIOtPk0huPnXOE19G00xMxGcTY0wjt9AjwsexUnLivLXc3b6nD6+D6NlGg==";
7007 sha512 = "JiZtO9SQdnS/Uvlqw5MlWpGpYVqH/eBQi7u61+Oxba7ZA4vfX0tSdyzQsiMk56HTUw8Nk8IvNPvfbt3WR3FOsQ==";
6990 };
7008 };
6991 };
7009 };
6992 "tapable-0.2.9" = {
7010 "tapable-0.2.9" = {
6993 name = "tapable";
7011 name = "tapable";
6994 packageName = "tapable";
7012 packageName = "tapable";
6995 version = "0.2.9";
7013 version = "0.2.9";
6996 src = fetchurl {
7014 src = fetchurl {
6997 url = "https://registry.npmjs.org/tapable/-/tapable-0.2.9.tgz";
7015 url = "https://registry.npmjs.org/tapable/-/tapable-0.2.9.tgz";
6998 sha512 = "2wsvQ+4GwBvLPLWsNfLCDYGsW6xb7aeC6utq2Qh0PFwgEy7K7dsma9Jsmb2zSQj7GvYAyUGSntLtsv++GmgL1A==";
7016 sha512 = "2wsvQ+4GwBvLPLWsNfLCDYGsW6xb7aeC6utq2Qh0PFwgEy7K7dsma9Jsmb2zSQj7GvYAyUGSntLtsv++GmgL1A==";
6999 };
7017 };
7000 };
7018 };
7001 "tapable-1.1.3" = {
7019 "tapable-1.1.3" = {
7002 name = "tapable";
7020 name = "tapable";
7003 packageName = "tapable";
7021 packageName = "tapable";
7004 version = "1.1.3";
7022 version = "1.1.3";
7005 src = fetchurl {
7023 src = fetchurl {
7006 url = "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz";
7024 url = "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz";
7007 sha512 = "4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==";
7025 sha512 = "4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==";
7008 };
7026 };
7009 };
7027 };
7010 "through-2.3.8" = {
7028 "through-2.3.8" = {
7011 name = "through";
7029 name = "through";
7012 packageName = "through";
7030 packageName = "through";
7013 version = "2.3.8";
7031 version = "2.3.8";
7014 src = fetchurl {
7032 src = fetchurl {
7015 url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
7033 url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
7016 sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
7034 sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
7017 };
7035 };
7018 };
7036 };
7019 "through2-2.0.5" = {
7037 "through2-2.0.5" = {
7020 name = "through2";
7038 name = "through2";
7021 packageName = "through2";
7039 packageName = "through2";
7022 version = "2.0.5";
7040 version = "2.0.5";
7023 src = fetchurl {
7041 src = fetchurl {
7024 url = "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz";
7042 url = "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz";
7025 sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==";
7043 sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==";
7026 };
7044 };
7027 };
7045 };
7028 "timers-browserify-2.0.11" = {
7046 "timers-browserify-2.0.11" = {
7029 name = "timers-browserify";
7047 name = "timers-browserify";
7030 packageName = "timers-browserify";
7048 packageName = "timers-browserify";
7031 version = "2.0.11";
7049 version = "2.0.11";
7032 src = fetchurl {
7050 src = fetchurl {
7033 url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz";
7051 url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz";
7034 sha512 = "60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==";
7052 sha512 = "60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==";
7035 };
7053 };
7036 };
7054 };
7037 "tiny-emitter-2.1.0" = {
7055 "tiny-emitter-2.1.0" = {
7038 name = "tiny-emitter";
7056 name = "tiny-emitter";
7039 packageName = "tiny-emitter";
7057 packageName = "tiny-emitter";
7040 version = "2.1.0";
7058 version = "2.1.0";
7041 src = fetchurl {
7059 src = fetchurl {
7042 url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz";
7060 url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz";
7043 sha512 = "NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==";
7061 sha512 = "NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==";
7044 };
7062 };
7045 };
7063 };
7046 "tiny-lr-fork-0.0.5" = {
7064 "tiny-lr-fork-0.0.5" = {
7047 name = "tiny-lr-fork";
7065 name = "tiny-lr-fork";
7048 packageName = "tiny-lr-fork";
7066 packageName = "tiny-lr-fork";
7049 version = "0.0.5";
7067 version = "0.0.5";
7050 src = fetchurl {
7068 src = fetchurl {
7051 url = "https://registry.npmjs.org/tiny-lr-fork/-/tiny-lr-fork-0.0.5.tgz";
7069 url = "https://registry.npmjs.org/tiny-lr-fork/-/tiny-lr-fork-0.0.5.tgz";
7052 sha1 = "1e99e1e2a8469b736ab97d97eefa98c71f76ed0a";
7070 sha1 = "1e99e1e2a8469b736ab97d97eefa98c71f76ed0a";
7053 };
7071 };
7054 };
7072 };
7055 "to-arraybuffer-1.0.1" = {
7073 "to-arraybuffer-1.0.1" = {
7056 name = "to-arraybuffer";
7074 name = "to-arraybuffer";
7057 packageName = "to-arraybuffer";
7075 packageName = "to-arraybuffer";
7058 version = "1.0.1";
7076 version = "1.0.1";
7059 src = fetchurl {
7077 src = fetchurl {
7060 url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
7078 url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
7061 sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
7079 sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
7062 };
7080 };
7063 };
7081 };
7064 "to-fast-properties-1.0.3" = {
7082 "to-fast-properties-1.0.3" = {
7065 name = "to-fast-properties";
7083 name = "to-fast-properties";
7066 packageName = "to-fast-properties";
7084 packageName = "to-fast-properties";
7067 version = "1.0.3";
7085 version = "1.0.3";
7068 src = fetchurl {
7086 src = fetchurl {
7069 url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
7087 url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
7070 sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
7088 sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
7071 };
7089 };
7072 };
7090 };
7073 "to-object-path-0.3.0" = {
7091 "to-object-path-0.3.0" = {
7074 name = "to-object-path";
7092 name = "to-object-path";
7075 packageName = "to-object-path";
7093 packageName = "to-object-path";
7076 version = "0.3.0";
7094 version = "0.3.0";
7077 src = fetchurl {
7095 src = fetchurl {
7078 url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
7096 url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
7079 sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
7097 sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
7080 };
7098 };
7081 };
7099 };
7082 "to-regex-3.0.2" = {
7100 "to-regex-3.0.2" = {
7083 name = "to-regex";
7101 name = "to-regex";
7084 packageName = "to-regex";
7102 packageName = "to-regex";
7085 version = "3.0.2";
7103 version = "3.0.2";
7086 src = fetchurl {
7104 src = fetchurl {
7087 url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
7105 url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
7088 sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
7106 sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
7089 };
7107 };
7090 };
7108 };
7091 "to-regex-range-2.1.1" = {
7109 "to-regex-range-2.1.1" = {
7092 name = "to-regex-range";
7110 name = "to-regex-range";
7093 packageName = "to-regex-range";
7111 packageName = "to-regex-range";
7094 version = "2.1.1";
7112 version = "2.1.1";
7095 src = fetchurl {
7113 src = fetchurl {
7096 url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
7114 url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
7097 sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
7115 sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
7098 };
7116 };
7099 };
7117 };
7100 "toposort-1.0.7" = {
7118 "toposort-1.0.7" = {
7101 name = "toposort";
7119 name = "toposort";
7102 packageName = "toposort";
7120 packageName = "toposort";
7103 version = "1.0.7";
7121 version = "1.0.7";
7104 src = fetchurl {
7122 src = fetchurl {
7105 url = "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz";
7123 url = "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz";
7106 sha1 = "2e68442d9f64ec720b8cc89e6443ac6caa950029";
7124 sha1 = "2e68442d9f64ec720b8cc89e6443ac6caa950029";
7107 };
7125 };
7108 };
7126 };
7109 "tough-cookie-2.3.4" = {
7127 "tough-cookie-2.3.4" = {
7110 name = "tough-cookie";
7128 name = "tough-cookie";
7111 packageName = "tough-cookie";
7129 packageName = "tough-cookie";
7112 version = "2.3.4";
7130 version = "2.3.4";
7113 src = fetchurl {
7131 src = fetchurl {
7114 url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz";
7132 url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz";
7115 sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==";
7133 sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==";
7116 };
7134 };
7117 };
7135 };
7118 "trim-right-1.0.1" = {
7136 "trim-right-1.0.1" = {
7119 name = "trim-right";
7137 name = "trim-right";
7120 packageName = "trim-right";
7138 packageName = "trim-right";
7121 version = "1.0.1";
7139 version = "1.0.1";
7122 src = fetchurl {
7140 src = fetchurl {
7123 url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz";
7141 url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz";
7124 sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003";
7142 sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003";
7125 };
7143 };
7126 };
7144 };
7127 "ts-loader-1.3.3" = {
7145 "ts-loader-1.3.3" = {
7128 name = "ts-loader";
7146 name = "ts-loader";
7129 packageName = "ts-loader";
7147 packageName = "ts-loader";
7130 version = "1.3.3";
7148 version = "1.3.3";
7131 src = fetchurl {
7149 src = fetchurl {
7132 url = "https://registry.npmjs.org/ts-loader/-/ts-loader-1.3.3.tgz";
7150 url = "https://registry.npmjs.org/ts-loader/-/ts-loader-1.3.3.tgz";
7133 sha1 = "30c6203e1e66b841a88701ed8858f1725d94b026";
7151 sha1 = "30c6203e1e66b841a88701ed8858f1725d94b026";
7134 };
7152 };
7135 };
7153 };
7136 "tslib-1.11.1" = {
7154 "tslib-1.11.2" = {
7137 name = "tslib";
7155 name = "tslib";
7138 packageName = "tslib";
7156 packageName = "tslib";
7139 version = "1.11.1";
7157 version = "1.11.2";
7140 src = fetchurl {
7158 src = fetchurl {
7141 url = "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz";
7159 url = "https://registry.npmjs.org/tslib/-/tslib-1.11.2.tgz";
7142 sha512 = "aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==";
7160 sha512 = "tTSkux6IGPnUGUd1XAZHcpu85MOkIl5zX49pO+jfsie3eP0B6pyhOlLXm3cAC6T7s+euSDDUUV+Acop5WmtkVg==";
7143 };
7161 };
7144 };
7162 };
7145 "tty-browserify-0.0.0" = {
7163 "tty-browserify-0.0.0" = {
7146 name = "tty-browserify";
7164 name = "tty-browserify";
7147 packageName = "tty-browserify";
7165 packageName = "tty-browserify";
7148 version = "0.0.0";
7166 version = "0.0.0";
7149 src = fetchurl {
7167 src = fetchurl {
7150 url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz";
7168 url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz";
7151 sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
7169 sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
7152 };
7170 };
7153 };
7171 };
7154 "tunnel-agent-0.6.0" = {
7172 "tunnel-agent-0.6.0" = {
7155 name = "tunnel-agent";
7173 name = "tunnel-agent";
7156 packageName = "tunnel-agent";
7174 packageName = "tunnel-agent";
7157 version = "0.6.0";
7175 version = "0.6.0";
7158 src = fetchurl {
7176 src = fetchurl {
7159 url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
7177 url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
7160 sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
7178 sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
7161 };
7179 };
7162 };
7180 };
7163 "tweetnacl-0.14.5" = {
7181 "tweetnacl-0.14.5" = {
7164 name = "tweetnacl";
7182 name = "tweetnacl";
7165 packageName = "tweetnacl";
7183 packageName = "tweetnacl";
7166 version = "0.14.5";
7184 version = "0.14.5";
7167 src = fetchurl {
7185 src = fetchurl {
7168 url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
7186 url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
7169 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
7187 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
7170 };
7188 };
7171 };
7189 };
7172 "typedarray-0.0.6" = {
7190 "typedarray-0.0.6" = {
7173 name = "typedarray";
7191 name = "typedarray";
7174 packageName = "typedarray";
7192 packageName = "typedarray";
7175 version = "0.0.6";
7193 version = "0.0.6";
7176 src = fetchurl {
7194 src = fetchurl {
7177 url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
7195 url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
7178 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
7196 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
7179 };
7197 };
7180 };
7198 };
7181 "uglify-es-3.3.10" = {
7199 "uglify-es-3.3.10" = {
7182 name = "uglify-es";
7200 name = "uglify-es";
7183 packageName = "uglify-es";
7201 packageName = "uglify-es";
7184 version = "3.3.10";
7202 version = "3.3.10";
7185 src = fetchurl {
7203 src = fetchurl {
7186 url = "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz";
7204 url = "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz";
7187 sha512 = "rPzPisCzW68Okj1zNrfa2dR9uEm43SevDmpR6FChoZABFk9dANGnzzBMgHYUXI3609//63fnVkyQ1SQmAMyjww==";
7205 sha512 = "rPzPisCzW68Okj1zNrfa2dR9uEm43SevDmpR6FChoZABFk9dANGnzzBMgHYUXI3609//63fnVkyQ1SQmAMyjww==";
7188 };
7206 };
7189 };
7207 };
7190 "uglify-js-2.8.29" = {
7208 "uglify-js-2.8.29" = {
7191 name = "uglify-js";
7209 name = "uglify-js";
7192 packageName = "uglify-js";
7210 packageName = "uglify-js";
7193 version = "2.8.29";
7211 version = "2.8.29";
7194 src = fetchurl {
7212 src = fetchurl {
7195 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz";
7213 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz";
7196 sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
7214 sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
7197 };
7215 };
7198 };
7216 };
7199 "uglify-js-3.4.10" = {
7217 "uglify-js-3.4.10" = {
7200 name = "uglify-js";
7218 name = "uglify-js";
7201 packageName = "uglify-js";
7219 packageName = "uglify-js";
7202 version = "3.4.10";
7220 version = "3.4.10";
7203 src = fetchurl {
7221 src = fetchurl {
7204 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz";
7222 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz";
7205 sha512 = "Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==";
7223 sha512 = "Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==";
7206 };
7224 };
7207 };
7225 };
7208 "uglify-js-3.9.1" = {
7226 "uglify-js-3.9.2" = {
7209 name = "uglify-js";
7227 name = "uglify-js";
7210 packageName = "uglify-js";
7228 packageName = "uglify-js";
7211 version = "3.9.1";
7229 version = "3.9.2";
7212 src = fetchurl {
7230 src = fetchurl {
7213 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.9.1.tgz";
7231 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.9.2.tgz";
7214 sha512 = "JUPoL1jHsc9fOjVFHdQIhqEEJsQvfKDjlubcCilu8U26uZ73qOg8VsN8O1jbuei44ZPlwL7kmbAdM4tzaUvqnA==";
7232 sha512 = "zGVwKslUAD/EeqOrD1nQaBmXIHl1Vw371we8cvS8I6mYK9rmgX5tv8AAeJdfsQ3Kk5mGax2SVV/AizxdNGhl7Q==";
7215 };
7233 };
7216 };
7234 };
7217 "uglify-to-browserify-1.0.2" = {
7235 "uglify-to-browserify-1.0.2" = {
7218 name = "uglify-to-browserify";
7236 name = "uglify-to-browserify";
7219 packageName = "uglify-to-browserify";
7237 packageName = "uglify-to-browserify";
7220 version = "1.0.2";
7238 version = "1.0.2";
7221 src = fetchurl {
7239 src = fetchurl {
7222 url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
7240 url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
7223 sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
7241 sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
7224 };
7242 };
7225 };
7243 };
7226 "uglifyjs-webpack-plugin-1.3.0" = {
7244 "uglifyjs-webpack-plugin-1.3.0" = {
7227 name = "uglifyjs-webpack-plugin";
7245 name = "uglifyjs-webpack-plugin";
7228 packageName = "uglifyjs-webpack-plugin";
7246 packageName = "uglifyjs-webpack-plugin";
7229 version = "1.3.0";
7247 version = "1.3.0";
7230 src = fetchurl {
7248 src = fetchurl {
7231 url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz";
7249 url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz";
7232 sha512 = "ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==";
7250 sha512 = "ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==";
7233 };
7251 };
7234 };
7252 };
7235 "unc-path-regex-0.1.2" = {
7253 "unc-path-regex-0.1.2" = {
7236 name = "unc-path-regex";
7254 name = "unc-path-regex";
7237 packageName = "unc-path-regex";
7255 packageName = "unc-path-regex";
7238 version = "0.1.2";
7256 version = "0.1.2";
7239 src = fetchurl {
7257 src = fetchurl {
7240 url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
7258 url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
7241 sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
7259 sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
7242 };
7260 };
7243 };
7261 };
7244 "underscore-1.7.0" = {
7262 "underscore-1.7.0" = {
7245 name = "underscore";
7263 name = "underscore";
7246 packageName = "underscore";
7264 packageName = "underscore";
7247 version = "1.7.0";
7265 version = "1.7.0";
7248 src = fetchurl {
7266 src = fetchurl {
7249 url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz";
7267 url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz";
7250 sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209";
7268 sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209";
7251 };
7269 };
7252 };
7270 };
7253 "underscore.string-2.2.1" = {
7271 "underscore.string-2.2.1" = {
7254 name = "underscore.string";
7272 name = "underscore.string";
7255 packageName = "underscore.string";
7273 packageName = "underscore.string";
7256 version = "2.2.1";
7274 version = "2.2.1";
7257 src = fetchurl {
7275 src = fetchurl {
7258 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz";
7276 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz";
7259 sha1 = "d7c0fa2af5d5a1a67f4253daee98132e733f0f19";
7277 sha1 = "d7c0fa2af5d5a1a67f4253daee98132e733f0f19";
7260 };
7278 };
7261 };
7279 };
7262 "underscore.string-2.3.3" = {
7280 "underscore.string-2.3.3" = {
7263 name = "underscore.string";
7281 name = "underscore.string";
7264 packageName = "underscore.string";
7282 packageName = "underscore.string";
7265 version = "2.3.3";
7283 version = "2.3.3";
7266 src = fetchurl {
7284 src = fetchurl {
7267 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz";
7285 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz";
7268 sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d";
7286 sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d";
7269 };
7287 };
7270 };
7288 };
7271 "underscore.string-2.4.0" = {
7289 "underscore.string-2.4.0" = {
7272 name = "underscore.string";
7290 name = "underscore.string";
7273 packageName = "underscore.string";
7291 packageName = "underscore.string";
7274 version = "2.4.0";
7292 version = "2.4.0";
7275 src = fetchurl {
7293 src = fetchurl {
7276 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz";
7294 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz";
7277 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b";
7295 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b";
7278 };
7296 };
7279 };
7297 };
7280 "unicode-canonical-property-names-ecmascript-1.0.4" = {
7298 "unicode-canonical-property-names-ecmascript-1.0.4" = {
7281 name = "unicode-canonical-property-names-ecmascript";
7299 name = "unicode-canonical-property-names-ecmascript";
7282 packageName = "unicode-canonical-property-names-ecmascript";
7300 packageName = "unicode-canonical-property-names-ecmascript";
7283 version = "1.0.4";
7301 version = "1.0.4";
7284 src = fetchurl {
7302 src = fetchurl {
7285 url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz";
7303 url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz";
7286 sha512 = "jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==";
7304 sha512 = "jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==";
7287 };
7305 };
7288 };
7306 };
7289 "unicode-match-property-ecmascript-1.0.4" = {
7307 "unicode-match-property-ecmascript-1.0.4" = {
7290 name = "unicode-match-property-ecmascript";
7308 name = "unicode-match-property-ecmascript";
7291 packageName = "unicode-match-property-ecmascript";
7309 packageName = "unicode-match-property-ecmascript";
7292 version = "1.0.4";
7310 version = "1.0.4";
7293 src = fetchurl {
7311 src = fetchurl {
7294 url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz";
7312 url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz";
7295 sha512 = "L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==";
7313 sha512 = "L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==";
7296 };
7314 };
7297 };
7315 };
7298 "unicode-match-property-value-ecmascript-1.2.0" = {
7316 "unicode-match-property-value-ecmascript-1.2.0" = {
7299 name = "unicode-match-property-value-ecmascript";
7317 name = "unicode-match-property-value-ecmascript";
7300 packageName = "unicode-match-property-value-ecmascript";
7318 packageName = "unicode-match-property-value-ecmascript";
7301 version = "1.2.0";
7319 version = "1.2.0";
7302 src = fetchurl {
7320 src = fetchurl {
7303 url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz";
7321 url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz";
7304 sha512 = "wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==";
7322 sha512 = "wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==";
7305 };
7323 };
7306 };
7324 };
7307 "unicode-property-aliases-ecmascript-1.1.0" = {
7325 "unicode-property-aliases-ecmascript-1.1.0" = {
7308 name = "unicode-property-aliases-ecmascript";
7326 name = "unicode-property-aliases-ecmascript";
7309 packageName = "unicode-property-aliases-ecmascript";
7327 packageName = "unicode-property-aliases-ecmascript";
7310 version = "1.1.0";
7328 version = "1.1.0";
7311 src = fetchurl {
7329 src = fetchurl {
7312 url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz";
7330 url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz";
7313 sha512 = "PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==";
7331 sha512 = "PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==";
7314 };
7332 };
7315 };
7333 };
7316 "union-value-1.0.1" = {
7334 "union-value-1.0.1" = {
7317 name = "union-value";
7335 name = "union-value";
7318 packageName = "union-value";
7336 packageName = "union-value";
7319 version = "1.0.1";
7337 version = "1.0.1";
7320 src = fetchurl {
7338 src = fetchurl {
7321 url = "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz";
7339 url = "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz";
7322 sha512 = "tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==";
7340 sha512 = "tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==";
7323 };
7341 };
7324 };
7342 };
7325 "uniq-1.0.1" = {
7343 "uniq-1.0.1" = {
7326 name = "uniq";
7344 name = "uniq";
7327 packageName = "uniq";
7345 packageName = "uniq";
7328 version = "1.0.1";
7346 version = "1.0.1";
7329 src = fetchurl {
7347 src = fetchurl {
7330 url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz";
7348 url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz";
7331 sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff";
7349 sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff";
7332 };
7350 };
7333 };
7351 };
7334 "uniqs-2.0.0" = {
7352 "uniqs-2.0.0" = {
7335 name = "uniqs";
7353 name = "uniqs";
7336 packageName = "uniqs";
7354 packageName = "uniqs";
7337 version = "2.0.0";
7355 version = "2.0.0";
7338 src = fetchurl {
7356 src = fetchurl {
7339 url = "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz";
7357 url = "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz";
7340 sha1 = "ffede4b36b25290696e6e165d4a59edb998e6b02";
7358 sha1 = "ffede4b36b25290696e6e165d4a59edb998e6b02";
7341 };
7359 };
7342 };
7360 };
7343 "unique-filename-1.1.1" = {
7361 "unique-filename-1.1.1" = {
7344 name = "unique-filename";
7362 name = "unique-filename";
7345 packageName = "unique-filename";
7363 packageName = "unique-filename";
7346 version = "1.1.1";
7364 version = "1.1.1";
7347 src = fetchurl {
7365 src = fetchurl {
7348 url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz";
7366 url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz";
7349 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==";
7367 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==";
7350 };
7368 };
7351 };
7369 };
7352 "unique-slug-2.0.2" = {
7370 "unique-slug-2.0.2" = {
7353 name = "unique-slug";
7371 name = "unique-slug";
7354 packageName = "unique-slug";
7372 packageName = "unique-slug";
7355 version = "2.0.2";
7373 version = "2.0.2";
7356 src = fetchurl {
7374 src = fetchurl {
7357 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz";
7375 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz";
7358 sha512 = "zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==";
7376 sha512 = "zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==";
7359 };
7377 };
7360 };
7378 };
7361 "unset-value-1.0.0" = {
7379 "unset-value-1.0.0" = {
7362 name = "unset-value";
7380 name = "unset-value";
7363 packageName = "unset-value";
7381 packageName = "unset-value";
7364 version = "1.0.0";
7382 version = "1.0.0";
7365 src = fetchurl {
7383 src = fetchurl {
7366 url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
7384 url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
7367 sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
7385 sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
7368 };
7386 };
7369 };
7387 };
7370 "upath-1.2.0" = {
7388 "upath-1.2.0" = {
7371 name = "upath";
7389 name = "upath";
7372 packageName = "upath";
7390 packageName = "upath";
7373 version = "1.2.0";
7391 version = "1.2.0";
7374 src = fetchurl {
7392 src = fetchurl {
7375 url = "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz";
7393 url = "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz";
7376 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==";
7394 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==";
7377 };
7395 };
7378 };
7396 };
7379 "upper-case-1.1.3" = {
7397 "upper-case-1.1.3" = {
7380 name = "upper-case";
7398 name = "upper-case";
7381 packageName = "upper-case";
7399 packageName = "upper-case";
7382 version = "1.1.3";
7400 version = "1.1.3";
7383 src = fetchurl {
7401 src = fetchurl {
7384 url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz";
7402 url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz";
7385 sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598";
7403 sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598";
7386 };
7404 };
7387 };
7405 };
7388 "uri-js-4.2.2" = {
7406 "uri-js-4.2.2" = {
7389 name = "uri-js";
7407 name = "uri-js";
7390 packageName = "uri-js";
7408 packageName = "uri-js";
7391 version = "4.2.2";
7409 version = "4.2.2";
7392 src = fetchurl {
7410 src = fetchurl {
7393 url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
7411 url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
7394 sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
7412 sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
7395 };
7413 };
7396 };
7414 };
7397 "uri-path-1.0.0" = {
7415 "uri-path-1.0.0" = {
7398 name = "uri-path";
7416 name = "uri-path";
7399 packageName = "uri-path";
7417 packageName = "uri-path";
7400 version = "1.0.0";
7418 version = "1.0.0";
7401 src = fetchurl {
7419 src = fetchurl {
7402 url = "https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz";
7420 url = "https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz";
7403 sha1 = "9747f018358933c31de0fccfd82d138e67262e32";
7421 sha1 = "9747f018358933c31de0fccfd82d138e67262e32";
7404 };
7422 };
7405 };
7423 };
7406 "urix-0.1.0" = {
7424 "urix-0.1.0" = {
7407 name = "urix";
7425 name = "urix";
7408 packageName = "urix";
7426 packageName = "urix";
7409 version = "0.1.0";
7427 version = "0.1.0";
7410 src = fetchurl {
7428 src = fetchurl {
7411 url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
7429 url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
7412 sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
7430 sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
7413 };
7431 };
7414 };
7432 };
7415 "url-0.11.0" = {
7433 "url-0.11.0" = {
7416 name = "url";
7434 name = "url";
7417 packageName = "url";
7435 packageName = "url";
7418 version = "0.11.0";
7436 version = "0.11.0";
7419 src = fetchurl {
7437 src = fetchurl {
7420 url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz";
7438 url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz";
7421 sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
7439 sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
7422 };
7440 };
7423 };
7441 };
7424 "use-3.1.1" = {
7442 "use-3.1.1" = {
7425 name = "use";
7443 name = "use";
7426 packageName = "use";
7444 packageName = "use";
7427 version = "3.1.1";
7445 version = "3.1.1";
7428 src = fetchurl {
7446 src = fetchurl {
7429 url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
7447 url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
7430 sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
7448 sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
7431 };
7449 };
7432 };
7450 };
7433 "util-0.10.3" = {
7451 "util-0.10.3" = {
7434 name = "util";
7452 name = "util";
7435 packageName = "util";
7453 packageName = "util";
7436 version = "0.10.3";
7454 version = "0.10.3";
7437 src = fetchurl {
7455 src = fetchurl {
7438 url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz";
7456 url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz";
7439 sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
7457 sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
7440 };
7458 };
7441 };
7459 };
7442 "util-0.11.1" = {
7460 "util-0.11.1" = {
7443 name = "util";
7461 name = "util";
7444 packageName = "util";
7462 packageName = "util";
7445 version = "0.11.1";
7463 version = "0.11.1";
7446 src = fetchurl {
7464 src = fetchurl {
7447 url = "https://registry.npmjs.org/util/-/util-0.11.1.tgz";
7465 url = "https://registry.npmjs.org/util/-/util-0.11.1.tgz";
7448 sha512 = "HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==";
7466 sha512 = "HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==";
7449 };
7467 };
7450 };
7468 };
7451 "util-deprecate-1.0.2" = {
7469 "util-deprecate-1.0.2" = {
7452 name = "util-deprecate";
7470 name = "util-deprecate";
7453 packageName = "util-deprecate";
7471 packageName = "util-deprecate";
7454 version = "1.0.2";
7472 version = "1.0.2";
7455 src = fetchurl {
7473 src = fetchurl {
7456 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
7474 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
7457 sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
7475 sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
7458 };
7476 };
7459 };
7477 };
7460 "util.promisify-1.0.0" = {
7478 "util.promisify-1.0.0" = {
7461 name = "util.promisify";
7479 name = "util.promisify";
7462 packageName = "util.promisify";
7480 packageName = "util.promisify";
7463 version = "1.0.0";
7481 version = "1.0.0";
7464 src = fetchurl {
7482 src = fetchurl {
7465 url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz";
7483 url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz";
7466 sha512 = "i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==";
7484 sha512 = "i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==";
7467 };
7485 };
7468 };
7486 };
7469 "utila-0.4.0" = {
7487 "utila-0.4.0" = {
7470 name = "utila";
7488 name = "utila";
7471 packageName = "utila";
7489 packageName = "utila";
7472 version = "0.4.0";
7490 version = "0.4.0";
7473 src = fetchurl {
7491 src = fetchurl {
7474 url = "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz";
7492 url = "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz";
7475 sha1 = "8a16a05d445657a3aea5eecc5b12a4fa5379772c";
7493 sha1 = "8a16a05d445657a3aea5eecc5b12a4fa5379772c";
7476 };
7494 };
7477 };
7495 };
7478 "uuid-3.4.0" = {
7496 "uuid-3.4.0" = {
7479 name = "uuid";
7497 name = "uuid";
7480 packageName = "uuid";
7498 packageName = "uuid";
7481 version = "3.4.0";
7499 version = "3.4.0";
7482 src = fetchurl {
7500 src = fetchurl {
7483 url = "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz";
7501 url = "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz";
7484 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==";
7502 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==";
7485 };
7503 };
7486 };
7504 };
7487 "v8-compile-cache-2.1.0" = {
7505 "v8-compile-cache-2.1.0" = {
7488 name = "v8-compile-cache";
7506 name = "v8-compile-cache";
7489 packageName = "v8-compile-cache";
7507 packageName = "v8-compile-cache";
7490 version = "2.1.0";
7508 version = "2.1.0";
7491 src = fetchurl {
7509 src = fetchurl {
7492 url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz";
7510 url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz";
7493 sha512 = "usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==";
7511 sha512 = "usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==";
7494 };
7512 };
7495 };
7513 };
7496 "v8flags-3.1.3" = {
7514 "v8flags-3.1.3" = {
7497 name = "v8flags";
7515 name = "v8flags";
7498 packageName = "v8flags";
7516 packageName = "v8flags";
7499 version = "3.1.3";
7517 version = "3.1.3";
7500 src = fetchurl {
7518 src = fetchurl {
7501 url = "https://registry.npmjs.org/v8flags/-/v8flags-3.1.3.tgz";
7519 url = "https://registry.npmjs.org/v8flags/-/v8flags-3.1.3.tgz";
7502 sha512 = "amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==";
7520 sha512 = "amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==";
7503 };
7521 };
7504 };
7522 };
7505 "vendors-1.0.4" = {
7523 "vendors-1.0.4" = {
7506 name = "vendors";
7524 name = "vendors";
7507 packageName = "vendors";
7525 packageName = "vendors";
7508 version = "1.0.4";
7526 version = "1.0.4";
7509 src = fetchurl {
7527 src = fetchurl {
7510 url = "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz";
7528 url = "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz";
7511 sha512 = "/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==";
7529 sha512 = "/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==";
7512 };
7530 };
7513 };
7531 };
7514 "verror-1.10.0" = {
7532 "verror-1.10.0" = {
7515 name = "verror";
7533 name = "verror";
7516 packageName = "verror";
7534 packageName = "verror";
7517 version = "1.10.0";
7535 version = "1.10.0";
7518 src = fetchurl {
7536 src = fetchurl {
7519 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
7537 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
7520 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
7538 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
7521 };
7539 };
7522 };
7540 };
7523 "vm-browserify-1.1.2" = {
7541 "vm-browserify-1.1.2" = {
7524 name = "vm-browserify";
7542 name = "vm-browserify";
7525 packageName = "vm-browserify";
7543 packageName = "vm-browserify";
7526 version = "1.1.2";
7544 version = "1.1.2";
7527 src = fetchurl {
7545 src = fetchurl {
7528 url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz";
7546 url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz";
7529 sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==";
7547 sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==";
7530 };
7548 };
7531 };
7549 };
7532 "watchpack-1.6.1" = {
7550 "watchpack-1.6.1" = {
7533 name = "watchpack";
7551 name = "watchpack";
7534 packageName = "watchpack";
7552 packageName = "watchpack";
7535 version = "1.6.1";
7553 version = "1.6.1";
7536 src = fetchurl {
7554 src = fetchurl {
7537 url = "https://registry.npmjs.org/watchpack/-/watchpack-1.6.1.tgz";
7555 url = "https://registry.npmjs.org/watchpack/-/watchpack-1.6.1.tgz";
7538 sha512 = "+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA==";
7556 sha512 = "+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA==";
7539 };
7557 };
7540 };
7558 };
7541 "waypoints-4.0.1" = {
7559 "waypoints-4.0.1" = {
7542 name = "waypoints";
7560 name = "waypoints";
7543 packageName = "waypoints";
7561 packageName = "waypoints";
7544 version = "4.0.1";
7562 version = "4.0.1";
7545 src = fetchurl {
7563 src = fetchurl {
7546 url = "https://registry.npmjs.org/waypoints/-/waypoints-4.0.1.tgz";
7564 url = "https://registry.npmjs.org/waypoints/-/waypoints-4.0.1.tgz";
7547 sha1 = "09979a0573810b29627cba4366a284a062ec69c8";
7565 sha1 = "09979a0573810b29627cba4366a284a062ec69c8";
7548 };
7566 };
7549 };
7567 };
7550 "webpack-4.23.1" = {
7568 "webpack-4.23.1" = {
7551 name = "webpack";
7569 name = "webpack";
7552 packageName = "webpack";
7570 packageName = "webpack";
7553 version = "4.23.1";
7571 version = "4.23.1";
7554 src = fetchurl {
7572 src = fetchurl {
7555 url = "https://registry.npmjs.org/webpack/-/webpack-4.23.1.tgz";
7573 url = "https://registry.npmjs.org/webpack/-/webpack-4.23.1.tgz";
7556 sha512 = "iE5Cu4rGEDk7ONRjisTOjVHv3dDtcFfwitSxT7evtYj/rANJpt1OuC/Kozh1pBa99AUBr1L/LsaNB+D9Xz3CEg==";
7574 sha512 = "iE5Cu4rGEDk7ONRjisTOjVHv3dDtcFfwitSxT7evtYj/rANJpt1OuC/Kozh1pBa99AUBr1L/LsaNB+D9Xz3CEg==";
7557 };
7575 };
7558 };
7576 };
7559 "webpack-cli-3.1.2" = {
7577 "webpack-cli-3.1.2" = {
7560 name = "webpack-cli";
7578 name = "webpack-cli";
7561 packageName = "webpack-cli";
7579 packageName = "webpack-cli";
7562 version = "3.1.2";
7580 version = "3.1.2";
7563 src = fetchurl {
7581 src = fetchurl {
7564 url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.2.tgz";
7582 url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.2.tgz";
7565 sha512 = "Cnqo7CeqeSvC6PTdts+dywNi5CRlIPbLx1AoUPK2T6vC1YAugMG3IOoO9DmEscd+Dghw7uRlnzV1KwOe5IrtgQ==";
7583 sha512 = "Cnqo7CeqeSvC6PTdts+dywNi5CRlIPbLx1AoUPK2T6vC1YAugMG3IOoO9DmEscd+Dghw7uRlnzV1KwOe5IrtgQ==";
7566 };
7584 };
7567 };
7585 };
7568 "webpack-core-0.6.9" = {
7586 "webpack-core-0.6.9" = {
7569 name = "webpack-core";
7587 name = "webpack-core";
7570 packageName = "webpack-core";
7588 packageName = "webpack-core";
7571 version = "0.6.9";
7589 version = "0.6.9";
7572 src = fetchurl {
7590 src = fetchurl {
7573 url = "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz";
7591 url = "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz";
7574 sha1 = "fc571588c8558da77be9efb6debdc5a3b172bdc2";
7592 sha1 = "fc571588c8558da77be9efb6debdc5a3b172bdc2";
7575 };
7593 };
7576 };
7594 };
7577 "webpack-sources-1.4.3" = {
7595 "webpack-sources-1.4.3" = {
7578 name = "webpack-sources";
7596 name = "webpack-sources";
7579 packageName = "webpack-sources";
7597 packageName = "webpack-sources";
7580 version = "1.4.3";
7598 version = "1.4.3";
7581 src = fetchurl {
7599 src = fetchurl {
7582 url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz";
7600 url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz";
7583 sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==";
7601 sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==";
7584 };
7602 };
7585 };
7603 };
7586 "webpack-uglify-js-plugin-1.1.9" = {
7604 "webpack-uglify-js-plugin-1.1.9" = {
7587 name = "webpack-uglify-js-plugin";
7605 name = "webpack-uglify-js-plugin";
7588 packageName = "webpack-uglify-js-plugin";
7606 packageName = "webpack-uglify-js-plugin";
7589 version = "1.1.9";
7607 version = "1.1.9";
7590 src = fetchurl {
7608 src = fetchurl {
7591 url = "https://registry.npmjs.org/webpack-uglify-js-plugin/-/webpack-uglify-js-plugin-1.1.9.tgz";
7609 url = "https://registry.npmjs.org/webpack-uglify-js-plugin/-/webpack-uglify-js-plugin-1.1.9.tgz";
7592 sha1 = "ecd4c27843a4ac17ee318f45229cdf1d2fb5e103";
7610 sha1 = "ecd4c27843a4ac17ee318f45229cdf1d2fb5e103";
7593 };
7611 };
7594 };
7612 };
7595 "whet.extend-0.9.9" = {
7613 "whet.extend-0.9.9" = {
7596 name = "whet.extend";
7614 name = "whet.extend";
7597 packageName = "whet.extend";
7615 packageName = "whet.extend";
7598 version = "0.9.9";
7616 version = "0.9.9";
7599 src = fetchurl {
7617 src = fetchurl {
7600 url = "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz";
7618 url = "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz";
7601 sha1 = "f877d5bf648c97e5aa542fadc16d6a259b9c11a1";
7619 sha1 = "f877d5bf648c97e5aa542fadc16d6a259b9c11a1";
7602 };
7620 };
7603 };
7621 };
7604 "which-1.0.9" = {
7622 "which-1.0.9" = {
7605 name = "which";
7623 name = "which";
7606 packageName = "which";
7624 packageName = "which";
7607 version = "1.0.9";
7625 version = "1.0.9";
7608 src = fetchurl {
7626 src = fetchurl {
7609 url = "https://registry.npmjs.org/which/-/which-1.0.9.tgz";
7627 url = "https://registry.npmjs.org/which/-/which-1.0.9.tgz";
7610 sha1 = "460c1da0f810103d0321a9b633af9e575e64486f";
7628 sha1 = "460c1da0f810103d0321a9b633af9e575e64486f";
7611 };
7629 };
7612 };
7630 };
7613 "which-1.3.1" = {
7631 "which-1.3.1" = {
7614 name = "which";
7632 name = "which";
7615 packageName = "which";
7633 packageName = "which";
7616 version = "1.3.1";
7634 version = "1.3.1";
7617 src = fetchurl {
7635 src = fetchurl {
7618 url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
7636 url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
7619 sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
7637 sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
7620 };
7638 };
7621 };
7639 };
7622 "which-module-2.0.0" = {
7640 "which-module-2.0.0" = {
7623 name = "which-module";
7641 name = "which-module";
7624 packageName = "which-module";
7642 packageName = "which-module";
7625 version = "2.0.0";
7643 version = "2.0.0";
7626 src = fetchurl {
7644 src = fetchurl {
7627 url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
7645 url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
7628 sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
7646 sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
7629 };
7647 };
7630 };
7648 };
7631 "window-size-0.1.0" = {
7649 "window-size-0.1.0" = {
7632 name = "window-size";
7650 name = "window-size";
7633 packageName = "window-size";
7651 packageName = "window-size";
7634 version = "0.1.0";
7652 version = "0.1.0";
7635 src = fetchurl {
7653 src = fetchurl {
7636 url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
7654 url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
7637 sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
7655 sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
7638 };
7656 };
7639 };
7657 };
7640 "wordwrap-0.0.2" = {
7658 "wordwrap-0.0.2" = {
7641 name = "wordwrap";
7659 name = "wordwrap";
7642 packageName = "wordwrap";
7660 packageName = "wordwrap";
7643 version = "0.0.2";
7661 version = "0.0.2";
7644 src = fetchurl {
7662 src = fetchurl {
7645 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
7663 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
7646 sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
7664 sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
7647 };
7665 };
7648 };
7666 };
7649 "worker-farm-1.7.0" = {
7667 "worker-farm-1.7.0" = {
7650 name = "worker-farm";
7668 name = "worker-farm";
7651 packageName = "worker-farm";
7669 packageName = "worker-farm";
7652 version = "1.7.0";
7670 version = "1.7.0";
7653 src = fetchurl {
7671 src = fetchurl {
7654 url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz";
7672 url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz";
7655 sha512 = "rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==";
7673 sha512 = "rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==";
7656 };
7674 };
7657 };
7675 };
7658 "wrap-ansi-2.1.0" = {
7676 "wrap-ansi-2.1.0" = {
7659 name = "wrap-ansi";
7677 name = "wrap-ansi";
7660 packageName = "wrap-ansi";
7678 packageName = "wrap-ansi";
7661 version = "2.1.0";
7679 version = "2.1.0";
7662 src = fetchurl {
7680 src = fetchurl {
7663 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
7681 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
7664 sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
7682 sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
7665 };
7683 };
7666 };
7684 };
7667 "wrappy-1.0.2" = {
7685 "wrappy-1.0.2" = {
7668 name = "wrappy";
7686 name = "wrappy";
7669 packageName = "wrappy";
7687 packageName = "wrappy";
7670 version = "1.0.2";
7688 version = "1.0.2";
7671 src = fetchurl {
7689 src = fetchurl {
7672 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
7690 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
7673 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
7691 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
7674 };
7692 };
7675 };
7693 };
7676 "xtend-4.0.2" = {
7694 "xtend-4.0.2" = {
7677 name = "xtend";
7695 name = "xtend";
7678 packageName = "xtend";
7696 packageName = "xtend";
7679 version = "4.0.2";
7697 version = "4.0.2";
7680 src = fetchurl {
7698 src = fetchurl {
7681 url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz";
7699 url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz";
7682 sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==";
7700 sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==";
7683 };
7701 };
7684 };
7702 };
7685 "y18n-4.0.0" = {
7703 "y18n-4.0.0" = {
7686 name = "y18n";
7704 name = "y18n";
7687 packageName = "y18n";
7705 packageName = "y18n";
7688 version = "4.0.0";
7706 version = "4.0.0";
7689 src = fetchurl {
7707 src = fetchurl {
7690 url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
7708 url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
7691 sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
7709 sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
7692 };
7710 };
7693 };
7711 };
7694 "yallist-2.1.2" = {
7712 "yallist-2.1.2" = {
7695 name = "yallist";
7713 name = "yallist";
7696 packageName = "yallist";
7714 packageName = "yallist";
7697 version = "2.1.2";
7715 version = "2.1.2";
7698 src = fetchurl {
7716 src = fetchurl {
7699 url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
7717 url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
7700 sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
7718 sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
7701 };
7719 };
7702 };
7720 };
7703 "yargs-12.0.5" = {
7721 "yargs-12.0.5" = {
7704 name = "yargs";
7722 name = "yargs";
7705 packageName = "yargs";
7723 packageName = "yargs";
7706 version = "12.0.5";
7724 version = "12.0.5";
7707 src = fetchurl {
7725 src = fetchurl {
7708 url = "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz";
7726 url = "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz";
7709 sha512 = "Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==";
7727 sha512 = "Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==";
7710 };
7728 };
7711 };
7729 };
7712 "yargs-3.10.0" = {
7730 "yargs-3.10.0" = {
7713 name = "yargs";
7731 name = "yargs";
7714 packageName = "yargs";
7732 packageName = "yargs";
7715 version = "3.10.0";
7733 version = "3.10.0";
7716 src = fetchurl {
7734 src = fetchurl {
7717 url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
7735 url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
7718 sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
7736 sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
7719 };
7737 };
7720 };
7738 };
7721 "yargs-parser-11.1.1" = {
7739 "yargs-parser-11.1.1" = {
7722 name = "yargs-parser";
7740 name = "yargs-parser";
7723 packageName = "yargs-parser";
7741 packageName = "yargs-parser";
7724 version = "11.1.1";
7742 version = "11.1.1";
7725 src = fetchurl {
7743 src = fetchurl {
7726 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz";
7744 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz";
7727 sha512 = "C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==";
7745 sha512 = "C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==";
7728 };
7746 };
7729 };
7747 };
7730 };
7748 };
7731 args = {
7749 args = {
7732 name = "rhodecode-enterprise";
7750 name = "rhodecode-enterprise";
7733 packageName = "rhodecode-enterprise";
7751 packageName = "rhodecode-enterprise";
7734 version = "2.0.0";
7752 version = "3.0.0";
7735 src = ./..;
7753 src = ./..;
7736 dependencies = [
7754 dependencies = [
7737 sources."@polymer/font-roboto-3.0.2"
7755 sources."@polymer/font-roboto-3.0.2"
7738 sources."@polymer/iron-a11y-announcer-3.0.2"
7756 sources."@polymer/iron-a11y-announcer-3.0.2"
7739 sources."@polymer/iron-a11y-keys-3.0.1"
7757 sources."@polymer/iron-a11y-keys-3.0.1"
7740 sources."@polymer/iron-a11y-keys-behavior-3.0.1"
7758 sources."@polymer/iron-a11y-keys-behavior-3.0.1"
7741 sources."@polymer/iron-ajax-3.0.1"
7759 sources."@polymer/iron-ajax-3.0.1"
7742 sources."@polymer/iron-autogrow-textarea-3.0.3"
7760 sources."@polymer/iron-autogrow-textarea-3.0.3"
7743 sources."@polymer/iron-behaviors-3.0.1"
7761 sources."@polymer/iron-behaviors-3.0.1"
7744 sources."@polymer/iron-checked-element-behavior-3.0.1"
7762 sources."@polymer/iron-checked-element-behavior-3.0.1"
7745 sources."@polymer/iron-fit-behavior-3.0.2"
7763 sources."@polymer/iron-fit-behavior-3.0.2"
7746 sources."@polymer/iron-flex-layout-3.0.1"
7764 sources."@polymer/iron-flex-layout-3.0.1"
7747 sources."@polymer/iron-form-element-behavior-3.0.1"
7765 sources."@polymer/iron-form-element-behavior-3.0.1"
7748 sources."@polymer/iron-meta-3.0.1"
7766 sources."@polymer/iron-meta-3.0.1"
7749 sources."@polymer/iron-overlay-behavior-3.0.3"
7767 sources."@polymer/iron-overlay-behavior-3.0.3"
7750 sources."@polymer/iron-resizable-behavior-3.0.1"
7768 sources."@polymer/iron-resizable-behavior-3.0.1"
7751 sources."@polymer/iron-validatable-behavior-3.0.1"
7769 sources."@polymer/iron-validatable-behavior-3.0.1"
7752 sources."@polymer/paper-behaviors-3.0.1"
7770 sources."@polymer/paper-behaviors-3.0.1"
7753 sources."@polymer/paper-button-3.0.1"
7771 sources."@polymer/paper-button-3.0.1"
7754 sources."@polymer/paper-ripple-3.0.2"
7772 sources."@polymer/paper-ripple-3.0.2"
7755 sources."@polymer/paper-spinner-3.0.2"
7773 sources."@polymer/paper-spinner-3.0.2"
7756 sources."@polymer/paper-styles-3.0.1"
7774 sources."@polymer/paper-styles-3.0.1"
7757 sources."@polymer/paper-toast-3.0.1"
7775 sources."@polymer/paper-toast-3.0.1"
7758 sources."@polymer/paper-toggle-button-3.0.1"
7776 sources."@polymer/paper-toggle-button-3.0.1"
7759 sources."@polymer/paper-tooltip-3.0.1"
7777 sources."@polymer/paper-tooltip-3.0.1"
7760 sources."@polymer/polymer-3.3.1"
7778 sources."@polymer/polymer-3.4.1"
7761 sources."@types/clone-0.1.30"
7779 sources."@types/clone-0.1.30"
7762 sources."@types/node-6.14.10"
7780 sources."@types/node-6.14.10"
7763 sources."@types/parse5-2.2.34"
7781 sources."@types/parse5-2.2.34"
7764 sources."@webassemblyjs/ast-1.7.10"
7782 sources."@webassemblyjs/ast-1.7.10"
7765 sources."@webassemblyjs/floating-point-hex-parser-1.7.10"
7783 sources."@webassemblyjs/floating-point-hex-parser-1.7.10"
7766 sources."@webassemblyjs/helper-api-error-1.7.10"
7784 sources."@webassemblyjs/helper-api-error-1.7.10"
7767 sources."@webassemblyjs/helper-buffer-1.7.10"
7785 sources."@webassemblyjs/helper-buffer-1.7.10"
7768 sources."@webassemblyjs/helper-code-frame-1.7.10"
7786 sources."@webassemblyjs/helper-code-frame-1.7.10"
7769 sources."@webassemblyjs/helper-fsm-1.7.10"
7787 sources."@webassemblyjs/helper-fsm-1.7.10"
7770 sources."@webassemblyjs/helper-module-context-1.7.10"
7788 sources."@webassemblyjs/helper-module-context-1.7.10"
7771 sources."@webassemblyjs/helper-wasm-bytecode-1.7.10"
7789 sources."@webassemblyjs/helper-wasm-bytecode-1.7.10"
7772 sources."@webassemblyjs/helper-wasm-section-1.7.10"
7790 sources."@webassemblyjs/helper-wasm-section-1.7.10"
7773 sources."@webassemblyjs/ieee754-1.7.10"
7791 sources."@webassemblyjs/ieee754-1.7.10"
7774 sources."@webassemblyjs/leb128-1.7.10"
7792 sources."@webassemblyjs/leb128-1.7.10"
7775 sources."@webassemblyjs/utf8-1.7.10"
7793 sources."@webassemblyjs/utf8-1.7.10"
7776 sources."@webassemblyjs/wasm-edit-1.7.10"
7794 sources."@webassemblyjs/wasm-edit-1.7.10"
7777 sources."@webassemblyjs/wasm-gen-1.7.10"
7795 sources."@webassemblyjs/wasm-gen-1.7.10"
7778 sources."@webassemblyjs/wasm-opt-1.7.10"
7796 sources."@webassemblyjs/wasm-opt-1.7.10"
7779 sources."@webassemblyjs/wasm-parser-1.7.10"
7797 sources."@webassemblyjs/wasm-parser-1.7.10"
7780 sources."@webassemblyjs/wast-parser-1.7.10"
7798 sources."@webassemblyjs/wast-parser-1.7.10"
7781 sources."@webassemblyjs/wast-printer-1.7.10"
7799 sources."@webassemblyjs/wast-printer-1.7.10"
7782 sources."@webcomponents/shadycss-1.9.6"
7800 sources."@webcomponents/shadycss-1.9.6"
7783 sources."@webcomponents/webcomponentsjs-2.4.3"
7801 sources."@webcomponents/webcomponentsjs-2.4.3"
7784 sources."@xtuc/ieee754-1.2.0"
7802 sources."@xtuc/ieee754-1.2.0"
7785 sources."@xtuc/long-4.2.1"
7803 sources."@xtuc/long-4.2.1"
7786 sources."abbrev-1.1.1"
7804 sources."abbrev-1.1.1"
7787 sources."acorn-5.7.4"
7805 sources."acorn-5.7.4"
7788 sources."acorn-dynamic-import-3.0.0"
7806 sources."acorn-dynamic-import-3.0.0"
7789 (sources."acorn-jsx-3.0.1" // {
7807 (sources."acorn-jsx-3.0.1" // {
7790 dependencies = [
7808 dependencies = [
7791 sources."acorn-3.3.0"
7809 sources."acorn-3.3.0"
7792 ];
7810 ];
7793 })
7811 })
7794 sources."ajv-4.11.8"
7812 sources."ajv-4.11.8"
7795 sources."ajv-keywords-3.4.1"
7813 sources."ajv-keywords-3.4.1"
7796 (sources."align-text-0.1.4" // {
7814 (sources."align-text-0.1.4" // {
7797 dependencies = [
7815 dependencies = [
7798 sources."kind-of-3.2.2"
7816 sources."kind-of-3.2.2"
7799 ];
7817 ];
7800 })
7818 })
7801 sources."alphanum-sort-1.0.2"
7819 sources."alphanum-sort-1.0.2"
7802 sources."amdefine-1.0.1"
7820 sources."amdefine-1.0.1"
7803 sources."ansi-regex-0.2.1"
7821 sources."ansi-regex-0.2.1"
7804 sources."ansi-styles-1.1.0"
7822 sources."ansi-styles-1.1.0"
7805 (sources."anymatch-2.0.0" // {
7823 (sources."anymatch-2.0.0" // {
7806 dependencies = [
7824 dependencies = [
7807 sources."normalize-path-2.1.1"
7825 sources."normalize-path-2.1.1"
7808 ];
7826 ];
7809 })
7827 })
7810 sources."appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1"
7828 sources."appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1"
7811 sources."aproba-1.2.0"
7829 sources."aproba-1.2.0"
7812 (sources."argparse-0.1.16" // {
7830 (sources."argparse-0.1.16" // {
7813 dependencies = [
7831 dependencies = [
7814 sources."underscore.string-2.4.0"
7832 sources."underscore.string-2.4.0"
7815 ];
7833 ];
7816 })
7834 })
7817 sources."arr-diff-4.0.0"
7835 sources."arr-diff-4.0.0"
7818 sources."arr-flatten-1.1.0"
7836 sources."arr-flatten-1.1.0"
7819 sources."arr-union-3.1.0"
7837 sources."arr-union-3.1.0"
7820 sources."array-each-1.0.1"
7838 sources."array-each-1.0.1"
7821 sources."array-slice-1.1.0"
7839 sources."array-slice-1.1.0"
7822 sources."array-union-1.0.2"
7840 sources."array-union-1.0.2"
7823 sources."array-uniq-1.0.3"
7841 sources."array-uniq-1.0.3"
7824 sources."array-unique-0.3.2"
7842 sources."array-unique-0.3.2"
7825 sources."asap-2.0.6"
7843 sources."asap-2.0.6"
7826 sources."asn1-0.2.4"
7844 sources."asn1-0.2.4"
7827 sources."asn1.js-4.10.1"
7845 (sources."asn1.js-4.10.1" // {
7846 dependencies = [
7847 sources."bn.js-4.11.8"
7848 ];
7849 })
7828 (sources."assert-1.5.0" // {
7850 (sources."assert-1.5.0" // {
7829 dependencies = [
7851 dependencies = [
7830 sources."inherits-2.0.1"
7852 sources."inherits-2.0.1"
7831 sources."util-0.10.3"
7853 sources."util-0.10.3"
7832 ];
7854 ];
7833 })
7855 })
7834 sources."assert-plus-0.2.0"
7856 sources."assert-plus-0.2.0"
7835 sources."assign-symbols-1.0.0"
7857 sources."assign-symbols-1.0.0"
7836 sources."ast-types-0.9.6"
7858 sources."ast-types-0.9.6"
7837 sources."async-0.1.22"
7859 sources."async-0.1.22"
7838 sources."async-each-1.0.3"
7860 sources."async-each-1.0.3"
7839 sources."asynckit-0.4.0"
7861 sources."asynckit-0.4.0"
7840 sources."atob-2.1.2"
7862 sources."atob-2.1.2"
7841 (sources."autoprefixer-6.7.7" // {
7863 (sources."autoprefixer-6.7.7" // {
7842 dependencies = [
7864 dependencies = [
7843 sources."browserslist-1.7.7"
7865 sources."browserslist-1.7.7"
7844 ];
7866 ];
7845 })
7867 })
7846 sources."aws-sign2-0.6.0"
7868 sources."aws-sign2-0.6.0"
7847 sources."aws4-1.9.1"
7869 sources."aws4-1.9.1"
7848 (sources."babel-code-frame-6.26.0" // {
7870 (sources."babel-code-frame-6.26.0" // {
7849 dependencies = [
7871 dependencies = [
7850 sources."ansi-regex-2.1.1"
7872 sources."ansi-regex-2.1.1"
7851 sources."ansi-styles-2.2.1"
7873 sources."ansi-styles-2.2.1"
7852 sources."chalk-1.1.3"
7874 sources."chalk-1.1.3"
7853 sources."has-ansi-2.0.0"
7875 sources."has-ansi-2.0.0"
7854 sources."strip-ansi-3.0.1"
7876 sources."strip-ansi-3.0.1"
7855 sources."supports-color-2.0.0"
7877 sources."supports-color-2.0.0"
7856 ];
7878 ];
7857 })
7879 })
7858 (sources."babel-core-6.26.3" // {
7880 (sources."babel-core-6.26.3" // {
7859 dependencies = [
7881 dependencies = [
7860 sources."json5-0.5.1"
7882 sources."json5-0.5.1"
7861 sources."lodash-4.17.15"
7883 sources."lodash-4.17.15"
7862 sources."minimatch-3.0.4"
7884 sources."minimatch-3.0.4"
7863 ];
7885 ];
7864 })
7886 })
7865 (sources."babel-generator-6.26.1" // {
7887 (sources."babel-generator-6.26.1" // {
7866 dependencies = [
7888 dependencies = [
7867 sources."lodash-4.17.15"
7889 sources."lodash-4.17.15"
7868 ];
7890 ];
7869 })
7891 })
7870 sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1"
7892 sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1"
7871 sources."babel-helper-call-delegate-6.24.1"
7893 sources."babel-helper-call-delegate-6.24.1"
7872 (sources."babel-helper-define-map-6.26.0" // {
7894 (sources."babel-helper-define-map-6.26.0" // {
7873 dependencies = [
7895 dependencies = [
7874 sources."lodash-4.17.15"
7896 sources."lodash-4.17.15"
7875 ];
7897 ];
7876 })
7898 })
7877 sources."babel-helper-explode-assignable-expression-6.24.1"
7899 sources."babel-helper-explode-assignable-expression-6.24.1"
7878 sources."babel-helper-function-name-6.24.1"
7900 sources."babel-helper-function-name-6.24.1"
7879 sources."babel-helper-get-function-arity-6.24.1"
7901 sources."babel-helper-get-function-arity-6.24.1"
7880 sources."babel-helper-hoist-variables-6.24.1"
7902 sources."babel-helper-hoist-variables-6.24.1"
7881 sources."babel-helper-optimise-call-expression-6.24.1"
7903 sources."babel-helper-optimise-call-expression-6.24.1"
7882 (sources."babel-helper-regex-6.26.0" // {
7904 (sources."babel-helper-regex-6.26.0" // {
7883 dependencies = [
7905 dependencies = [
7884 sources."lodash-4.17.15"
7906 sources."lodash-4.17.15"
7885 ];
7907 ];
7886 })
7908 })
7887 sources."babel-helper-remap-async-to-generator-6.24.1"
7909 sources."babel-helper-remap-async-to-generator-6.24.1"
7888 sources."babel-helper-replace-supers-6.24.1"
7910 sources."babel-helper-replace-supers-6.24.1"
7889 sources."babel-helpers-6.24.1"
7911 sources."babel-helpers-6.24.1"
7890 sources."babel-loader-7.1.5"
7912 sources."babel-loader-7.1.5"
7891 sources."babel-messages-6.23.0"
7913 sources."babel-messages-6.23.0"
7892 sources."babel-plugin-check-es2015-constants-6.22.0"
7914 sources."babel-plugin-check-es2015-constants-6.22.0"
7893 sources."babel-plugin-syntax-async-functions-6.13.0"
7915 sources."babel-plugin-syntax-async-functions-6.13.0"
7894 sources."babel-plugin-syntax-exponentiation-operator-6.13.0"
7916 sources."babel-plugin-syntax-exponentiation-operator-6.13.0"
7895 sources."babel-plugin-syntax-object-rest-spread-6.13.0"
7917 sources."babel-plugin-syntax-object-rest-spread-6.13.0"
7896 sources."babel-plugin-syntax-trailing-function-commas-6.22.0"
7918 sources."babel-plugin-syntax-trailing-function-commas-6.22.0"
7897 sources."babel-plugin-transform-async-to-generator-6.24.1"
7919 sources."babel-plugin-transform-async-to-generator-6.24.1"
7898 sources."babel-plugin-transform-es2015-arrow-functions-6.22.0"
7920 sources."babel-plugin-transform-es2015-arrow-functions-6.22.0"
7899 sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0"
7921 sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0"
7900 (sources."babel-plugin-transform-es2015-block-scoping-6.26.0" // {
7922 (sources."babel-plugin-transform-es2015-block-scoping-6.26.0" // {
7901 dependencies = [
7923 dependencies = [
7902 sources."lodash-4.17.15"
7924 sources."lodash-4.17.15"
7903 ];
7925 ];
7904 })
7926 })
7905 sources."babel-plugin-transform-es2015-classes-6.24.1"
7927 sources."babel-plugin-transform-es2015-classes-6.24.1"
7906 sources."babel-plugin-transform-es2015-computed-properties-6.24.1"
7928 sources."babel-plugin-transform-es2015-computed-properties-6.24.1"
7907 sources."babel-plugin-transform-es2015-destructuring-6.23.0"
7929 sources."babel-plugin-transform-es2015-destructuring-6.23.0"
7908 sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1"
7930 sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1"
7909 sources."babel-plugin-transform-es2015-for-of-6.23.0"
7931 sources."babel-plugin-transform-es2015-for-of-6.23.0"
7910 sources."babel-plugin-transform-es2015-function-name-6.24.1"
7932 sources."babel-plugin-transform-es2015-function-name-6.24.1"
7911 sources."babel-plugin-transform-es2015-literals-6.22.0"
7933 sources."babel-plugin-transform-es2015-literals-6.22.0"
7912 sources."babel-plugin-transform-es2015-modules-amd-6.24.1"
7934 sources."babel-plugin-transform-es2015-modules-amd-6.24.1"
7913 sources."babel-plugin-transform-es2015-modules-commonjs-6.26.2"
7935 sources."babel-plugin-transform-es2015-modules-commonjs-6.26.2"
7914 sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1"
7936 sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1"
7915 sources."babel-plugin-transform-es2015-modules-umd-6.24.1"
7937 sources."babel-plugin-transform-es2015-modules-umd-6.24.1"
7916 sources."babel-plugin-transform-es2015-object-super-6.24.1"
7938 sources."babel-plugin-transform-es2015-object-super-6.24.1"
7917 sources."babel-plugin-transform-es2015-parameters-6.24.1"
7939 sources."babel-plugin-transform-es2015-parameters-6.24.1"
7918 sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1"
7940 sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1"
7919 sources."babel-plugin-transform-es2015-spread-6.22.0"
7941 sources."babel-plugin-transform-es2015-spread-6.22.0"
7920 sources."babel-plugin-transform-es2015-sticky-regex-6.24.1"
7942 sources."babel-plugin-transform-es2015-sticky-regex-6.24.1"
7921 sources."babel-plugin-transform-es2015-template-literals-6.22.0"
7943 sources."babel-plugin-transform-es2015-template-literals-6.22.0"
7922 sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0"
7944 sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0"
7923 sources."babel-plugin-transform-es2015-unicode-regex-6.24.1"
7945 sources."babel-plugin-transform-es2015-unicode-regex-6.24.1"
7924 sources."babel-plugin-transform-exponentiation-operator-6.24.1"
7946 sources."babel-plugin-transform-exponentiation-operator-6.24.1"
7925 sources."babel-plugin-transform-object-rest-spread-6.26.0"
7947 sources."babel-plugin-transform-object-rest-spread-6.26.0"
7926 sources."babel-plugin-transform-regenerator-6.26.0"
7948 sources."babel-plugin-transform-regenerator-6.26.0"
7927 sources."babel-plugin-transform-strict-mode-6.24.1"
7949 sources."babel-plugin-transform-strict-mode-6.24.1"
7928 sources."babel-preset-env-1.7.0"
7950 sources."babel-preset-env-1.7.0"
7929 (sources."babel-register-6.26.0" // {
7951 (sources."babel-register-6.26.0" // {
7930 dependencies = [
7952 dependencies = [
7931 sources."lodash-4.17.15"
7953 sources."lodash-4.17.15"
7932 ];
7954 ];
7933 })
7955 })
7934 sources."babel-runtime-6.26.0"
7956 sources."babel-runtime-6.26.0"
7935 (sources."babel-template-6.26.0" // {
7957 (sources."babel-template-6.26.0" // {
7936 dependencies = [
7958 dependencies = [
7937 sources."lodash-4.17.15"
7959 sources."lodash-4.17.15"
7938 ];
7960 ];
7939 })
7961 })
7940 (sources."babel-traverse-6.26.0" // {
7962 (sources."babel-traverse-6.26.0" // {
7941 dependencies = [
7963 dependencies = [
7942 sources."lodash-4.17.15"
7964 sources."lodash-4.17.15"
7943 ];
7965 ];
7944 })
7966 })
7945 (sources."babel-types-6.26.0" // {
7967 (sources."babel-types-6.26.0" // {
7946 dependencies = [
7968 dependencies = [
7947 sources."lodash-4.17.15"
7969 sources."lodash-4.17.15"
7948 ];
7970 ];
7949 })
7971 })
7950 sources."babylon-6.18.0"
7972 sources."babylon-6.18.0"
7951 sources."balanced-match-1.0.0"
7973 sources."balanced-match-1.0.0"
7952 (sources."base-0.11.2" // {
7974 (sources."base-0.11.2" // {
7953 dependencies = [
7975 dependencies = [
7954 sources."define-property-1.0.0"
7976 sources."define-property-1.0.0"
7955 ];
7977 ];
7956 })
7978 })
7957 sources."base64-js-1.3.1"
7979 sources."base64-js-1.3.1"
7958 sources."bcrypt-pbkdf-1.0.2"
7980 sources."bcrypt-pbkdf-1.0.2"
7959 sources."big.js-5.2.2"
7981 sources."big.js-5.2.2"
7960 sources."binary-extensions-1.13.1"
7982 sources."binary-extensions-1.13.1"
7961 sources."bindings-1.5.0"
7983 sources."bindings-1.5.0"
7962 sources."bluebird-3.7.2"
7984 sources."bluebird-3.7.2"
7963 sources."bn.js-4.11.8"
7985 sources."bn.js-5.1.1"
7964 sources."boolbase-1.0.0"
7986 sources."boolbase-1.0.0"
7965 sources."boom-2.10.1"
7987 sources."boom-2.10.1"
7966 sources."brace-expansion-1.1.11"
7988 sources."brace-expansion-1.1.11"
7967 (sources."braces-2.3.2" // {
7989 (sources."braces-2.3.2" // {
7968 dependencies = [
7990 dependencies = [
7969 sources."extend-shallow-2.0.1"
7991 sources."extend-shallow-2.0.1"
7970 ];
7992 ];
7971 })
7993 })
7972 sources."brorand-1.1.0"
7994 sources."brorand-1.1.0"
7973 sources."browserify-aes-1.2.0"
7995 sources."browserify-aes-1.2.0"
7974 sources."browserify-cipher-1.0.1"
7996 sources."browserify-cipher-1.0.1"
7975 sources."browserify-des-1.0.2"
7997 sources."browserify-des-1.0.2"
7976 sources."browserify-rsa-4.0.1"
7998 (sources."browserify-rsa-4.0.1" // {
7977 sources."browserify-sign-4.0.4"
7999 dependencies = [
8000 sources."bn.js-4.11.8"
8001 ];
8002 })
8003 (sources."browserify-sign-4.1.0" // {
8004 dependencies = [
8005 sources."readable-stream-3.6.0"
8006 sources."string_decoder-1.3.0"
8007 ];
8008 })
7978 sources."browserify-zlib-0.2.0"
8009 sources."browserify-zlib-0.2.0"
7979 sources."browserslist-3.2.8"
8010 sources."browserslist-3.2.8"
7980 sources."buffer-4.9.2"
8011 sources."buffer-4.9.2"
7981 sources."buffer-from-1.1.1"
8012 sources."buffer-from-1.1.1"
7982 sources."buffer-xor-1.0.3"
8013 sources."buffer-xor-1.0.3"
7983 sources."builtin-status-codes-3.0.0"
8014 sources."builtin-status-codes-3.0.0"
7984 (sources."cacache-10.0.4" // {
8015 (sources."cacache-10.0.4" // {
7985 dependencies = [
8016 dependencies = [
7986 sources."glob-7.1.6"
8017 sources."glob-7.1.6"
7987 sources."graceful-fs-4.2.3"
8018 sources."graceful-fs-4.2.4"
7988 sources."lru-cache-4.1.5"
8019 sources."lru-cache-4.1.5"
7989 sources."minimatch-3.0.4"
8020 sources."minimatch-3.0.4"
7990 sources."rimraf-2.7.1"
8021 sources."rimraf-2.7.1"
7991 ];
8022 ];
7992 })
8023 })
7993 sources."cache-base-1.0.1"
8024 sources."cache-base-1.0.1"
7994 sources."camel-case-3.0.0"
8025 sources."camel-case-3.0.0"
7995 sources."camelcase-5.3.1"
8026 sources."camelcase-5.3.1"
7996 (sources."caniuse-api-1.6.1" // {
8027 (sources."caniuse-api-1.6.1" // {
7997 dependencies = [
8028 dependencies = [
7998 sources."browserslist-1.7.7"
8029 sources."browserslist-1.7.7"
7999 ];
8030 ];
8000 })
8031 })
8001 sources."caniuse-db-1.0.30001042"
8032 sources."caniuse-db-1.0.30001055"
8002 sources."caniuse-lite-1.0.30001042"
8033 sources."caniuse-lite-1.0.30001055"
8003 sources."caseless-0.12.0"
8034 sources."caseless-0.12.0"
8004 sources."center-align-0.1.3"
8035 sources."center-align-0.1.3"
8005 sources."chalk-0.5.1"
8036 sources."chalk-0.5.1"
8006 (sources."chokidar-2.1.8" // {
8037 (sources."chokidar-2.1.8" // {
8007 dependencies = [
8038 dependencies = [
8008 sources."is-glob-4.0.1"
8039 sources."is-glob-4.0.1"
8009 ];
8040 ];
8010 })
8041 })
8011 sources."chownr-1.1.4"
8042 sources."chownr-1.1.4"
8012 sources."chrome-trace-event-1.0.2"
8043 sources."chrome-trace-event-1.0.2"
8013 sources."cipher-base-1.0.4"
8044 sources."cipher-base-1.0.4"
8014 (sources."clap-1.2.3" // {
8045 (sources."clap-1.2.3" // {
8015 dependencies = [
8046 dependencies = [
8016 sources."ansi-regex-2.1.1"
8047 sources."ansi-regex-2.1.1"
8017 sources."ansi-styles-2.2.1"
8048 sources."ansi-styles-2.2.1"
8018 sources."chalk-1.1.3"
8049 sources."chalk-1.1.3"
8019 sources."has-ansi-2.0.0"
8050 sources."has-ansi-2.0.0"
8020 sources."strip-ansi-3.0.1"
8051 sources."strip-ansi-3.0.1"
8021 sources."supports-color-2.0.0"
8052 sources."supports-color-2.0.0"
8022 ];
8053 ];
8023 })
8054 })
8024 (sources."class-utils-0.3.6" // {
8055 (sources."class-utils-0.3.6" // {
8025 dependencies = [
8056 dependencies = [
8026 sources."define-property-0.2.5"
8057 sources."define-property-0.2.5"
8027 (sources."is-accessor-descriptor-0.1.6" // {
8058 (sources."is-accessor-descriptor-0.1.6" // {
8028 dependencies = [
8059 dependencies = [
8029 sources."kind-of-3.2.2"
8060 sources."kind-of-3.2.2"
8030 ];
8061 ];
8031 })
8062 })
8032 (sources."is-data-descriptor-0.1.4" // {
8063 (sources."is-data-descriptor-0.1.4" // {
8033 dependencies = [
8064 dependencies = [
8034 sources."kind-of-3.2.2"
8065 sources."kind-of-3.2.2"
8035 ];
8066 ];
8036 })
8067 })
8037 sources."is-descriptor-0.1.6"
8068 sources."is-descriptor-0.1.6"
8038 sources."kind-of-5.1.0"
8069 sources."kind-of-5.1.0"
8039 ];
8070 ];
8040 })
8071 })
8041 (sources."clean-css-4.2.3" // {
8072 (sources."clean-css-4.2.3" // {
8042 dependencies = [
8073 dependencies = [
8043 sources."source-map-0.6.1"
8074 sources."source-map-0.6.1"
8044 ];
8075 ];
8045 })
8076 })
8046 (sources."cli-1.0.1" // {
8077 (sources."cli-1.0.1" // {
8047 dependencies = [
8078 dependencies = [
8048 sources."glob-7.1.6"
8079 sources."glob-7.1.6"
8049 sources."minimatch-3.0.4"
8080 sources."minimatch-3.0.4"
8050 ];
8081 ];
8051 })
8082 })
8052 sources."clipboard-2.0.6"
8083 sources."clipboard-2.0.6"
8053 (sources."cliui-4.1.0" // {
8084 (sources."cliui-4.1.0" // {
8054 dependencies = [
8085 dependencies = [
8055 sources."ansi-regex-3.0.0"
8086 sources."ansi-regex-3.0.0"
8056 sources."strip-ansi-4.0.0"
8087 sources."strip-ansi-4.0.0"
8057 ];
8088 ];
8058 })
8089 })
8059 sources."clone-1.0.4"
8090 sources."clone-1.0.4"
8060 sources."co-4.6.0"
8091 sources."co-4.6.0"
8061 sources."coa-1.0.4"
8092 sources."coa-1.0.4"
8062 sources."code-point-at-1.1.0"
8093 sources."code-point-at-1.1.0"
8063 sources."coffee-script-1.3.3"
8094 sources."coffee-script-1.3.3"
8064 sources."collection-visit-1.0.0"
8095 sources."collection-visit-1.0.0"
8065 sources."color-0.11.4"
8096 sources."color-0.11.4"
8066 sources."color-convert-1.9.3"
8097 sources."color-convert-1.9.3"
8067 sources."color-name-1.1.3"
8098 sources."color-name-1.1.3"
8068 sources."color-string-0.3.0"
8099 sources."color-string-0.3.0"
8069 sources."colormin-1.1.2"
8100 sources."colormin-1.1.2"
8070 sources."colors-0.6.2"
8101 sources."colors-0.6.2"
8071 sources."combined-stream-1.0.8"
8102 sources."combined-stream-1.0.8"
8072 sources."commander-2.20.3"
8103 sources."commander-2.20.3"
8073 sources."commondir-1.0.1"
8104 sources."commondir-1.0.1"
8074 sources."component-emitter-1.3.0"
8105 sources."component-emitter-1.3.0"
8075 sources."concat-map-0.0.1"
8106 sources."concat-map-0.0.1"
8076 (sources."concat-stream-1.6.2" // {
8107 (sources."concat-stream-1.6.2" // {
8077 dependencies = [
8108 dependencies = [
8078 sources."readable-stream-2.3.7"
8109 sources."readable-stream-2.3.7"
8079 sources."safe-buffer-5.1.2"
8110 sources."safe-buffer-5.1.2"
8080 sources."string_decoder-1.1.1"
8111 sources."string_decoder-1.1.1"
8081 ];
8112 ];
8082 })
8113 })
8083 sources."console-browserify-1.1.0"
8114 sources."console-browserify-1.1.0"
8084 sources."constants-browserify-1.0.0"
8115 sources."constants-browserify-1.0.0"
8085 (sources."convert-source-map-1.7.0" // {
8116 (sources."convert-source-map-1.7.0" // {
8086 dependencies = [
8117 dependencies = [
8087 sources."safe-buffer-5.1.2"
8118 sources."safe-buffer-5.1.2"
8088 ];
8119 ];
8089 })
8120 })
8090 (sources."copy-concurrently-1.0.5" // {
8121 (sources."copy-concurrently-1.0.5" // {
8091 dependencies = [
8122 dependencies = [
8092 sources."glob-7.1.6"
8123 sources."glob-7.1.6"
8093 sources."minimatch-3.0.4"
8124 sources."minimatch-3.0.4"
8094 sources."rimraf-2.7.1"
8125 sources."rimraf-2.7.1"
8095 ];
8126 ];
8096 })
8127 })
8097 sources."copy-descriptor-0.1.1"
8128 sources."copy-descriptor-0.1.1"
8098 (sources."copy-webpack-plugin-4.6.0" // {
8129 (sources."copy-webpack-plugin-4.6.0" // {
8099 dependencies = [
8130 dependencies = [
8100 sources."is-glob-4.0.1"
8131 sources."is-glob-4.0.1"
8101 sources."minimatch-3.0.4"
8132 sources."minimatch-3.0.4"
8102 ];
8133 ];
8103 })
8134 })
8104 sources."core-js-2.6.11"
8135 sources."core-js-2.6.11"
8105 sources."core-util-is-1.0.2"
8136 sources."core-util-is-1.0.2"
8106 sources."create-ecdh-4.0.3"
8137 (sources."create-ecdh-4.0.3" // {
8138 dependencies = [
8139 sources."bn.js-4.11.8"
8140 ];
8141 })
8107 sources."create-hash-1.2.0"
8142 sources."create-hash-1.2.0"
8108 sources."create-hmac-1.1.7"
8143 sources."create-hmac-1.1.7"
8109 (sources."cross-spawn-6.0.5" // {
8144 (sources."cross-spawn-6.0.5" // {
8110 dependencies = [
8145 dependencies = [
8111 sources."which-1.3.1"
8146 sources."which-1.3.1"
8112 ];
8147 ];
8113 })
8148 })
8114 sources."cryptiles-2.0.5"
8149 sources."cryptiles-2.0.5"
8115 sources."crypto-browserify-3.12.0"
8150 sources."crypto-browserify-3.12.0"
8116 sources."css-color-names-0.0.4"
8151 sources."css-color-names-0.0.4"
8117 sources."css-loader-0.28.11"
8152 sources."css-loader-0.28.11"
8118 sources."css-select-1.2.0"
8153 sources."css-select-1.2.0"
8119 (sources."css-selector-tokenizer-0.7.2" // {
8154 (sources."css-selector-tokenizer-0.7.2" // {
8120 dependencies = [
8155 dependencies = [
8121 sources."jsesc-0.5.0"
8156 sources."jsesc-0.5.0"
8122 sources."regexpu-core-4.7.0"
8157 sources."regexpu-core-4.7.0"
8123 sources."regjsgen-0.5.1"
8158 sources."regjsgen-0.5.1"
8124 sources."regjsparser-0.6.4"
8159 sources."regjsparser-0.6.4"
8125 ];
8160 ];
8126 })
8161 })
8127 sources."css-what-2.1.3"
8162 sources."css-what-2.1.3"
8128 sources."cssesc-3.0.0"
8163 sources."cssesc-3.0.0"
8129 sources."cssnano-3.10.0"
8164 sources."cssnano-3.10.0"
8130 sources."csso-2.3.2"
8165 sources."csso-2.3.2"
8131 sources."cyclist-1.0.1"
8166 sources."cyclist-1.0.1"
8132 (sources."dashdash-1.14.1" // {
8167 (sources."dashdash-1.14.1" // {
8133 dependencies = [
8168 dependencies = [
8134 sources."assert-plus-1.0.0"
8169 sources."assert-plus-1.0.0"
8135 ];
8170 ];
8136 })
8171 })
8137 sources."date-now-0.1.4"
8172 sources."date-now-0.1.4"
8138 sources."dateformat-1.0.2-1.2.3"
8173 sources."dateformat-1.0.2-1.2.3"
8139 sources."debug-2.6.9"
8174 sources."debug-2.6.9"
8140 sources."decamelize-1.2.0"
8175 sources."decamelize-1.2.0"
8141 sources."decode-uri-component-0.2.0"
8176 sources."decode-uri-component-0.2.0"
8142 sources."deep-for-each-2.0.3"
8177 sources."deep-for-each-2.0.3"
8143 sources."define-properties-1.1.3"
8178 sources."define-properties-1.1.3"
8144 sources."define-property-2.0.2"
8179 sources."define-property-2.0.2"
8145 sources."defined-1.0.0"
8180 sources."defined-1.0.0"
8146 sources."delayed-stream-1.0.0"
8181 sources."delayed-stream-1.0.0"
8147 sources."delegate-3.2.0"
8182 sources."delegate-3.2.0"
8148 sources."des.js-1.0.1"
8183 sources."des.js-1.0.1"
8149 sources."detect-file-1.0.0"
8184 sources."detect-file-1.0.0"
8150 sources."detect-indent-4.0.0"
8185 sources."detect-indent-4.0.0"
8151 sources."diffie-hellman-5.0.3"
8186 (sources."diffie-hellman-5.0.3" // {
8187 dependencies = [
8188 sources."bn.js-4.11.8"
8189 ];
8190 })
8152 sources."dir-glob-2.2.2"
8191 sources."dir-glob-2.2.2"
8153 sources."dom-converter-0.2.0"
8192 sources."dom-converter-0.2.0"
8154 (sources."dom-serializer-0.2.2" // {
8193 (sources."dom-serializer-0.2.2" // {
8155 dependencies = [
8194 dependencies = [
8156 sources."domelementtype-2.0.1"
8195 sources."domelementtype-2.0.1"
8157 sources."entities-2.0.0"
8196 sources."entities-2.0.2"
8158 ];
8197 ];
8159 })
8198 })
8160 (sources."dom5-2.3.0" // {
8199 (sources."dom5-2.3.0" // {
8161 dependencies = [
8200 dependencies = [
8162 sources."clone-2.1.2"
8201 sources."clone-2.1.2"
8163 sources."parse5-2.2.3"
8202 sources."parse5-2.2.3"
8164 ];
8203 ];
8165 })
8204 })
8166 sources."domain-browser-1.2.0"
8205 sources."domain-browser-1.2.0"
8167 sources."domelementtype-1.3.1"
8206 sources."domelementtype-1.3.1"
8168 sources."domhandler-2.3.0"
8207 sources."domhandler-2.3.0"
8169 sources."domutils-1.5.1"
8208 sources."domutils-1.5.1"
8170 sources."dropzone-5.7.0"
8209 sources."dropzone-5.7.0"
8171 sources."duplexer-0.1.1"
8210 sources."duplexer-0.1.1"
8172 (sources."duplexify-3.7.1" // {
8211 (sources."duplexify-3.7.1" // {
8173 dependencies = [
8212 dependencies = [
8174 sources."readable-stream-2.3.7"
8213 sources."readable-stream-2.3.7"
8175 sources."safe-buffer-5.1.2"
8214 sources."safe-buffer-5.1.2"
8176 sources."string_decoder-1.1.1"
8215 sources."string_decoder-1.1.1"
8177 ];
8216 ];
8178 })
8217 })
8179 sources."ecc-jsbn-0.1.2"
8218 sources."ecc-jsbn-0.1.2"
8180 sources."electron-to-chromium-1.3.412"
8219 sources."electron-to-chromium-1.3.433"
8181 sources."elliptic-6.5.2"
8220 (sources."elliptic-6.5.2" // {
8221 dependencies = [
8222 sources."bn.js-4.11.8"
8223 ];
8224 })
8182 sources."emojis-list-3.0.0"
8225 sources."emojis-list-3.0.0"
8183 sources."end-of-stream-1.4.4"
8226 sources."end-of-stream-1.4.4"
8184 (sources."enhanced-resolve-4.1.1" // {
8227 (sources."enhanced-resolve-4.1.1" // {
8185 dependencies = [
8228 dependencies = [
8186 sources."graceful-fs-4.2.3"
8229 sources."graceful-fs-4.2.4"
8187 sources."memory-fs-0.5.0"
8230 sources."memory-fs-0.5.0"
8188 sources."readable-stream-2.3.7"
8231 sources."readable-stream-2.3.7"
8189 sources."safe-buffer-5.1.2"
8232 sources."safe-buffer-5.1.2"
8190 sources."string_decoder-1.1.1"
8233 sources."string_decoder-1.1.1"
8191 ];
8234 ];
8192 })
8235 })
8193 sources."entities-1.0.0"
8236 sources."entities-1.0.0"
8194 sources."errno-0.1.7"
8237 sources."errno-0.1.7"
8195 sources."es-abstract-1.17.5"
8238 sources."es-abstract-1.17.5"
8196 sources."es-to-primitive-1.2.1"
8239 sources."es-to-primitive-1.2.1"
8197 sources."es6-templates-0.2.3"
8240 sources."es6-templates-0.2.3"
8198 sources."escape-string-regexp-1.0.5"
8241 sources."escape-string-regexp-1.0.5"
8199 sources."eslint-scope-4.0.3"
8242 sources."eslint-scope-4.0.3"
8200 sources."espree-3.5.4"
8243 sources."espree-3.5.4"
8201 sources."esprima-1.0.4"
8244 sources."esprima-1.0.4"
8202 sources."esrecurse-4.2.1"
8245 sources."esrecurse-4.2.1"
8203 sources."estraverse-4.3.0"
8246 sources."estraverse-4.3.0"
8204 sources."esutils-2.0.3"
8247 sources."esutils-2.0.3"
8205 sources."eventemitter2-0.4.14"
8248 sources."eventemitter2-0.4.14"
8206 sources."events-3.1.0"
8249 sources."events-3.1.0"
8207 sources."evp_bytestokey-1.0.3"
8250 sources."evp_bytestokey-1.0.3"
8208 sources."execa-1.0.0"
8251 sources."execa-1.0.0"
8209 sources."exit-0.1.2"
8252 sources."exit-0.1.2"
8210 (sources."expand-brackets-2.1.4" // {
8253 (sources."expand-brackets-2.1.4" // {
8211 dependencies = [
8254 dependencies = [
8212 sources."define-property-0.2.5"
8255 sources."define-property-0.2.5"
8213 sources."extend-shallow-2.0.1"
8256 sources."extend-shallow-2.0.1"
8214 (sources."is-accessor-descriptor-0.1.6" // {
8257 (sources."is-accessor-descriptor-0.1.6" // {
8215 dependencies = [
8258 dependencies = [
8216 sources."kind-of-3.2.2"
8259 sources."kind-of-3.2.2"
8217 ];
8260 ];
8218 })
8261 })
8219 (sources."is-data-descriptor-0.1.4" // {
8262 (sources."is-data-descriptor-0.1.4" // {
8220 dependencies = [
8263 dependencies = [
8221 sources."kind-of-3.2.2"
8264 sources."kind-of-3.2.2"
8222 ];
8265 ];
8223 })
8266 })
8224 sources."is-descriptor-0.1.6"
8267 sources."is-descriptor-0.1.6"
8225 sources."kind-of-5.1.0"
8268 sources."kind-of-5.1.0"
8226 ];
8269 ];
8227 })
8270 })
8228 sources."expand-tilde-2.0.2"
8271 sources."expand-tilde-2.0.2"
8229 sources."exports-loader-0.6.4"
8272 sources."exports-loader-0.6.4"
8230 sources."extend-3.0.2"
8273 sources."extend-3.0.2"
8231 (sources."extend-shallow-3.0.2" // {
8274 (sources."extend-shallow-3.0.2" // {
8232 dependencies = [
8275 dependencies = [
8233 sources."is-extendable-1.0.1"
8276 sources."is-extendable-1.0.1"
8234 ];
8277 ];
8235 })
8278 })
8236 (sources."extglob-2.0.4" // {
8279 (sources."extglob-2.0.4" // {
8237 dependencies = [
8280 dependencies = [
8238 sources."define-property-1.0.0"
8281 sources."define-property-1.0.0"
8239 sources."extend-shallow-2.0.1"
8282 sources."extend-shallow-2.0.1"
8240 ];
8283 ];
8241 })
8284 })
8242 sources."extsprintf-1.3.0"
8285 sources."extsprintf-1.3.0"
8243 sources."fast-deep-equal-3.1.1"
8286 sources."fast-deep-equal-3.1.1"
8244 sources."fast-json-stable-stringify-2.1.0"
8287 sources."fast-json-stable-stringify-2.1.0"
8245 sources."fastparse-1.1.2"
8288 sources."fastparse-1.1.2"
8246 sources."favico.js-0.3.10"
8289 sources."favico.js-0.3.10"
8247 sources."faye-websocket-0.4.4"
8290 sources."faye-websocket-0.4.4"
8248 sources."figures-1.7.0"
8291 sources."figures-1.7.0"
8249 sources."file-sync-cmp-0.1.1"
8292 sources."file-sync-cmp-0.1.1"
8250 sources."file-uri-to-path-1.0.0"
8293 sources."file-uri-to-path-1.0.0"
8251 (sources."fill-range-4.0.0" // {
8294 (sources."fill-range-4.0.0" // {
8252 dependencies = [
8295 dependencies = [
8253 sources."extend-shallow-2.0.1"
8296 sources."extend-shallow-2.0.1"
8254 ];
8297 ];
8255 })
8298 })
8256 sources."find-cache-dir-1.0.0"
8299 sources."find-cache-dir-1.0.0"
8257 sources."find-up-2.1.0"
8300 sources."find-up-2.1.0"
8258 (sources."findup-sync-0.1.3" // {
8301 (sources."findup-sync-0.1.3" // {
8259 dependencies = [
8302 dependencies = [
8260 sources."glob-3.2.11"
8303 sources."glob-3.2.11"
8261 sources."lodash-2.4.2"
8304 sources."lodash-2.4.2"
8262 sources."minimatch-0.3.0"
8305 sources."minimatch-0.3.0"
8263 ];
8306 ];
8264 })
8307 })
8265 sources."fined-1.2.0"
8308 sources."fined-1.2.0"
8266 sources."flagged-respawn-1.0.1"
8309 sources."flagged-respawn-1.0.1"
8267 sources."flatten-1.0.3"
8310 sources."flatten-1.0.3"
8268 (sources."flush-write-stream-1.1.1" // {
8311 (sources."flush-write-stream-1.1.1" // {
8269 dependencies = [
8312 dependencies = [
8270 sources."readable-stream-2.3.7"
8313 sources."readable-stream-2.3.7"
8271 sources."safe-buffer-5.1.2"
8314 sources."safe-buffer-5.1.2"
8272 sources."string_decoder-1.1.1"
8315 sources."string_decoder-1.1.1"
8273 ];
8316 ];
8274 })
8317 })
8275 sources."for-in-1.0.2"
8318 sources."for-in-1.0.2"
8276 sources."for-own-1.0.0"
8319 sources."for-own-1.0.0"
8277 sources."forever-agent-0.6.1"
8320 sources."forever-agent-0.6.1"
8278 sources."form-data-2.1.4"
8321 sources."form-data-2.1.4"
8279 sources."fragment-cache-0.2.1"
8322 sources."fragment-cache-0.2.1"
8280 (sources."from2-2.3.0" // {
8323 (sources."from2-2.3.0" // {
8281 dependencies = [
8324 dependencies = [
8282 sources."readable-stream-2.3.7"
8325 sources."readable-stream-2.3.7"
8283 sources."safe-buffer-5.1.2"
8326 sources."safe-buffer-5.1.2"
8284 sources."string_decoder-1.1.1"
8327 sources."string_decoder-1.1.1"
8285 ];
8328 ];
8286 })
8329 })
8287 (sources."fs-write-stream-atomic-1.0.10" // {
8330 (sources."fs-write-stream-atomic-1.0.10" // {
8288 dependencies = [
8331 dependencies = [
8289 sources."graceful-fs-4.2.3"
8332 sources."graceful-fs-4.2.4"
8290 ];
8333 ];
8291 })
8334 })
8292 sources."fs.realpath-1.0.0"
8335 sources."fs.realpath-1.0.0"
8293 sources."fsevents-1.2.12"
8336 sources."fsevents-1.2.13"
8294 sources."function-bind-1.1.1"
8337 sources."function-bind-1.1.1"
8295 sources."gaze-0.5.2"
8338 sources."gaze-0.5.2"
8296 sources."get-caller-file-1.0.3"
8339 sources."get-caller-file-1.0.3"
8297 (sources."get-stream-4.1.0" // {
8340 (sources."get-stream-4.1.0" // {
8298 dependencies = [
8341 dependencies = [
8299 sources."pump-3.0.0"
8342 sources."pump-3.0.0"
8300 ];
8343 ];
8301 })
8344 })
8302 sources."get-value-2.0.6"
8345 sources."get-value-2.0.6"
8303 sources."getobject-0.1.0"
8346 sources."getobject-0.1.0"
8304 (sources."getpass-0.1.7" // {
8347 (sources."getpass-0.1.7" // {
8305 dependencies = [
8348 dependencies = [
8306 sources."assert-plus-1.0.0"
8349 sources."assert-plus-1.0.0"
8307 ];
8350 ];
8308 })
8351 })
8309 (sources."glob-3.1.21" // {
8352 (sources."glob-3.1.21" // {
8310 dependencies = [
8353 dependencies = [
8311 sources."inherits-1.0.2"
8354 sources."inherits-1.0.2"
8312 ];
8355 ];
8313 })
8356 })
8314 sources."glob-parent-3.1.0"
8357 sources."glob-parent-3.1.0"
8315 sources."global-modules-1.0.0"
8358 sources."global-modules-1.0.0"
8316 sources."global-modules-path-2.3.1"
8359 sources."global-modules-path-2.3.1"
8317 (sources."global-prefix-1.0.2" // {
8360 (sources."global-prefix-1.0.2" // {
8318 dependencies = [
8361 dependencies = [
8319 sources."which-1.3.1"
8362 sources."which-1.3.1"
8320 ];
8363 ];
8321 })
8364 })
8322 sources."globals-9.18.0"
8365 sources."globals-9.18.0"
8323 (sources."globby-7.1.1" // {
8366 (sources."globby-7.1.1" // {
8324 dependencies = [
8367 dependencies = [
8325 sources."glob-7.1.6"
8368 sources."glob-7.1.6"
8326 sources."minimatch-3.0.4"
8369 sources."minimatch-3.0.4"
8327 ];
8370 ];
8328 })
8371 })
8329 (sources."globule-0.1.0" // {
8372 (sources."globule-0.1.0" // {
8330 dependencies = [
8373 dependencies = [
8331 sources."lodash-1.0.2"
8374 sources."lodash-1.0.2"
8332 ];
8375 ];
8333 })
8376 })
8334 sources."good-listener-1.2.2"
8377 sources."good-listener-1.2.2"
8335 sources."graceful-fs-1.2.3"
8378 sources."graceful-fs-1.2.3"
8336 sources."grunt-0.4.5"
8379 sources."grunt-0.4.5"
8337 (sources."grunt-cli-1.3.2" // {
8380 (sources."grunt-cli-1.3.2" // {
8338 dependencies = [
8381 dependencies = [
8339 sources."nopt-4.0.3"
8382 sources."nopt-4.0.3"
8340 ];
8383 ];
8341 })
8384 })
8342 (sources."grunt-contrib-concat-0.5.1" // {
8385 (sources."grunt-contrib-concat-0.5.1" // {
8343 dependencies = [
8386 dependencies = [
8344 sources."source-map-0.3.0"
8387 sources."source-map-0.3.0"
8345 ];
8388 ];
8346 })
8389 })
8347 (sources."grunt-contrib-copy-1.0.0" // {
8390 (sources."grunt-contrib-copy-1.0.0" // {
8348 dependencies = [
8391 dependencies = [
8349 sources."ansi-regex-2.1.1"
8392 sources."ansi-regex-2.1.1"
8350 sources."ansi-styles-2.2.1"
8393 sources."ansi-styles-2.2.1"
8351 sources."chalk-1.1.3"
8394 sources."chalk-1.1.3"
8352 sources."has-ansi-2.0.0"
8395 sources."has-ansi-2.0.0"
8353 sources."strip-ansi-3.0.1"
8396 sources."strip-ansi-3.0.1"
8354 sources."supports-color-2.0.0"
8397 sources."supports-color-2.0.0"
8355 ];
8398 ];
8356 })
8399 })
8357 (sources."grunt-contrib-jshint-0.12.0" // {
8400 (sources."grunt-contrib-jshint-0.12.0" // {
8358 dependencies = [
8401 dependencies = [
8359 sources."jshint-2.9.7"
8402 sources."jshint-2.9.7"
8360 sources."lodash-4.17.15"
8403 sources."lodash-4.17.15"
8361 sources."minimatch-3.0.4"
8404 sources."minimatch-3.0.4"
8362 ];
8405 ];
8363 })
8406 })
8364 (sources."grunt-contrib-less-1.4.1" // {
8407 (sources."grunt-contrib-less-1.4.1" // {
8365 dependencies = [
8408 dependencies = [
8366 sources."ansi-regex-2.1.1"
8409 sources."ansi-regex-2.1.1"
8367 sources."ansi-styles-2.2.1"
8410 sources."ansi-styles-2.2.1"
8368 sources."async-2.6.3"
8411 sources."async-2.6.3"
8369 sources."chalk-1.1.3"
8412 sources."chalk-1.1.3"
8370 sources."has-ansi-2.0.0"
8413 sources."has-ansi-2.0.0"
8371 sources."lodash-4.17.15"
8414 sources."lodash-4.17.15"
8372 sources."strip-ansi-3.0.1"
8415 sources."strip-ansi-3.0.1"
8373 sources."supports-color-2.0.0"
8416 sources."supports-color-2.0.0"
8374 ];
8417 ];
8375 })
8418 })
8376 (sources."grunt-contrib-uglify-4.0.1" // {
8419 (sources."grunt-contrib-uglify-4.0.1" // {
8377 dependencies = [
8420 dependencies = [
8378 sources."ansi-styles-3.2.1"
8421 sources."ansi-styles-3.2.1"
8379 sources."chalk-2.4.2"
8422 sources."chalk-2.4.2"
8380 sources."supports-color-5.5.0"
8423 sources."supports-color-5.5.0"
8381 ];
8424 ];
8382 })
8425 })
8383 (sources."grunt-contrib-watch-0.6.1" // {
8426 (sources."grunt-contrib-watch-0.6.1" // {
8384 dependencies = [
8427 dependencies = [
8385 sources."async-0.2.10"
8428 sources."async-0.2.10"
8386 sources."lodash-2.4.2"
8429 sources."lodash-2.4.2"
8387 ];
8430 ];
8388 })
8431 })
8389 sources."grunt-known-options-1.1.1"
8432 sources."grunt-known-options-1.1.1"
8390 (sources."grunt-legacy-log-0.1.3" // {
8433 (sources."grunt-legacy-log-0.1.3" // {
8391 dependencies = [
8434 dependencies = [
8392 sources."lodash-2.4.2"
8435 sources."lodash-2.4.2"
8393 sources."underscore.string-2.3.3"
8436 sources."underscore.string-2.3.3"
8394 ];
8437 ];
8395 })
8438 })
8396 (sources."grunt-legacy-log-utils-0.1.1" // {
8439 (sources."grunt-legacy-log-utils-0.1.1" // {
8397 dependencies = [
8440 dependencies = [
8398 sources."lodash-2.4.2"
8441 sources."lodash-2.4.2"
8399 sources."underscore.string-2.3.3"
8442 sources."underscore.string-2.3.3"
8400 ];
8443 ];
8401 })
8444 })
8402 sources."grunt-legacy-util-0.2.0"
8445 sources."grunt-legacy-util-0.2.0"
8403 (sources."grunt-webpack-3.1.3" // {
8446 (sources."grunt-webpack-3.1.3" // {
8404 dependencies = [
8447 dependencies = [
8405 sources."lodash-4.17.15"
8448 sources."lodash-4.17.15"
8406 ];
8449 ];
8407 })
8450 })
8408 sources."gzip-size-3.0.0"
8451 sources."gzip-size-3.0.0"
8409 sources."har-schema-1.0.5"
8452 sources."har-schema-1.0.5"
8410 sources."har-validator-4.2.1"
8453 sources."har-validator-4.2.1"
8411 sources."has-1.0.3"
8454 sources."has-1.0.3"
8412 sources."has-ansi-0.1.0"
8455 sources."has-ansi-0.1.0"
8413 sources."has-flag-3.0.0"
8456 sources."has-flag-3.0.0"
8414 sources."has-symbols-1.0.1"
8457 sources."has-symbols-1.0.1"
8415 sources."has-value-1.0.0"
8458 sources."has-value-1.0.0"
8416 (sources."has-values-1.0.0" // {
8459 (sources."has-values-1.0.0" // {
8417 dependencies = [
8460 dependencies = [
8418 sources."kind-of-4.0.0"
8461 sources."kind-of-4.0.0"
8419 ];
8462 ];
8420 })
8463 })
8421 sources."hash-base-3.0.4"
8464 (sources."hash-base-3.1.0" // {
8465 dependencies = [
8466 sources."readable-stream-3.6.0"
8467 sources."string_decoder-1.3.0"
8468 ];
8469 })
8422 sources."hash.js-1.1.7"
8470 sources."hash.js-1.1.7"
8423 sources."hawk-3.1.3"
8471 sources."hawk-3.1.3"
8424 sources."he-1.2.0"
8472 sources."he-1.2.0"
8425 sources."hmac-drbg-1.0.1"
8473 sources."hmac-drbg-1.0.1"
8426 sources."hoek-2.16.3"
8474 sources."hoek-2.16.3"
8427 sources."home-or-tmp-2.0.0"
8475 sources."home-or-tmp-2.0.0"
8428 sources."homedir-polyfill-1.0.3"
8476 sources."homedir-polyfill-1.0.3"
8429 sources."hooker-0.2.3"
8477 sources."hooker-0.2.3"
8430 sources."html-comment-regex-1.1.2"
8478 sources."html-comment-regex-1.1.2"
8431 sources."html-loader-0.4.5"
8479 sources."html-loader-0.4.5"
8432 (sources."html-minifier-3.5.21" // {
8480 (sources."html-minifier-3.5.21" // {
8433 dependencies = [
8481 dependencies = [
8434 sources."commander-2.17.1"
8482 sources."commander-2.17.1"
8435 sources."source-map-0.6.1"
8483 sources."source-map-0.6.1"
8436 (sources."uglify-js-3.4.10" // {
8484 (sources."uglify-js-3.4.10" // {
8437 dependencies = [
8485 dependencies = [
8438 sources."commander-2.19.0"
8486 sources."commander-2.19.0"
8439 ];
8487 ];
8440 })
8488 })
8441 ];
8489 ];
8442 })
8490 })
8443 (sources."html-webpack-plugin-3.2.0" // {
8491 (sources."html-webpack-plugin-3.2.0" // {
8444 dependencies = [
8492 dependencies = [
8445 sources."big.js-3.2.0"
8493 sources."big.js-3.2.0"
8446 sources."emojis-list-2.1.0"
8494 sources."emojis-list-2.1.0"
8447 sources."json5-0.5.1"
8495 sources."json5-0.5.1"
8448 sources."loader-utils-0.2.17"
8496 sources."loader-utils-0.2.17"
8449 sources."lodash-4.17.15"
8497 sources."lodash-4.17.15"
8450 ];
8498 ];
8451 })
8499 })
8452 sources."htmlparser2-3.8.3"
8500 sources."htmlparser2-3.8.3"
8453 sources."http-signature-1.1.1"
8501 sources."http-signature-1.1.1"
8454 sources."https-browserify-1.0.0"
8502 sources."https-browserify-1.0.0"
8455 sources."iconv-lite-0.2.11"
8503 sources."iconv-lite-0.2.11"
8456 sources."icss-replace-symbols-1.1.0"
8504 sources."icss-replace-symbols-1.1.0"
8457 (sources."icss-utils-2.1.0" // {
8505 (sources."icss-utils-2.1.0" // {
8458 dependencies = [
8506 dependencies = [
8459 sources."ansi-styles-3.2.1"
8507 sources."ansi-styles-3.2.1"
8460 sources."chalk-2.4.2"
8508 sources."chalk-2.4.2"
8461 sources."postcss-6.0.23"
8509 sources."postcss-6.0.23"
8462 sources."source-map-0.6.1"
8510 sources."source-map-0.6.1"
8463 sources."supports-color-5.5.0"
8511 sources."supports-color-5.5.0"
8464 ];
8512 ];
8465 })
8513 })
8466 sources."ieee754-1.1.13"
8514 sources."ieee754-1.1.13"
8467 sources."iferr-0.1.5"
8515 sources."iferr-0.1.5"
8468 sources."ignore-3.3.10"
8516 sources."ignore-3.3.10"
8469 sources."image-size-0.5.5"
8517 sources."image-size-0.5.5"
8470 (sources."import-local-2.0.0" // {
8518 (sources."import-local-2.0.0" // {
8471 dependencies = [
8519 dependencies = [
8472 sources."find-up-3.0.0"
8520 sources."find-up-3.0.0"
8473 sources."locate-path-3.0.0"
8521 sources."locate-path-3.0.0"
8474 sources."p-limit-2.3.0"
8522 sources."p-limit-2.3.0"
8475 sources."p-locate-3.0.0"
8523 sources."p-locate-3.0.0"
8476 sources."p-try-2.2.0"
8524 sources."p-try-2.2.0"
8477 sources."pkg-dir-3.0.0"
8525 sources."pkg-dir-3.0.0"
8478 ];
8526 ];
8479 })
8527 })
8480 sources."imports-loader-0.7.1"
8528 sources."imports-loader-0.7.1"
8481 sources."imurmurhash-0.1.4"
8529 sources."imurmurhash-0.1.4"
8482 sources."indexes-of-1.0.1"
8530 sources."indexes-of-1.0.1"
8483 sources."inflight-1.0.6"
8531 sources."inflight-1.0.6"
8484 sources."inherits-2.0.4"
8532 sources."inherits-2.0.4"
8485 sources."ini-1.3.5"
8533 sources."ini-1.3.5"
8486 sources."interpret-1.1.0"
8534 sources."interpret-1.1.0"
8487 sources."invariant-2.2.4"
8535 sources."invariant-2.2.4"
8488 sources."invert-kv-2.0.0"
8536 sources."invert-kv-2.0.0"
8489 sources."is-absolute-1.0.0"
8537 sources."is-absolute-1.0.0"
8490 sources."is-absolute-url-2.1.0"
8538 sources."is-absolute-url-2.1.0"
8491 sources."is-accessor-descriptor-1.0.0"
8539 sources."is-accessor-descriptor-1.0.0"
8492 sources."is-binary-path-1.0.1"
8540 sources."is-binary-path-1.0.1"
8493 sources."is-buffer-1.1.6"
8541 sources."is-buffer-1.1.6"
8494 sources."is-callable-1.1.5"
8542 sources."is-callable-1.1.5"
8495 sources."is-data-descriptor-1.0.0"
8543 sources."is-data-descriptor-1.0.0"
8496 sources."is-date-object-1.0.2"
8544 sources."is-date-object-1.0.2"
8497 sources."is-descriptor-1.0.2"
8545 sources."is-descriptor-1.0.2"
8498 sources."is-extendable-0.1.1"
8546 sources."is-extendable-0.1.1"
8499 sources."is-extglob-2.1.1"
8547 sources."is-extglob-2.1.1"
8500 sources."is-finite-1.1.0"
8548 sources."is-finite-1.1.0"
8501 sources."is-fullwidth-code-point-1.0.0"
8549 sources."is-fullwidth-code-point-1.0.0"
8502 sources."is-glob-3.1.0"
8550 sources."is-glob-3.1.0"
8503 (sources."is-number-3.0.0" // {
8551 (sources."is-number-3.0.0" // {
8504 dependencies = [
8552 dependencies = [
8505 sources."kind-of-3.2.2"
8553 sources."kind-of-3.2.2"
8506 ];
8554 ];
8507 })
8555 })
8508 sources."is-plain-obj-1.1.0"
8556 sources."is-plain-obj-1.1.0"
8509 sources."is-plain-object-2.0.4"
8557 sources."is-plain-object-2.0.4"
8510 sources."is-regex-1.0.5"
8558 sources."is-regex-1.0.5"
8511 sources."is-relative-1.0.0"
8559 sources."is-relative-1.0.0"
8512 sources."is-stream-1.1.0"
8560 sources."is-stream-1.1.0"
8513 sources."is-svg-2.1.0"
8561 sources."is-svg-2.1.0"
8514 sources."is-symbol-1.0.3"
8562 sources."is-symbol-1.0.3"
8515 sources."is-typedarray-1.0.0"
8563 sources."is-typedarray-1.0.0"
8516 sources."is-unc-path-1.0.0"
8564 sources."is-unc-path-1.0.0"
8517 sources."is-windows-1.0.2"
8565 sources."is-windows-1.0.2"
8518 sources."isarray-1.0.0"
8566 sources."isarray-1.0.0"
8519 sources."isexe-2.0.0"
8567 sources."isexe-2.0.0"
8520 sources."isobject-3.0.1"
8568 sources."isobject-3.0.1"
8521 sources."isstream-0.1.2"
8569 sources."isstream-0.1.2"
8522 sources."jquery-1.11.3"
8570 sources."jquery-1.11.3"
8523 sources."js-base64-2.5.2"
8571 sources."js-base64-2.5.2"
8524 sources."js-tokens-3.0.2"
8572 sources."js-tokens-3.0.2"
8525 sources."js-yaml-2.0.5"
8573 sources."js-yaml-2.0.5"
8526 sources."jsbn-0.1.1"
8574 sources."jsbn-0.1.1"
8527 sources."jsesc-1.3.0"
8575 sources."jsesc-1.3.0"
8528 (sources."jshint-2.11.0" // {
8576 (sources."jshint-2.11.0" // {
8529 dependencies = [
8577 dependencies = [
8530 sources."lodash-4.17.15"
8578 sources."lodash-4.17.15"
8531 sources."minimatch-3.0.4"
8579 sources."minimatch-3.0.4"
8532 ];
8580 ];
8533 })
8581 })
8534 sources."json-parse-better-errors-1.0.2"
8582 sources."json-parse-better-errors-1.0.2"
8535 sources."json-schema-0.2.3"
8583 sources."json-schema-0.2.3"
8536 sources."json-schema-traverse-0.4.1"
8584 sources."json-schema-traverse-0.4.1"
8537 sources."json-stable-stringify-1.0.1"
8585 sources."json-stable-stringify-1.0.1"
8538 sources."json-stringify-safe-5.0.1"
8586 sources."json-stringify-safe-5.0.1"
8539 sources."json5-1.0.1"
8587 sources."json5-1.0.1"
8540 sources."jsonify-0.0.0"
8588 sources."jsonify-0.0.0"
8541 (sources."jsprim-1.4.1" // {
8589 (sources."jsprim-1.4.1" // {
8542 dependencies = [
8590 dependencies = [
8543 sources."assert-plus-1.0.0"
8591 sources."assert-plus-1.0.0"
8544 ];
8592 ];
8545 })
8593 })
8546 sources."kind-of-6.0.3"
8594 sources."kind-of-6.0.3"
8547 sources."lazy-cache-1.0.4"
8595 sources."lazy-cache-1.0.4"
8548 sources."lcid-2.0.0"
8596 sources."lcid-2.0.0"
8549 (sources."less-2.7.3" // {
8597 (sources."less-2.7.3" // {
8550 dependencies = [
8598 dependencies = [
8551 sources."graceful-fs-4.2.3"
8599 sources."graceful-fs-4.2.4"
8552 ];
8600 ];
8553 })
8601 })
8554 (sources."liftoff-2.5.0" // {
8602 (sources."liftoff-2.5.0" // {
8555 dependencies = [
8603 dependencies = [
8556 sources."findup-sync-2.0.0"
8604 sources."findup-sync-2.0.0"
8557 ];
8605 ];
8558 })
8606 })
8559 sources."loader-runner-2.4.0"
8607 sources."loader-runner-2.4.0"
8560 sources."loader-utils-1.4.0"
8608 sources."loader-utils-1.4.0"
8561 sources."locate-path-2.0.0"
8609 sources."locate-path-2.0.0"
8562 sources."lodash-0.9.2"
8610 sources."lodash-0.9.2"
8563 sources."lodash.camelcase-4.3.0"
8611 sources."lodash.camelcase-4.3.0"
8564 sources."lodash.isplainobject-4.0.6"
8612 sources."lodash.isplainobject-4.0.6"
8565 sources."lodash.memoize-4.1.2"
8613 sources."lodash.memoize-4.1.2"
8566 sources."lodash.uniq-4.5.0"
8614 sources."lodash.uniq-4.5.0"
8567 sources."longest-1.0.1"
8615 sources."longest-1.0.1"
8568 sources."loose-envify-1.4.0"
8616 sources."loose-envify-1.4.0"
8569 sources."lower-case-1.1.4"
8617 sources."lower-case-1.1.4"
8570 sources."lru-cache-2.7.3"
8618 sources."lru-cache-2.7.3"
8571 sources."make-dir-1.3.0"
8619 sources."make-dir-1.3.0"
8572 sources."make-iterator-1.0.1"
8620 sources."make-iterator-1.0.1"
8573 sources."map-age-cleaner-0.1.3"
8621 sources."map-age-cleaner-0.1.3"
8574 sources."map-cache-0.2.2"
8622 sources."map-cache-0.2.2"
8575 sources."map-visit-1.0.0"
8623 sources."map-visit-1.0.0"
8576 sources."mark.js-8.11.1"
8624 sources."mark.js-8.11.1"
8577 sources."math-expression-evaluator-1.2.22"
8625 sources."math-expression-evaluator-1.2.22"
8578 (sources."maxmin-2.1.0" // {
8626 (sources."maxmin-2.1.0" // {
8579 dependencies = [
8627 dependencies = [
8580 sources."ansi-regex-2.1.1"
8628 sources."ansi-regex-2.1.1"
8581 sources."ansi-styles-2.2.1"
8629 sources."ansi-styles-2.2.1"
8582 sources."chalk-1.1.3"
8630 sources."chalk-1.1.3"
8583 sources."has-ansi-2.0.0"
8631 sources."has-ansi-2.0.0"
8584 sources."strip-ansi-3.0.1"
8632 sources."strip-ansi-3.0.1"
8585 sources."supports-color-2.0.0"
8633 sources."supports-color-2.0.0"
8586 ];
8634 ];
8587 })
8635 })
8588 sources."md5.js-1.3.5"
8636 sources."md5.js-1.3.5"
8589 sources."mem-4.3.0"
8637 sources."mem-4.3.0"
8590 (sources."memory-fs-0.4.1" // {
8638 (sources."memory-fs-0.4.1" // {
8591 dependencies = [
8639 dependencies = [
8592 sources."readable-stream-2.3.7"
8640 sources."readable-stream-2.3.7"
8593 sources."safe-buffer-5.1.2"
8641 sources."safe-buffer-5.1.2"
8594 sources."string_decoder-1.1.1"
8642 sources."string_decoder-1.1.1"
8595 ];
8643 ];
8596 })
8644 })
8597 sources."micromatch-3.1.10"
8645 sources."micromatch-3.1.10"
8598 sources."miller-rabin-4.0.1"
8646 (sources."miller-rabin-4.0.1" // {
8647 dependencies = [
8648 sources."bn.js-4.11.8"
8649 ];
8650 })
8599 sources."mime-1.6.0"
8651 sources."mime-1.6.0"
8600 sources."mime-db-1.43.0"
8652 sources."mime-db-1.44.0"
8601 sources."mime-types-2.1.26"
8653 sources."mime-types-2.1.27"
8602 sources."mimic-fn-2.1.0"
8654 sources."mimic-fn-2.1.0"
8603 sources."minimalistic-assert-1.0.1"
8655 sources."minimalistic-assert-1.0.1"
8604 sources."minimalistic-crypto-utils-1.0.1"
8656 sources."minimalistic-crypto-utils-1.0.1"
8605 sources."minimatch-0.2.14"
8657 sources."minimatch-0.2.14"
8606 sources."minimist-1.2.5"
8658 sources."minimist-1.2.5"
8607 sources."mississippi-2.0.0"
8659 sources."mississippi-2.0.0"
8608 (sources."mixin-deep-1.3.2" // {
8660 (sources."mixin-deep-1.3.2" // {
8609 dependencies = [
8661 dependencies = [
8610 sources."is-extendable-1.0.1"
8662 sources."is-extendable-1.0.1"
8611 ];
8663 ];
8612 })
8664 })
8613 sources."mkdirp-0.5.5"
8665 sources."mkdirp-0.5.5"
8614 sources."moment-2.24.0"
8666 sources."moment-2.25.3"
8615 sources."mousetrap-1.6.5"
8667 sources."mousetrap-1.6.5"
8616 (sources."move-concurrently-1.0.1" // {
8668 (sources."move-concurrently-1.0.1" // {
8617 dependencies = [
8669 dependencies = [
8618 sources."glob-7.1.6"
8670 sources."glob-7.1.6"
8619 sources."minimatch-3.0.4"
8671 sources."minimatch-3.0.4"
8620 sources."rimraf-2.7.1"
8672 sources."rimraf-2.7.1"
8621 ];
8673 ];
8622 })
8674 })
8623 sources."ms-2.0.0"
8675 sources."ms-2.0.0"
8624 sources."nan-2.14.0"
8676 sources."nan-2.14.1"
8625 sources."nanomatch-1.2.13"
8677 sources."nanomatch-1.2.13"
8626 sources."neo-async-2.6.1"
8678 sources."neo-async-2.6.1"
8627 sources."nice-try-1.0.5"
8679 sources."nice-try-1.0.5"
8628 sources."no-case-2.3.2"
8680 sources."no-case-2.3.2"
8629 (sources."node-libs-browser-2.2.1" // {
8681 (sources."node-libs-browser-2.2.1" // {
8630 dependencies = [
8682 dependencies = [
8631 (sources."readable-stream-2.3.7" // {
8683 (sources."readable-stream-2.3.7" // {
8632 dependencies = [
8684 dependencies = [
8633 sources."string_decoder-1.1.1"
8685 sources."string_decoder-1.1.1"
8634 ];
8686 ];
8635 })
8687 })
8636 sources."safe-buffer-5.1.2"
8688 sources."safe-buffer-5.1.2"
8637 (sources."string_decoder-1.3.0" // {
8689 (sources."string_decoder-1.3.0" // {
8638 dependencies = [
8690 dependencies = [
8639 sources."safe-buffer-5.2.0"
8691 sources."safe-buffer-5.2.1"
8640 ];
8692 ];
8641 })
8693 })
8642 ];
8694 ];
8643 })
8695 })
8644 sources."nopt-1.0.10"
8696 sources."nopt-1.0.10"
8645 (sources."noptify-0.0.3" // {
8697 (sources."noptify-0.0.3" // {
8646 dependencies = [
8698 dependencies = [
8647 sources."nopt-2.0.0"
8699 sources."nopt-2.0.0"
8648 ];
8700 ];
8649 })
8701 })
8650 sources."normalize-path-3.0.0"
8702 sources."normalize-path-3.0.0"
8651 sources."normalize-range-0.1.2"
8703 sources."normalize-range-0.1.2"
8652 sources."normalize-url-1.9.1"
8704 sources."normalize-url-1.9.1"
8653 sources."npm-run-path-2.0.2"
8705 sources."npm-run-path-2.0.2"
8654 sources."nth-check-1.0.2"
8706 sources."nth-check-1.0.2"
8655 sources."num2fraction-1.2.2"
8707 sources."num2fraction-1.2.2"
8656 sources."number-is-nan-1.0.1"
8708 sources."number-is-nan-1.0.1"
8657 sources."oauth-sign-0.8.2"
8709 sources."oauth-sign-0.8.2"
8658 sources."object-assign-4.1.1"
8710 sources."object-assign-4.1.1"
8659 (sources."object-copy-0.1.0" // {
8711 (sources."object-copy-0.1.0" // {
8660 dependencies = [
8712 dependencies = [
8661 sources."define-property-0.2.5"
8713 sources."define-property-0.2.5"
8662 sources."is-accessor-descriptor-0.1.6"
8714 sources."is-accessor-descriptor-0.1.6"
8663 sources."is-data-descriptor-0.1.4"
8715 sources."is-data-descriptor-0.1.4"
8664 (sources."is-descriptor-0.1.6" // {
8716 (sources."is-descriptor-0.1.6" // {
8665 dependencies = [
8717 dependencies = [
8666 sources."kind-of-5.1.0"
8718 sources."kind-of-5.1.0"
8667 ];
8719 ];
8668 })
8720 })
8669 sources."kind-of-3.2.2"
8721 sources."kind-of-3.2.2"
8670 ];
8722 ];
8671 })
8723 })
8672 sources."object-inspect-1.7.0"
8724 sources."object-inspect-1.7.0"
8673 sources."object-keys-1.1.1"
8725 sources."object-keys-1.1.1"
8674 sources."object-visit-1.0.1"
8726 sources."object-visit-1.0.1"
8675 sources."object.assign-4.1.0"
8727 sources."object.assign-4.1.0"
8676 sources."object.defaults-1.1.0"
8728 sources."object.defaults-1.1.0"
8677 sources."object.getownpropertydescriptors-2.1.0"
8729 sources."object.getownpropertydescriptors-2.1.0"
8678 sources."object.map-1.0.1"
8730 sources."object.map-1.0.1"
8679 sources."object.pick-1.3.0"
8731 sources."object.pick-1.3.0"
8680 sources."once-1.4.0"
8732 sources."once-1.4.0"
8681 sources."os-browserify-0.3.0"
8733 sources."os-browserify-0.3.0"
8682 sources."os-homedir-1.0.2"
8734 sources."os-homedir-1.0.2"
8683 sources."os-locale-3.1.0"
8735 sources."os-locale-3.1.0"
8684 sources."os-tmpdir-1.0.2"
8736 sources."os-tmpdir-1.0.2"
8685 sources."osenv-0.1.5"
8737 sources."osenv-0.1.5"
8686 sources."p-defer-1.0.0"
8738 sources."p-defer-1.0.0"
8687 sources."p-finally-1.0.0"
8739 sources."p-finally-1.0.0"
8688 sources."p-is-promise-2.1.0"
8740 sources."p-is-promise-2.1.0"
8689 sources."p-limit-1.3.0"
8741 sources."p-limit-1.3.0"
8690 sources."p-locate-2.0.0"
8742 sources."p-locate-2.0.0"
8691 sources."p-try-1.0.0"
8743 sources."p-try-1.0.0"
8692 sources."pako-1.0.11"
8744 sources."pako-1.0.11"
8693 (sources."parallel-transform-1.2.0" // {
8745 (sources."parallel-transform-1.2.0" // {
8694 dependencies = [
8746 dependencies = [
8695 sources."readable-stream-2.3.7"
8747 sources."readable-stream-2.3.7"
8696 sources."safe-buffer-5.1.2"
8748 sources."safe-buffer-5.1.2"
8697 sources."string_decoder-1.1.1"
8749 sources."string_decoder-1.1.1"
8698 ];
8750 ];
8699 })
8751 })
8700 sources."param-case-2.1.1"
8752 sources."param-case-2.1.1"
8701 sources."parse-asn1-5.1.5"
8753 sources."parse-asn1-5.1.5"
8702 sources."parse-filepath-1.0.2"
8754 sources."parse-filepath-1.0.2"
8703 sources."parse-passwd-1.0.0"
8755 sources."parse-passwd-1.0.0"
8704 sources."parse5-3.0.3"
8756 sources."parse5-3.0.3"
8705 (sources."parse5-utils-2.0.0" // {
8757 (sources."parse5-utils-2.0.0" // {
8706 dependencies = [
8758 dependencies = [
8707 sources."parse5-2.2.3"
8759 sources."parse5-2.2.3"
8708 ];
8760 ];
8709 })
8761 })
8710 sources."pascalcase-0.1.1"
8762 sources."pascalcase-0.1.1"
8711 sources."path-browserify-0.0.1"
8763 sources."path-browserify-0.0.1"
8712 sources."path-dirname-1.0.2"
8764 sources."path-dirname-1.0.2"
8713 sources."path-exists-3.0.0"
8765 sources."path-exists-3.0.0"
8714 sources."path-is-absolute-1.0.1"
8766 sources."path-is-absolute-1.0.1"
8715 sources."path-key-2.0.1"
8767 sources."path-key-2.0.1"
8716 sources."path-parse-1.0.6"
8768 sources."path-parse-1.0.6"
8717 sources."path-root-0.1.1"
8769 sources."path-root-0.1.1"
8718 sources."path-root-regex-0.1.2"
8770 sources."path-root-regex-0.1.2"
8719 sources."path-type-3.0.0"
8771 sources."path-type-3.0.0"
8720 sources."pbkdf2-3.0.17"
8772 sources."pbkdf2-3.0.17"
8721 sources."performance-now-0.2.0"
8773 sources."performance-now-0.2.0"
8722 sources."pify-3.0.0"
8774 sources."pify-3.0.0"
8723 sources."pkg-dir-2.0.0"
8775 sources."pkg-dir-2.0.0"
8724 (sources."polymer-webpack-loader-2.0.3" // {
8776 (sources."polymer-webpack-loader-2.0.3" // {
8725 dependencies = [
8777 dependencies = [
8726 sources."ansi-styles-3.2.1"
8778 sources."ansi-styles-3.2.1"
8727 sources."chalk-2.4.2"
8779 sources."chalk-2.4.2"
8728 sources."html-loader-0.5.5"
8780 sources."html-loader-0.5.5"
8729 (sources."postcss-6.0.23" // {
8781 (sources."postcss-6.0.23" // {
8730 dependencies = [
8782 dependencies = [
8731 sources."source-map-0.6.1"
8783 sources."source-map-0.6.1"
8732 ];
8784 ];
8733 })
8785 })
8734 sources."supports-color-5.5.0"
8786 sources."supports-color-5.5.0"
8735 ];
8787 ];
8736 })
8788 })
8737 sources."posix-character-classes-0.1.1"
8789 sources."posix-character-classes-0.1.1"
8738 (sources."postcss-5.2.18" // {
8790 (sources."postcss-5.2.18" // {
8739 dependencies = [
8791 dependencies = [
8740 sources."ansi-regex-2.1.1"
8792 sources."ansi-regex-2.1.1"
8741 sources."ansi-styles-2.2.1"
8793 sources."ansi-styles-2.2.1"
8742 (sources."chalk-1.1.3" // {
8794 (sources."chalk-1.1.3" // {
8743 dependencies = [
8795 dependencies = [
8744 sources."supports-color-2.0.0"
8796 sources."supports-color-2.0.0"
8745 ];
8797 ];
8746 })
8798 })
8747 sources."has-ansi-2.0.0"
8799 sources."has-ansi-2.0.0"
8748 sources."has-flag-1.0.0"
8800 sources."has-flag-1.0.0"
8749 sources."strip-ansi-3.0.1"
8801 sources."strip-ansi-3.0.1"
8750 sources."supports-color-3.2.3"
8802 sources."supports-color-3.2.3"
8751 ];
8803 ];
8752 })
8804 })
8753 sources."postcss-calc-5.3.1"
8805 sources."postcss-calc-5.3.1"
8754 sources."postcss-colormin-2.2.2"
8806 sources."postcss-colormin-2.2.2"
8755 sources."postcss-convert-values-2.6.1"
8807 sources."postcss-convert-values-2.6.1"
8756 sources."postcss-discard-comments-2.0.4"
8808 sources."postcss-discard-comments-2.0.4"
8757 sources."postcss-discard-duplicates-2.1.0"
8809 sources."postcss-discard-duplicates-2.1.0"
8758 sources."postcss-discard-empty-2.1.0"
8810 sources."postcss-discard-empty-2.1.0"
8759 sources."postcss-discard-overridden-0.1.1"
8811 sources."postcss-discard-overridden-0.1.1"
8760 sources."postcss-discard-unused-2.2.3"
8812 sources."postcss-discard-unused-2.2.3"
8761 sources."postcss-filter-plugins-2.0.3"
8813 sources."postcss-filter-plugins-2.0.3"
8762 sources."postcss-merge-idents-2.1.7"
8814 sources."postcss-merge-idents-2.1.7"
8763 sources."postcss-merge-longhand-2.0.2"
8815 sources."postcss-merge-longhand-2.0.2"
8764 (sources."postcss-merge-rules-2.1.2" // {
8816 (sources."postcss-merge-rules-2.1.2" // {
8765 dependencies = [
8817 dependencies = [
8766 sources."browserslist-1.7.7"
8818 sources."browserslist-1.7.7"
8767 ];
8819 ];
8768 })
8820 })
8769 sources."postcss-message-helpers-2.0.0"
8821 sources."postcss-message-helpers-2.0.0"
8770 sources."postcss-minify-font-values-1.0.5"
8822 sources."postcss-minify-font-values-1.0.5"
8771 sources."postcss-minify-gradients-1.0.5"
8823 sources."postcss-minify-gradients-1.0.5"
8772 sources."postcss-minify-params-1.2.2"
8824 sources."postcss-minify-params-1.2.2"
8773 sources."postcss-minify-selectors-2.1.1"
8825 sources."postcss-minify-selectors-2.1.1"
8774 (sources."postcss-modules-extract-imports-1.2.1" // {
8826 (sources."postcss-modules-extract-imports-1.2.1" // {
8775 dependencies = [
8827 dependencies = [
8776 sources."ansi-styles-3.2.1"
8828 sources."ansi-styles-3.2.1"
8777 sources."chalk-2.4.2"
8829 sources."chalk-2.4.2"
8778 sources."postcss-6.0.23"
8830 sources."postcss-6.0.23"
8779 sources."source-map-0.6.1"
8831 sources."source-map-0.6.1"
8780 sources."supports-color-5.5.0"
8832 sources."supports-color-5.5.0"
8781 ];
8833 ];
8782 })
8834 })
8783 (sources."postcss-modules-local-by-default-1.2.0" // {
8835 (sources."postcss-modules-local-by-default-1.2.0" // {
8784 dependencies = [
8836 dependencies = [
8785 sources."ansi-styles-3.2.1"
8837 sources."ansi-styles-3.2.1"
8786 sources."chalk-2.4.2"
8838 sources."chalk-2.4.2"
8787 sources."postcss-6.0.23"
8839 sources."postcss-6.0.23"
8788 sources."source-map-0.6.1"
8840 sources."source-map-0.6.1"
8789 sources."supports-color-5.5.0"
8841 sources."supports-color-5.5.0"
8790 ];
8842 ];
8791 })
8843 })
8792 (sources."postcss-modules-scope-1.1.0" // {
8844 (sources."postcss-modules-scope-1.1.0" // {
8793 dependencies = [
8845 dependencies = [
8794 sources."ansi-styles-3.2.1"
8846 sources."ansi-styles-3.2.1"
8795 sources."chalk-2.4.2"
8847 sources."chalk-2.4.2"
8796 sources."postcss-6.0.23"
8848 sources."postcss-6.0.23"
8797 sources."source-map-0.6.1"
8849 sources."source-map-0.6.1"
8798 sources."supports-color-5.5.0"
8850 sources."supports-color-5.5.0"
8799 ];
8851 ];
8800 })
8852 })
8801 (sources."postcss-modules-values-1.3.0" // {
8853 (sources."postcss-modules-values-1.3.0" // {
8802 dependencies = [
8854 dependencies = [
8803 sources."ansi-styles-3.2.1"
8855 sources."ansi-styles-3.2.1"
8804 sources."chalk-2.4.2"
8856 sources."chalk-2.4.2"
8805 sources."postcss-6.0.23"
8857 sources."postcss-6.0.23"
8806 sources."source-map-0.6.1"
8858 sources."source-map-0.6.1"
8807 sources."supports-color-5.5.0"
8859 sources."supports-color-5.5.0"
8808 ];
8860 ];
8809 })
8861 })
8810 sources."postcss-normalize-charset-1.1.1"
8862 sources."postcss-normalize-charset-1.1.1"
8811 sources."postcss-normalize-url-3.0.8"
8863 sources."postcss-normalize-url-3.0.8"
8812 sources."postcss-ordered-values-2.2.3"
8864 sources."postcss-ordered-values-2.2.3"
8813 sources."postcss-reduce-idents-2.4.0"
8865 sources."postcss-reduce-idents-2.4.0"
8814 sources."postcss-reduce-initial-1.0.1"
8866 sources."postcss-reduce-initial-1.0.1"
8815 sources."postcss-reduce-transforms-1.0.4"
8867 sources."postcss-reduce-transforms-1.0.4"
8816 sources."postcss-selector-parser-2.2.3"
8868 sources."postcss-selector-parser-2.2.3"
8817 sources."postcss-svgo-2.1.6"
8869 sources."postcss-svgo-2.1.6"
8818 sources."postcss-unique-selectors-2.0.2"
8870 sources."postcss-unique-selectors-2.0.2"
8819 sources."postcss-value-parser-3.3.1"
8871 sources."postcss-value-parser-3.3.1"
8820 sources."postcss-zindex-2.2.0"
8872 sources."postcss-zindex-2.2.0"
8821 sources."prepend-http-1.0.4"
8873 sources."prepend-http-1.0.4"
8822 sources."pretty-bytes-3.0.1"
8874 sources."pretty-bytes-3.0.1"
8823 sources."pretty-error-2.1.1"
8875 sources."pretty-error-2.1.1"
8824 sources."private-0.1.8"
8876 sources."private-0.1.8"
8825 sources."process-0.11.10"
8877 sources."process-0.11.10"
8826 sources."process-nextick-args-2.0.1"
8878 sources."process-nextick-args-2.0.1"
8827 sources."promise-7.3.1"
8879 sources."promise-7.3.1"
8828 sources."promise-inflight-1.0.1"
8880 sources."promise-inflight-1.0.1"
8829 sources."prr-1.0.1"
8881 sources."prr-1.0.1"
8830 sources."pseudomap-1.0.2"
8882 sources."pseudomap-1.0.2"
8831 sources."public-encrypt-4.0.3"
8883 (sources."public-encrypt-4.0.3" // {
8884 dependencies = [
8885 sources."bn.js-4.11.8"
8886 ];
8887 })
8832 sources."pump-2.0.1"
8888 sources."pump-2.0.1"
8833 sources."pumpify-1.5.1"
8889 sources."pumpify-1.5.1"
8834 sources."punycode-1.4.1"
8890 sources."punycode-1.4.1"
8835 sources."q-1.5.1"
8891 sources."q-1.5.1"
8836 sources."qrious-4.0.2"
8892 sources."qrious-4.0.2"
8837 sources."qs-6.4.0"
8893 sources."qs-6.4.0"
8838 sources."query-string-4.3.4"
8894 sources."query-string-4.3.4"
8839 sources."querystring-0.2.0"
8895 sources."querystring-0.2.0"
8840 sources."querystring-es3-0.2.1"
8896 sources."querystring-es3-0.2.1"
8841 sources."randombytes-2.1.0"
8897 sources."randombytes-2.1.0"
8842 sources."randomfill-1.0.4"
8898 sources."randomfill-1.0.4"
8843 sources."raw-loader-1.0.0-beta.0"
8899 sources."raw-loader-1.0.0-beta.0"
8844 (sources."readable-stream-1.1.14" // {
8900 (sources."readable-stream-1.1.14" // {
8845 dependencies = [
8901 dependencies = [
8846 sources."isarray-0.0.1"
8902 sources."isarray-0.0.1"
8847 ];
8903 ];
8848 })
8904 })
8849 (sources."readdirp-2.2.1" // {
8905 (sources."readdirp-2.2.1" // {
8850 dependencies = [
8906 dependencies = [
8851 sources."graceful-fs-4.2.3"
8907 sources."graceful-fs-4.2.4"
8852 sources."readable-stream-2.3.7"
8908 sources."readable-stream-2.3.7"
8853 sources."safe-buffer-5.1.2"
8909 sources."safe-buffer-5.1.2"
8854 sources."string_decoder-1.1.1"
8910 sources."string_decoder-1.1.1"
8855 ];
8911 ];
8856 })
8912 })
8857 (sources."recast-0.11.23" // {
8913 (sources."recast-0.11.23" // {
8858 dependencies = [
8914 dependencies = [
8859 sources."esprima-3.1.3"
8915 sources."esprima-3.1.3"
8860 ];
8916 ];
8861 })
8917 })
8862 sources."rechoir-0.6.2"
8918 sources."rechoir-0.6.2"
8863 (sources."reduce-css-calc-1.3.0" // {
8919 (sources."reduce-css-calc-1.3.0" // {
8864 dependencies = [
8920 dependencies = [
8865 sources."balanced-match-0.4.2"
8921 sources."balanced-match-0.4.2"
8866 ];
8922 ];
8867 })
8923 })
8868 sources."reduce-function-call-1.0.3"
8924 sources."reduce-function-call-1.0.3"
8869 sources."regenerate-1.4.0"
8925 sources."regenerate-1.4.0"
8870 sources."regenerate-unicode-properties-8.2.0"
8926 sources."regenerate-unicode-properties-8.2.0"
8871 sources."regenerator-runtime-0.11.1"
8927 sources."regenerator-runtime-0.11.1"
8872 sources."regenerator-transform-0.10.1"
8928 sources."regenerator-transform-0.10.1"
8873 sources."regex-not-1.0.2"
8929 sources."regex-not-1.0.2"
8874 sources."regexpu-core-2.0.0"
8930 sources."regexpu-core-2.0.0"
8875 sources."regjsgen-0.2.0"
8931 sources."regjsgen-0.2.0"
8876 (sources."regjsparser-0.1.5" // {
8932 (sources."regjsparser-0.1.5" // {
8877 dependencies = [
8933 dependencies = [
8878 sources."jsesc-0.5.0"
8934 sources."jsesc-0.5.0"
8879 ];
8935 ];
8880 })
8936 })
8881 sources."relateurl-0.2.7"
8937 sources."relateurl-0.2.7"
8882 sources."remove-trailing-separator-1.1.0"
8938 sources."remove-trailing-separator-1.1.0"
8883 (sources."renderkid-2.0.3" // {
8939 (sources."renderkid-2.0.3" // {
8884 dependencies = [
8940 dependencies = [
8885 sources."ansi-regex-2.1.1"
8941 sources."ansi-regex-2.1.1"
8886 sources."strip-ansi-3.0.1"
8942 sources."strip-ansi-3.0.1"
8887 ];
8943 ];
8888 })
8944 })
8889 sources."repeat-element-1.1.3"
8945 sources."repeat-element-1.1.3"
8890 sources."repeat-string-1.6.1"
8946 sources."repeat-string-1.6.1"
8891 sources."repeating-2.0.1"
8947 sources."repeating-2.0.1"
8892 sources."request-2.81.0"
8948 sources."request-2.81.0"
8893 sources."require-directory-2.1.1"
8949 sources."require-directory-2.1.1"
8894 sources."require-main-filename-1.0.1"
8950 sources."require-main-filename-1.0.1"
8895 sources."resolve-1.16.0"
8951 sources."resolve-1.17.0"
8896 sources."resolve-cwd-2.0.0"
8952 sources."resolve-cwd-2.0.0"
8897 sources."resolve-dir-1.0.1"
8953 sources."resolve-dir-1.0.1"
8898 sources."resolve-from-3.0.0"
8954 sources."resolve-from-3.0.0"
8899 sources."resolve-url-0.2.1"
8955 sources."resolve-url-0.2.1"
8900 sources."ret-0.1.15"
8956 sources."ret-0.1.15"
8901 sources."right-align-0.1.3"
8957 sources."right-align-0.1.3"
8902 sources."rimraf-2.2.8"
8958 sources."rimraf-2.2.8"
8903 sources."ripemd160-2.0.2"
8959 sources."ripemd160-2.0.2"
8904 sources."run-queue-1.0.3"
8960 sources."run-queue-1.0.3"
8905 sources."safe-buffer-5.2.0"
8961 sources."safe-buffer-5.2.1"
8906 sources."safe-regex-1.1.0"
8962 sources."safe-regex-1.1.0"
8907 sources."safer-buffer-2.1.2"
8963 sources."safer-buffer-2.1.2"
8908 sources."sax-1.2.4"
8964 sources."sax-1.2.4"
8909 (sources."schema-utils-0.4.7" // {
8965 (sources."schema-utils-0.4.7" // {
8910 dependencies = [
8966 dependencies = [
8911 sources."ajv-6.12.0"
8967 sources."ajv-6.12.2"
8912 ];
8968 ];
8913 })
8969 })
8914 sources."select-1.1.2"
8970 sources."select-1.1.2"
8915 sources."semver-5.7.1"
8971 sources."semver-5.7.1"
8916 sources."serialize-javascript-1.9.1"
8972 sources."serialize-javascript-1.9.1"
8917 sources."set-blocking-2.0.0"
8973 sources."set-blocking-2.0.0"
8918 (sources."set-value-2.0.1" // {
8974 (sources."set-value-2.0.1" // {
8919 dependencies = [
8975 dependencies = [
8920 sources."extend-shallow-2.0.1"
8976 sources."extend-shallow-2.0.1"
8921 ];
8977 ];
8922 })
8978 })
8923 sources."setimmediate-1.0.5"
8979 sources."setimmediate-1.0.5"
8924 sources."sha.js-2.4.11"
8980 sources."sha.js-2.4.11"
8925 sources."shebang-command-1.2.0"
8981 sources."shebang-command-1.2.0"
8926 sources."shebang-regex-1.0.0"
8982 sources."shebang-regex-1.0.0"
8927 sources."shelljs-0.3.0"
8983 sources."shelljs-0.3.0"
8928 sources."sigmund-1.0.1"
8984 sources."sigmund-1.0.1"
8929 sources."signal-exit-3.0.3"
8985 sources."signal-exit-3.0.3"
8930 sources."slash-1.0.0"
8986 sources."slash-1.0.0"
8931 (sources."snapdragon-0.8.2" // {
8987 (sources."snapdragon-0.8.2" // {
8932 dependencies = [
8988 dependencies = [
8933 sources."define-property-0.2.5"
8989 sources."define-property-0.2.5"
8934 sources."extend-shallow-2.0.1"
8990 sources."extend-shallow-2.0.1"
8935 (sources."is-accessor-descriptor-0.1.6" // {
8991 (sources."is-accessor-descriptor-0.1.6" // {
8936 dependencies = [
8992 dependencies = [
8937 sources."kind-of-3.2.2"
8993 sources."kind-of-3.2.2"
8938 ];
8994 ];
8939 })
8995 })
8940 (sources."is-data-descriptor-0.1.4" // {
8996 (sources."is-data-descriptor-0.1.4" // {
8941 dependencies = [
8997 dependencies = [
8942 sources."kind-of-3.2.2"
8998 sources."kind-of-3.2.2"
8943 ];
8999 ];
8944 })
9000 })
8945 sources."is-descriptor-0.1.6"
9001 sources."is-descriptor-0.1.6"
8946 sources."kind-of-5.1.0"
9002 sources."kind-of-5.1.0"
8947 ];
9003 ];
8948 })
9004 })
8949 (sources."snapdragon-node-2.1.1" // {
9005 (sources."snapdragon-node-2.1.1" // {
8950 dependencies = [
9006 dependencies = [
8951 sources."define-property-1.0.0"
9007 sources."define-property-1.0.0"
8952 ];
9008 ];
8953 })
9009 })
8954 (sources."snapdragon-util-3.0.1" // {
9010 (sources."snapdragon-util-3.0.1" // {
8955 dependencies = [
9011 dependencies = [
8956 sources."kind-of-3.2.2"
9012 sources."kind-of-3.2.2"
8957 ];
9013 ];
8958 })
9014 })
8959 sources."sntp-1.0.9"
9015 sources."sntp-1.0.9"
8960 sources."sort-keys-1.1.2"
9016 sources."sort-keys-1.1.2"
8961 sources."source-list-map-2.0.1"
9017 sources."source-list-map-2.0.1"
8962 sources."source-map-0.5.7"
9018 sources."source-map-0.5.7"
8963 sources."source-map-resolve-0.5.3"
9019 sources."source-map-resolve-0.5.3"
8964 sources."source-map-support-0.4.18"
9020 sources."source-map-support-0.4.18"
8965 sources."source-map-url-0.4.0"
9021 sources."source-map-url-0.4.0"
8966 sources."split-string-3.1.0"
9022 sources."split-string-3.1.0"
8967 sources."sprintf-js-1.0.3"
9023 sources."sprintf-js-1.0.3"
8968 (sources."sshpk-1.16.1" // {
9024 (sources."sshpk-1.16.1" // {
8969 dependencies = [
9025 dependencies = [
8970 sources."assert-plus-1.0.0"
9026 sources."assert-plus-1.0.0"
8971 ];
9027 ];
8972 })
9028 })
8973 sources."ssri-5.3.0"
9029 sources."ssri-5.3.0"
8974 (sources."static-extend-0.1.2" // {
9030 (sources."static-extend-0.1.2" // {
8975 dependencies = [
9031 dependencies = [
8976 sources."define-property-0.2.5"
9032 sources."define-property-0.2.5"
8977 (sources."is-accessor-descriptor-0.1.6" // {
9033 (sources."is-accessor-descriptor-0.1.6" // {
8978 dependencies = [
9034 dependencies = [
8979 sources."kind-of-3.2.2"
9035 sources."kind-of-3.2.2"
8980 ];
9036 ];
8981 })
9037 })
8982 (sources."is-data-descriptor-0.1.4" // {
9038 (sources."is-data-descriptor-0.1.4" // {
8983 dependencies = [
9039 dependencies = [
8984 sources."kind-of-3.2.2"
9040 sources."kind-of-3.2.2"
8985 ];
9041 ];
8986 })
9042 })
8987 sources."is-descriptor-0.1.6"
9043 sources."is-descriptor-0.1.6"
8988 sources."kind-of-5.1.0"
9044 sources."kind-of-5.1.0"
8989 ];
9045 ];
8990 })
9046 })
8991 sources."sticky-sidebar-3.3.1"
9047 sources."sticky-sidebar-3.3.1"
8992 (sources."stream-browserify-2.0.2" // {
9048 (sources."stream-browserify-2.0.2" // {
8993 dependencies = [
9049 dependencies = [
8994 sources."readable-stream-2.3.7"
9050 sources."readable-stream-2.3.7"
8995 sources."safe-buffer-5.1.2"
9051 sources."safe-buffer-5.1.2"
8996 sources."string_decoder-1.1.1"
9052 sources."string_decoder-1.1.1"
8997 ];
9053 ];
8998 })
9054 })
8999 sources."stream-each-1.2.3"
9055 sources."stream-each-1.2.3"
9000 (sources."stream-http-2.8.3" // {
9056 (sources."stream-http-2.8.3" // {
9001 dependencies = [
9057 dependencies = [
9002 sources."readable-stream-2.3.7"
9058 sources."readable-stream-2.3.7"
9003 sources."safe-buffer-5.1.2"
9059 sources."safe-buffer-5.1.2"
9004 sources."string_decoder-1.1.1"
9060 sources."string_decoder-1.1.1"
9005 ];
9061 ];
9006 })
9062 })
9007 sources."stream-shift-1.0.1"
9063 sources."stream-shift-1.0.1"
9008 sources."strict-uri-encode-1.1.0"
9064 sources."strict-uri-encode-1.1.0"
9009 (sources."string-width-2.1.1" // {
9065 (sources."string-width-2.1.1" // {
9010 dependencies = [
9066 dependencies = [
9011 sources."ansi-regex-3.0.0"
9067 sources."ansi-regex-3.0.0"
9012 sources."is-fullwidth-code-point-2.0.0"
9068 sources."is-fullwidth-code-point-2.0.0"
9013 sources."strip-ansi-4.0.0"
9069 sources."strip-ansi-4.0.0"
9014 ];
9070 ];
9015 })
9071 })
9016 sources."string.prototype.trimend-1.0.1"
9072 sources."string.prototype.trimend-1.0.1"
9017 sources."string.prototype.trimleft-2.1.2"
9073 sources."string.prototype.trimleft-2.1.2"
9018 sources."string.prototype.trimright-2.1.2"
9074 sources."string.prototype.trimright-2.1.2"
9019 sources."string.prototype.trimstart-1.0.1"
9075 sources."string.prototype.trimstart-1.0.1"
9020 sources."string_decoder-0.10.31"
9076 sources."string_decoder-0.10.31"
9021 sources."stringstream-0.0.6"
9077 sources."stringstream-0.0.6"
9022 sources."strip-ansi-0.3.0"
9078 sources."strip-ansi-0.3.0"
9023 sources."strip-eof-1.0.0"
9079 sources."strip-eof-1.0.0"
9024 sources."strip-json-comments-1.0.4"
9080 sources."strip-json-comments-1.0.4"
9025 sources."style-loader-0.21.0"
9081 sources."style-loader-0.21.0"
9026 sources."supports-color-0.2.0"
9082 sources."supports-color-0.2.0"
9027 (sources."svgo-0.7.2" // {
9083 (sources."svgo-0.7.2" // {
9028 dependencies = [
9084 dependencies = [
9029 sources."argparse-1.0.10"
9085 sources."argparse-1.0.10"
9030 sources."colors-1.1.2"
9086 sources."colors-1.1.2"
9031 sources."esprima-2.7.3"
9087 sources."esprima-2.7.3"
9032 sources."js-yaml-3.7.0"
9088 sources."js-yaml-3.7.0"
9033 ];
9089 ];
9034 })
9090 })
9035 sources."sweetalert2-9.10.12"
9091 sources."sweetalert2-9.10.13"
9036 sources."tapable-1.1.3"
9092 sources."tapable-1.1.3"
9037 sources."through-2.3.8"
9093 sources."through-2.3.8"
9038 (sources."through2-2.0.5" // {
9094 (sources."through2-2.0.5" // {
9039 dependencies = [
9095 dependencies = [
9040 sources."readable-stream-2.3.7"
9096 sources."readable-stream-2.3.7"
9041 sources."safe-buffer-5.1.2"
9097 sources."safe-buffer-5.1.2"
9042 sources."string_decoder-1.1.1"
9098 sources."string_decoder-1.1.1"
9043 ];
9099 ];
9044 })
9100 })
9045 sources."timers-browserify-2.0.11"
9101 sources."timers-browserify-2.0.11"
9046 sources."tiny-emitter-2.1.0"
9102 sources."tiny-emitter-2.1.0"
9047 (sources."tiny-lr-fork-0.0.5" // {
9103 (sources."tiny-lr-fork-0.0.5" // {
9048 dependencies = [
9104 dependencies = [
9049 sources."debug-0.7.4"
9105 sources."debug-0.7.4"
9050 sources."qs-0.5.6"
9106 sources."qs-0.5.6"
9051 ];
9107 ];
9052 })
9108 })
9053 sources."to-arraybuffer-1.0.1"
9109 sources."to-arraybuffer-1.0.1"
9054 sources."to-fast-properties-1.0.3"
9110 sources."to-fast-properties-1.0.3"
9055 (sources."to-object-path-0.3.0" // {
9111 (sources."to-object-path-0.3.0" // {
9056 dependencies = [
9112 dependencies = [
9057 sources."kind-of-3.2.2"
9113 sources."kind-of-3.2.2"
9058 ];
9114 ];
9059 })
9115 })
9060 sources."to-regex-3.0.2"
9116 sources."to-regex-3.0.2"
9061 sources."to-regex-range-2.1.1"
9117 sources."to-regex-range-2.1.1"
9062 sources."toposort-1.0.7"
9118 sources."toposort-1.0.7"
9063 sources."tough-cookie-2.3.4"
9119 sources."tough-cookie-2.3.4"
9064 sources."trim-right-1.0.1"
9120 sources."trim-right-1.0.1"
9065 (sources."ts-loader-1.3.3" // {
9121 (sources."ts-loader-1.3.3" // {
9066 dependencies = [
9122 dependencies = [
9067 sources."big.js-3.2.0"
9123 sources."big.js-3.2.0"
9068 sources."colors-1.4.0"
9124 sources."colors-1.4.0"
9069 sources."emojis-list-2.1.0"
9125 sources."emojis-list-2.1.0"
9070 sources."enhanced-resolve-3.4.1"
9126 sources."enhanced-resolve-3.4.1"
9071 sources."graceful-fs-4.2.3"
9127 sources."graceful-fs-4.2.4"
9072 sources."json5-0.5.1"
9128 sources."json5-0.5.1"
9073 sources."loader-utils-0.2.17"
9129 sources."loader-utils-0.2.17"
9074 sources."tapable-0.2.9"
9130 sources."tapable-0.2.9"
9075 ];
9131 ];
9076 })
9132 })
9077 sources."tslib-1.11.1"
9133 sources."tslib-1.11.2"
9078 sources."tty-browserify-0.0.0"
9134 sources."tty-browserify-0.0.0"
9079 sources."tunnel-agent-0.6.0"
9135 sources."tunnel-agent-0.6.0"
9080 sources."tweetnacl-0.14.5"
9136 sources."tweetnacl-0.14.5"
9081 sources."typedarray-0.0.6"
9137 sources."typedarray-0.0.6"
9082 (sources."uglify-es-3.3.10" // {
9138 (sources."uglify-es-3.3.10" // {
9083 dependencies = [
9139 dependencies = [
9084 sources."commander-2.14.1"
9140 sources."commander-2.14.1"
9085 sources."source-map-0.6.1"
9141 sources."source-map-0.6.1"
9086 ];
9142 ];
9087 })
9143 })
9088 sources."uglify-js-3.9.1"
9144 sources."uglify-js-3.9.2"
9089 sources."uglify-to-browserify-1.0.2"
9145 sources."uglify-to-browserify-1.0.2"
9090 (sources."uglifyjs-webpack-plugin-1.3.0" // {
9146 (sources."uglifyjs-webpack-plugin-1.3.0" // {
9091 dependencies = [
9147 dependencies = [
9092 sources."source-map-0.6.1"
9148 sources."source-map-0.6.1"
9093 ];
9149 ];
9094 })
9150 })
9095 sources."unc-path-regex-0.1.2"
9151 sources."unc-path-regex-0.1.2"
9096 sources."underscore-1.7.0"
9152 sources."underscore-1.7.0"
9097 sources."underscore.string-2.2.1"
9153 sources."underscore.string-2.2.1"
9098 sources."unicode-canonical-property-names-ecmascript-1.0.4"
9154 sources."unicode-canonical-property-names-ecmascript-1.0.4"
9099 sources."unicode-match-property-ecmascript-1.0.4"
9155 sources."unicode-match-property-ecmascript-1.0.4"
9100 sources."unicode-match-property-value-ecmascript-1.2.0"
9156 sources."unicode-match-property-value-ecmascript-1.2.0"
9101 sources."unicode-property-aliases-ecmascript-1.1.0"
9157 sources."unicode-property-aliases-ecmascript-1.1.0"
9102 sources."union-value-1.0.1"
9158 sources."union-value-1.0.1"
9103 sources."uniq-1.0.1"
9159 sources."uniq-1.0.1"
9104 sources."uniqs-2.0.0"
9160 sources."uniqs-2.0.0"
9105 sources."unique-filename-1.1.1"
9161 sources."unique-filename-1.1.1"
9106 sources."unique-slug-2.0.2"
9162 sources."unique-slug-2.0.2"
9107 (sources."unset-value-1.0.0" // {
9163 (sources."unset-value-1.0.0" // {
9108 dependencies = [
9164 dependencies = [
9109 (sources."has-value-0.3.1" // {
9165 (sources."has-value-0.3.1" // {
9110 dependencies = [
9166 dependencies = [
9111 sources."isobject-2.1.0"
9167 sources."isobject-2.1.0"
9112 ];
9168 ];
9113 })
9169 })
9114 sources."has-values-0.1.4"
9170 sources."has-values-0.1.4"
9115 ];
9171 ];
9116 })
9172 })
9117 sources."upath-1.2.0"
9173 sources."upath-1.2.0"
9118 sources."upper-case-1.1.3"
9174 sources."upper-case-1.1.3"
9119 (sources."uri-js-4.2.2" // {
9175 (sources."uri-js-4.2.2" // {
9120 dependencies = [
9176 dependencies = [
9121 sources."punycode-2.1.1"
9177 sources."punycode-2.1.1"
9122 ];
9178 ];
9123 })
9179 })
9124 sources."uri-path-1.0.0"
9180 sources."uri-path-1.0.0"
9125 sources."urix-0.1.0"
9181 sources."urix-0.1.0"
9126 (sources."url-0.11.0" // {
9182 (sources."url-0.11.0" // {
9127 dependencies = [
9183 dependencies = [
9128 sources."punycode-1.3.2"
9184 sources."punycode-1.3.2"
9129 ];
9185 ];
9130 })
9186 })
9131 sources."use-3.1.1"
9187 sources."use-3.1.1"
9132 (sources."util-0.11.1" // {
9188 (sources."util-0.11.1" // {
9133 dependencies = [
9189 dependencies = [
9134 sources."inherits-2.0.3"
9190 sources."inherits-2.0.3"
9135 ];
9191 ];
9136 })
9192 })
9137 sources."util-deprecate-1.0.2"
9193 sources."util-deprecate-1.0.2"
9138 sources."util.promisify-1.0.0"
9194 sources."util.promisify-1.0.0"
9139 sources."utila-0.4.0"
9195 sources."utila-0.4.0"
9140 sources."uuid-3.4.0"
9196 sources."uuid-3.4.0"
9141 sources."v8-compile-cache-2.1.0"
9197 sources."v8-compile-cache-2.1.0"
9142 sources."v8flags-3.1.3"
9198 sources."v8flags-3.1.3"
9143 sources."vendors-1.0.4"
9199 sources."vendors-1.0.4"
9144 (sources."verror-1.10.0" // {
9200 (sources."verror-1.10.0" // {
9145 dependencies = [
9201 dependencies = [
9146 sources."assert-plus-1.0.0"
9202 sources."assert-plus-1.0.0"
9147 ];
9203 ];
9148 })
9204 })
9149 sources."vm-browserify-1.1.2"
9205 sources."vm-browserify-1.1.2"
9150 (sources."watchpack-1.6.1" // {
9206 (sources."watchpack-1.6.1" // {
9151 dependencies = [
9207 dependencies = [
9152 sources."graceful-fs-4.2.3"
9208 sources."graceful-fs-4.2.4"
9153 ];
9209 ];
9154 })
9210 })
9155 sources."waypoints-4.0.1"
9211 sources."waypoints-4.0.1"
9156 (sources."webpack-4.23.1" // {
9212 (sources."webpack-4.23.1" // {
9157 dependencies = [
9213 dependencies = [
9158 sources."ajv-6.12.0"
9214 sources."ajv-6.12.2"
9159 ];
9215 ];
9160 })
9216 })
9161 (sources."webpack-cli-3.1.2" // {
9217 (sources."webpack-cli-3.1.2" // {
9162 dependencies = [
9218 dependencies = [
9163 sources."ansi-styles-3.2.1"
9219 sources."ansi-styles-3.2.1"
9164 sources."chalk-2.4.2"
9220 sources."chalk-2.4.2"
9165 sources."supports-color-5.5.0"
9221 sources."supports-color-5.5.0"
9166 ];
9222 ];
9167 })
9223 })
9168 (sources."webpack-core-0.6.9" // {
9224 (sources."webpack-core-0.6.9" // {
9169 dependencies = [
9225 dependencies = [
9170 sources."source-list-map-0.1.8"
9226 sources."source-list-map-0.1.8"
9171 sources."source-map-0.4.4"
9227 sources."source-map-0.4.4"
9172 ];
9228 ];
9173 })
9229 })
9174 (sources."webpack-sources-1.4.3" // {
9230 (sources."webpack-sources-1.4.3" // {
9175 dependencies = [
9231 dependencies = [
9176 sources."source-map-0.6.1"
9232 sources."source-map-0.6.1"
9177 ];
9233 ];
9178 })
9234 })
9179 (sources."webpack-uglify-js-plugin-1.1.9" // {
9235 (sources."webpack-uglify-js-plugin-1.1.9" // {
9180 dependencies = [
9236 dependencies = [
9181 sources."ansi-regex-2.1.1"
9237 sources."ansi-regex-2.1.1"
9182 sources."ansi-styles-2.2.1"
9238 sources."ansi-styles-2.2.1"
9183 sources."camelcase-1.2.1"
9239 sources."camelcase-1.2.1"
9184 sources."chalk-1.1.3"
9240 sources."chalk-1.1.3"
9185 sources."cliui-2.1.0"
9241 sources."cliui-2.1.0"
9186 sources."has-ansi-2.0.0"
9242 sources."has-ansi-2.0.0"
9187 sources."strip-ansi-3.0.1"
9243 sources."strip-ansi-3.0.1"
9188 sources."supports-color-2.0.0"
9244 sources."supports-color-2.0.0"
9189 sources."uglify-js-2.8.29"
9245 sources."uglify-js-2.8.29"
9190 sources."yargs-3.10.0"
9246 sources."yargs-3.10.0"
9191 ];
9247 ];
9192 })
9248 })
9193 sources."whet.extend-0.9.9"
9249 sources."whet.extend-0.9.9"
9194 sources."which-1.0.9"
9250 sources."which-1.0.9"
9195 sources."which-module-2.0.0"
9251 sources."which-module-2.0.0"
9196 sources."window-size-0.1.0"
9252 sources."window-size-0.1.0"
9197 sources."wordwrap-0.0.2"
9253 sources."wordwrap-0.0.2"
9198 sources."worker-farm-1.7.0"
9254 sources."worker-farm-1.7.0"
9199 (sources."wrap-ansi-2.1.0" // {
9255 (sources."wrap-ansi-2.1.0" // {
9200 dependencies = [
9256 dependencies = [
9201 sources."ansi-regex-2.1.1"
9257 sources."ansi-regex-2.1.1"
9202 sources."string-width-1.0.2"
9258 sources."string-width-1.0.2"
9203 sources."strip-ansi-3.0.1"
9259 sources."strip-ansi-3.0.1"
9204 ];
9260 ];
9205 })
9261 })
9206 sources."wrappy-1.0.2"
9262 sources."wrappy-1.0.2"
9207 sources."xtend-4.0.2"
9263 sources."xtend-4.0.2"
9208 sources."y18n-4.0.0"
9264 sources."y18n-4.0.0"
9209 sources."yallist-2.1.2"
9265 sources."yallist-2.1.2"
9210 (sources."yargs-12.0.5" // {
9266 (sources."yargs-12.0.5" // {
9211 dependencies = [
9267 dependencies = [
9212 sources."find-up-3.0.0"
9268 sources."find-up-3.0.0"
9213 sources."locate-path-3.0.0"
9269 sources."locate-path-3.0.0"
9214 sources."p-limit-2.3.0"
9270 sources."p-limit-2.3.0"
9215 sources."p-locate-3.0.0"
9271 sources."p-locate-3.0.0"
9216 sources."p-try-2.2.0"
9272 sources."p-try-2.2.0"
9217 ];
9273 ];
9218 })
9274 })
9219 sources."yargs-parser-11.1.1"
9275 sources."yargs-parser-11.1.1"
9220 ];
9276 ];
9221 buildInputs = globalBuildInputs;
9277 buildInputs = globalBuildInputs;
9222 meta = {
9278 meta = {
9223 description = "RhodeCode JS packaged";
9279 description = "RhodeCode JS packaged";
9224 license = "SEE LICENSE IN LICENSE.txt";
9280 license = "SEE LICENSE IN LICENSE.txt";
9225 };
9281 };
9226 production = false;
9282 production = false;
9227 bypassCache = true;
9283 bypassCache = true;
9284 reconstructLock = true;
9228 };
9285 };
9229 in
9286 in
9230 {
9287 {
9288 args = args;
9289 sources = sources;
9231 tarball = nodeEnv.buildNodeSourceDist args;
9290 tarball = nodeEnv.buildNodeSourceDist args;
9232 package = nodeEnv.buildNodePackage args;
9291 package = nodeEnv.buildNodePackage args;
9233 shell = nodeEnv.buildNodeShell args;
9292 shell = nodeEnv.buildNodeShell args;
9234 } No newline at end of file
9293 }
@@ -1,83 +1,83 b''
1 /* webpack.config.js */
1 /* webpack.config.js */
2 require('style-loader');
2 require('style-loader');
3 require('css-loader');
3 require('css-loader');
4 var path = require('path');
4 var path = require('path');
5
5
6 const projectName = 'rhodecode-components';
6 const projectName = 'rhodecode-components';
7 let destinationDirectory = path.join(process.cwd(), 'rhodecode', 'public', 'js')
7 let destinationDirectory = path.join(process.cwd(), 'rhodecode', 'public', 'js')
8
8
9 if (process.env.RC_STATIC_DIR) {
9 if (process.env.RC_STATIC_DIR) {
10 destinationDirectory = process.env.RC_STATIC_DIR;
10 destinationDirectory = process.env.RC_STATIC_DIR;
11 }
11 }
12
12
13 // doing it this way because it seems that plugin via grunt does not pick up .babelrc
13 // doing it this way because it seems that plugin via grunt does not pick up .babelrc
14 let babelRCOptions = {
14 let babelRCOptions = {
15 "presets": [
15 "presets": [
16 ["env", {
16 ["env", {
17 "targets": {
17 "targets": {
18 "browsers": ["last 2 versions"]
18 "browsers": ["last 2 versions"]
19 }
19 }
20 }]
20 }]
21 ],
21 ],
22 "plugins": ["transform-object-rest-spread"]
22 "plugins": ["transform-object-rest-spread"]
23 }
23 };
24
24
25 module.exports = {
25 module.exports = {
26 // Tell Webpack which file kicks off our app.
26 // Tell Webpack which file kicks off our app.
27 entry: {
27 entry: {
28 main: path.resolve(__dirname, 'rhodecode/public/js/src/components/index.js'),
28 main: path.resolve(__dirname, 'rhodecode/public/js/src/components/index.js'),
29 },
29 },
30 output: {
30 output: {
31 filename: 'rhodecode-components.js',
31 filename: 'rhodecode-components.js',
32 path: path.resolve(destinationDirectory)
32 path: path.resolve(destinationDirectory)
33 },
33 },
34 // Tell Webpack which directories to look in to resolve import statements.
34 // Tell Webpack which directories to look in to resolve import statements.
35 // Normally Webpack will look in node_modules by default but since we’re overriding
35 // Normally Webpack will look in node_modules by default but since we’re overriding
36 // the property we’ll need to tell it to look there.
36 resolve: {
37 resolve: {
37 modules: [
38 modules: [
38 path.resolve(__dirname, 'node_modules'),
39 path.resolve(__dirname, 'node_modules'),
39 ]
40 ]
40 },
41 },
41 // These rules tell Webpack how to process different module types.
42 // These rules tell Webpack how to process different module types.
42 // Remember, *everything* is a module in Webpack. That includes
43 // Remember, *everything* is a module in Webpack. That includes
43 // CSS, and (thanks to our loader) HTML.
44 // CSS, and (thanks to our loader) HTML.
44 module: {
45 module: {
45 rules: [
46 rules: [
46 {
47 {
47 test: /style-polymer.css/,
48 test: /style-polymer.css/,
48 use: 'raw-loader'
49 use: 'raw-loader'
49 },
50 },
50 {
51 {
51 // If you see a file that ends in .html, send it to these loaders.
52 // If you see a file that ends in .html, send it to these loaders.
52 test: /\.html$/,
53 test: /\.html$/,
53 // This is an example of chained loaders in Webpack.
54 // This is an example of chained loaders in Webpack.
54 // Chained loaders run last to first. So it will run
55 // Chained loaders run last to first. So it will run
55 // polymer-webpack-loader, and hand the output to
56 // polymer-webpack-loader, and hand the output to
56 // babel-loader. This let's us transpile JS in our `<script>` elements.
57 // babel-loader. This let's us transpile JS in our `<script>` elements.
57 use: [
58 use: [
58 {loader: 'babel-loader',
59 {loader: 'babel-loader', options: babelRCOptions},
59 options: babelRCOptions},
60 {loader: 'polymer-webpack-loader',
60 {loader: 'polymer-webpack-loader',
61 options: {
61 options: {
62 processStyleLinks: true,
62 processStyleLinks: true,
63 }
63 }
64 }
64 }
65 ],
65 ],
66 },
66 },
67 {
67 {
68 // If you see a file that ends in .js, just send it to the babel-loader.
68 // If you see a file that ends in .js, just send it to the babel-loader.
69 test: /\.js$/,
69 test: /\.js$/,
70 use: {loader: 'babel-loader', options: babelRCOptions}
70 use: {loader: 'babel-loader', options: babelRCOptions}
71 // Optionally exclude node_modules from transpilation except for polymer-webpack-loader:
71 // Optionally exclude node_modules from transpilation except for polymer-webpack-loader:
72 // exclude: /node_modules\/(?!polymer-webpack-loader\/).*/
72 // exclude: /node_modules\/(?!polymer-webpack-loader\/).*/
73 },
73 },
74 // this is required because of bug:
74 // this is required because of bug:
75 // https://github.com/webpack-contrib/polymer-webpack-loader/issues/49
75 // https://github.com/webpack-contrib/polymer-webpack-loader/issues/49
76 {
76 {
77 test: /intl-messageformat.min.js/,
77 test: /intl-messageformat.min.js/,
78 use: 'imports-loader?this=>window'
78 use: 'imports-loader?this=>window'
79 }
79 }
80 ]
80 ]
81 },
81 },
82 plugins: []
82 plugins: []
83 };
83 };
General Comments 0
You need to be logged in to leave comments. Login now