├── .gitignore ├── LICENSE ├── TODO ├── back ├── default.nix └── yarn.nix ├── default.nix ├── front ├── default.nix └── yarn.nix ├── maps ├── default.nix └── yarn.nix ├── messages ├── default.nix └── yarn.nix ├── overlay.nix ├── pusher ├── default.nix └── yarn.nix └── uploader ├── default.nix └── yarn.nix /.gitignore: -------------------------------------------------------------------------------- 1 | result 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Sandro Jäckel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | - Remove Google Tag Manager 2 | - Do we need website? 3 | -------------------------------------------------------------------------------- /back/default.nix: -------------------------------------------------------------------------------- 1 | { stdenv 2 | , autoPatchelfHook 3 | , fetchFromGitHub 4 | , fetchzip 5 | , makeWrapper 6 | , nodejs-14_x 7 | , workadventure 8 | , yarn2nix-moretea 9 | , ... }: 10 | 11 | let 12 | node-abi = "83"; 13 | 14 | node-grpc-precompiled = fetchzip { 15 | name = "node-grpc-precompiled-node-${node-abi}"; 16 | url = "https://node-precompiled-binaries.grpc.io/grpc/v1.24.4/node-v${node-abi}-linux-x64-glibc.tar.gz"; 17 | sha256 = "119rhhk1jpi2vwyim7byq3agacasc4q25c26wyzfmy8vk2ih6ndj"; 18 | }; 19 | 20 | node-grpc-patched = stdenv.mkDerivation { 21 | name = "node-grpc"; 22 | buildInputs = [ stdenv.cc.cc ]; 23 | nativeBuildInputs = [ autoPatchelfHook ]; 24 | dontUnpack = true; 25 | # spams console 26 | dontStrip = true; 27 | installPhase = '' 28 | install -D -m755 ${node-grpc-precompiled}/grpc_node.node $out/bin/grpc_node.node 29 | ''; 30 | }; 31 | 32 | in 33 | yarn2nix-moretea.mkYarnPackage rec { 34 | pname = "workadventureback"; 35 | version = "unstable"; 36 | 37 | src = fetchFromGitHub 38 | { 39 | owner = "thecodingmachine"; 40 | repo = "workadventure"; 41 | rev = "284846e8a59ec0d921189ac3a46e0eb5d1e14818"; 42 | sha256 = "1f1vi226kas7x9y8zw810q5vg1ikn4bb6ha9vnzvqk9y7jlc1n8q"; 43 | } + "/back"; 44 | 45 | # NOTE: this is optional and generated dynamically if omitted 46 | yarnNix = ./yarn.nix; 47 | 48 | nativeBuildInputs = [ makeWrapper ]; 49 | 50 | pkgConfig = { 51 | grpc = { 52 | postInstall = '' 53 | install -D -m755 ${node-grpc-patched}/bin/grpc_node.node src/node/extension_binary/node-v${node-abi}-linux-x64-glibc/grpc_node.node 54 | ''; 55 | }; 56 | }; 57 | 58 | dontStrip = true; 59 | 60 | buildPhase = '' 61 | mkdir -p $out 62 | ln -s ${workadventure.messages.outPath}/generated deps/${pname}/src/Messages/generated 63 | HOME=$TMPDIR yarn --offline run tsc 64 | cp -r deps/${pname}/dist $out/dist 65 | ''; 66 | 67 | postInstall = '' 68 | # node-abi needs to the abi of the node here 69 | makeWrapper '${nodejs-14_x}/bin/node' "$out/bin/${pname}" \ 70 | --set NODE_PATH $out/libexec/${pname}/node_modules \ 71 | --add-flags "$out/dist/server.js" 72 | ''; 73 | } 74 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- 1 | { system ? builtins.currentSystem, nixpkgs ? }: 2 | 3 | let 4 | pkgs = import nixpkgs { inherit system; overlays = [ (import ./overlay.nix) ]; }; 5 | in { 6 | inherit pkgs; 7 | inherit (pkgs) workadventure; 8 | } 9 | -------------------------------------------------------------------------------- /front/default.nix: -------------------------------------------------------------------------------- 1 | { stdenv 2 | , fetchFromGitHub 3 | , makeWrapper 4 | , workadventure 5 | , yarn2nix-moretea 6 | , ... }: 7 | yarn2nix-moretea.mkYarnPackage rec { 8 | pname = "workadventurefront"; 9 | version = "unstable"; 10 | 11 | src = fetchFromGitHub 12 | { 13 | owner = "thecodingmachine"; 14 | repo = "workadventure"; 15 | rev = "284846e8a59ec0d921189ac3a46e0eb5d1e14818"; 16 | sha256 = "1f1vi226kas7x9y8zw810q5vg1ikn4bb6ha9vnzvqk9y7jlc1n8q"; 17 | } + "/front"; 18 | 19 | # NOTE: this is optional and generated dynamically if omitted 20 | yarnNix = ./yarn.nix; 21 | 22 | nativeBuildInputs = [ makeWrapper ]; 23 | 24 | dontStrip = true; 25 | 26 | buildPhase = '' 27 | mkdir -p $out 28 | ln -s ${workadventure.messages.outPath}/generated deps/${pname}/src/Messages/generated 29 | HOME=$TMPDIR yarn --offline run build 30 | cp -r deps/${pname}/dist/ $out/ 31 | ''; 32 | 33 | distPhase = ":"; 34 | installPhase = ":"; 35 | } 36 | -------------------------------------------------------------------------------- /maps/default.nix: -------------------------------------------------------------------------------- 1 | { stdenv 2 | , fetchFromGitHub 3 | , makeWrapper 4 | , yarn2nix-moretea 5 | , ... }: 6 | 7 | yarn2nix-moretea.mkYarnPackage rec { 8 | pname = "workadventuremaps"; 9 | version = "unstable"; 10 | 11 | src = fetchFromGitHub 12 | { 13 | owner = "thecodingmachine"; 14 | repo = "workadventure"; 15 | rev = "284846e8a59ec0d921189ac3a46e0eb5d1e14818"; 16 | sha256 = "1f1vi226kas7x9y8zw810q5vg1ikn4bb6ha9vnzvqk9y7jlc1n8q"; 17 | } + "/maps"; 18 | 19 | # NOTE: this is optional and generated dynamically if omitted 20 | yarnNix = ./yarn.nix; 21 | 22 | nativeBuildInputs = [ makeWrapper ]; 23 | 24 | dontStrip = true; 25 | 26 | buildPhase = '' 27 | mkdir -p $out 28 | HOME=$TMPDIR yarn --offline run tsc 29 | cp -r deps/${pname} $out 30 | ''; 31 | } 32 | -------------------------------------------------------------------------------- /maps/yarn.nix: -------------------------------------------------------------------------------- 1 | { fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec { 2 | offline_cache = linkFarm "offline" packages; 3 | packages = [ 4 | { 5 | name = "_babel_code_frame___code_frame_7.10.4.tgz"; 6 | path = fetchurl { 7 | name = "_babel_code_frame___code_frame_7.10.4.tgz"; 8 | url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz"; 9 | sha1 = "168da1a36e90da68ae8d49c0f1b48c7c6249213a"; 10 | }; 11 | } 12 | { 13 | name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz"; 14 | path = fetchurl { 15 | name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz"; 16 | url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"; 17 | sha1 = "a78c7a7251e01f616512d31b10adcf52ada5e0d2"; 18 | }; 19 | } 20 | { 21 | name = "_babel_highlight___highlight_7.10.4.tgz"; 22 | path = fetchurl { 23 | name = "_babel_highlight___highlight_7.10.4.tgz"; 24 | url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz"; 25 | sha1 = "7d1bdfd65753538fabe6c38596cdb76d9ac60143"; 26 | }; 27 | } 28 | { 29 | name = "_types_eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; 30 | path = fetchurl { 31 | name = "_types_eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; 32 | url = "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"; 33 | sha1 = "1ee30d79544ca84d68d4b3cdb0af4f205663dd2d"; 34 | }; 35 | } 36 | { 37 | name = "_types_jasmine___jasmine_3.6.2.tgz"; 38 | path = fetchurl { 39 | name = "_types_jasmine___jasmine_3.6.2.tgz"; 40 | url = "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-3.6.2.tgz"; 41 | sha1 = "02f64450016f7de70f145d698be311136d7c6374"; 42 | }; 43 | } 44 | { 45 | name = "_types_json_schema___json_schema_7.0.6.tgz"; 46 | path = fetchurl { 47 | name = "_types_json_schema___json_schema_7.0.6.tgz"; 48 | url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz"; 49 | sha1 = "f4c7ec43e81b319a9815115031709f26987891f0"; 50 | }; 51 | } 52 | { 53 | name = "_types_strip_bom___strip_bom_3.0.0.tgz"; 54 | path = fetchurl { 55 | name = "_types_strip_bom___strip_bom_3.0.0.tgz"; 56 | url = "https://registry.yarnpkg.com/@types/strip-bom/-/strip-bom-3.0.0.tgz"; 57 | sha1 = "14a8ec3956c2e81edb7520790aecf21c290aebd2"; 58 | }; 59 | } 60 | { 61 | name = "_types_strip_json_comments___strip_json_comments_0.0.30.tgz"; 62 | path = fetchurl { 63 | name = "_types_strip_json_comments___strip_json_comments_0.0.30.tgz"; 64 | url = "https://registry.yarnpkg.com/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz"; 65 | sha1 = "9aa30c04db212a9a0649d6ae6fd50accc40748a1"; 66 | }; 67 | } 68 | { 69 | name = "_typescript_eslint_eslint_plugin___eslint_plugin_2.34.0.tgz"; 70 | path = fetchurl { 71 | name = "_typescript_eslint_eslint_plugin___eslint_plugin_2.34.0.tgz"; 72 | url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz"; 73 | sha1 = "6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9"; 74 | }; 75 | } 76 | { 77 | name = "_typescript_eslint_experimental_utils___experimental_utils_2.34.0.tgz"; 78 | path = fetchurl { 79 | name = "_typescript_eslint_experimental_utils___experimental_utils_2.34.0.tgz"; 80 | url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz"; 81 | sha1 = "d3524b644cdb40eebceca67f8cf3e4cc9c8f980f"; 82 | }; 83 | } 84 | { 85 | name = "_typescript_eslint_parser___parser_2.34.0.tgz"; 86 | path = fetchurl { 87 | name = "_typescript_eslint_parser___parser_2.34.0.tgz"; 88 | url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz"; 89 | sha1 = "50252630ca319685420e9a39ca05fe185a256bc8"; 90 | }; 91 | } 92 | { 93 | name = "_typescript_eslint_typescript_estree___typescript_estree_2.34.0.tgz"; 94 | path = fetchurl { 95 | name = "_typescript_eslint_typescript_estree___typescript_estree_2.34.0.tgz"; 96 | url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz"; 97 | sha1 = "14aeb6353b39ef0732cc7f1b8285294937cf37d5"; 98 | }; 99 | } 100 | { 101 | name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 102 | path = fetchurl { 103 | name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 104 | url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; 105 | sha1 = "fc8661e11b7ac1539c47dbfea2e72b3af34d267b"; 106 | }; 107 | } 108 | { 109 | name = "acorn___acorn_7.4.1.tgz"; 110 | path = fetchurl { 111 | name = "acorn___acorn_7.4.1.tgz"; 112 | url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz"; 113 | sha1 = "feaed255973d2e77555b83dbc08851a6c63520fa"; 114 | }; 115 | } 116 | { 117 | name = "ajv_keywords___ajv_keywords_3.5.2.tgz"; 118 | path = fetchurl { 119 | name = "ajv_keywords___ajv_keywords_3.5.2.tgz"; 120 | url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz"; 121 | sha1 = "31f29da5ab6e00d1c2d329acf7b5929614d5014d"; 122 | }; 123 | } 124 | { 125 | name = "ajv___ajv_6.12.6.tgz"; 126 | path = fetchurl { 127 | name = "ajv___ajv_6.12.6.tgz"; 128 | url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz"; 129 | sha1 = "baf5a62e802b07d977034586f8c3baf5adf26df4"; 130 | }; 131 | } 132 | { 133 | name = "ansi_escapes___ansi_escapes_4.3.1.tgz"; 134 | path = fetchurl { 135 | name = "ansi_escapes___ansi_escapes_4.3.1.tgz"; 136 | url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz"; 137 | sha1 = "a5c47cc43181f1f38ffd7076837700d395522a61"; 138 | }; 139 | } 140 | { 141 | name = "ansi_regex___ansi_regex_4.1.0.tgz"; 142 | path = fetchurl { 143 | name = "ansi_regex___ansi_regex_4.1.0.tgz"; 144 | url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz"; 145 | sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997"; 146 | }; 147 | } 148 | { 149 | name = "ansi_regex___ansi_regex_5.0.0.tgz"; 150 | path = fetchurl { 151 | name = "ansi_regex___ansi_regex_5.0.0.tgz"; 152 | url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz"; 153 | sha1 = "388539f55179bf39339c81af30a654d69f87cb75"; 154 | }; 155 | } 156 | { 157 | name = "ansi_styles___ansi_styles_3.2.1.tgz"; 158 | path = fetchurl { 159 | name = "ansi_styles___ansi_styles_3.2.1.tgz"; 160 | url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; 161 | sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d"; 162 | }; 163 | } 164 | { 165 | name = "ansi_styles___ansi_styles_4.3.0.tgz"; 166 | path = fetchurl { 167 | name = "ansi_styles___ansi_styles_4.3.0.tgz"; 168 | url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz"; 169 | sha1 = "edd803628ae71c04c85ae7a0906edad34b648937"; 170 | }; 171 | } 172 | { 173 | name = "anymatch___anymatch_3.1.1.tgz"; 174 | path = fetchurl { 175 | name = "anymatch___anymatch_3.1.1.tgz"; 176 | url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz"; 177 | sha1 = "c55ecf02185e2469259399310c173ce31233b142"; 178 | }; 179 | } 180 | { 181 | name = "arg___arg_4.1.3.tgz"; 182 | path = fetchurl { 183 | name = "arg___arg_4.1.3.tgz"; 184 | url = "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz"; 185 | sha1 = "269fc7ad5b8e42cb63c896d5666017261c144089"; 186 | }; 187 | } 188 | { 189 | name = "argparse___argparse_1.0.10.tgz"; 190 | path = fetchurl { 191 | name = "argparse___argparse_1.0.10.tgz"; 192 | url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; 193 | sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; 194 | }; 195 | } 196 | { 197 | name = "array_find_index___array_find_index_1.0.2.tgz"; 198 | path = fetchurl { 199 | name = "array_find_index___array_find_index_1.0.2.tgz"; 200 | url = "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz"; 201 | sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1"; 202 | }; 203 | } 204 | { 205 | name = "astral_regex___astral_regex_1.0.0.tgz"; 206 | path = fetchurl { 207 | name = "astral_regex___astral_regex_1.0.0.tgz"; 208 | url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; 209 | sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; 210 | }; 211 | } 212 | { 213 | name = "balanced_match___balanced_match_1.0.0.tgz"; 214 | path = fetchurl { 215 | name = "balanced_match___balanced_match_1.0.0.tgz"; 216 | url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 217 | sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 218 | }; 219 | } 220 | { 221 | name = "big.js___big.js_5.2.2.tgz"; 222 | path = fetchurl { 223 | name = "big.js___big.js_5.2.2.tgz"; 224 | url = "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz"; 225 | sha1 = "65f0af382f578bcdc742bd9c281e9cb2d7768328"; 226 | }; 227 | } 228 | { 229 | name = "binary_extensions___binary_extensions_2.1.0.tgz"; 230 | path = fetchurl { 231 | name = "binary_extensions___binary_extensions_2.1.0.tgz"; 232 | url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz"; 233 | sha1 = "30fa40c9e7fe07dbc895678cd287024dea241dd9"; 234 | }; 235 | } 236 | { 237 | name = "brace_expansion___brace_expansion_1.1.11.tgz"; 238 | path = fetchurl { 239 | name = "brace_expansion___brace_expansion_1.1.11.tgz"; 240 | url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; 241 | sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; 242 | }; 243 | } 244 | { 245 | name = "braces___braces_3.0.2.tgz"; 246 | path = fetchurl { 247 | name = "braces___braces_3.0.2.tgz"; 248 | url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz"; 249 | sha1 = "3454e1a462ee8d599e236df336cd9ea4f8afe107"; 250 | }; 251 | } 252 | { 253 | name = "buffer_from___buffer_from_1.1.1.tgz"; 254 | path = fetchurl { 255 | name = "buffer_from___buffer_from_1.1.1.tgz"; 256 | url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; 257 | sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; 258 | }; 259 | } 260 | { 261 | name = "callsites___callsites_3.1.0.tgz"; 262 | path = fetchurl { 263 | name = "callsites___callsites_3.1.0.tgz"; 264 | url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; 265 | sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73"; 266 | }; 267 | } 268 | { 269 | name = "camelcase_keys___camelcase_keys_2.1.0.tgz"; 270 | path = fetchurl { 271 | name = "camelcase_keys___camelcase_keys_2.1.0.tgz"; 272 | url = "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; 273 | sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; 274 | }; 275 | } 276 | { 277 | name = "camelcase___camelcase_2.1.1.tgz"; 278 | path = fetchurl { 279 | name = "camelcase___camelcase_2.1.1.tgz"; 280 | url = "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz"; 281 | sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"; 282 | }; 283 | } 284 | { 285 | name = "chalk___chalk_2.4.2.tgz"; 286 | path = fetchurl { 287 | name = "chalk___chalk_2.4.2.tgz"; 288 | url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 289 | sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; 290 | }; 291 | } 292 | { 293 | name = "chalk___chalk_4.1.0.tgz"; 294 | path = fetchurl { 295 | name = "chalk___chalk_4.1.0.tgz"; 296 | url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz"; 297 | sha1 = "4e14870a618d9e2edd97dd8345fd9d9dc315646a"; 298 | }; 299 | } 300 | { 301 | name = "chardet___chardet_0.7.0.tgz"; 302 | path = fetchurl { 303 | name = "chardet___chardet_0.7.0.tgz"; 304 | url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; 305 | sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; 306 | }; 307 | } 308 | { 309 | name = "chokidar___chokidar_3.4.3.tgz"; 310 | path = fetchurl { 311 | name = "chokidar___chokidar_3.4.3.tgz"; 312 | url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz"; 313 | sha1 = "c1df38231448e45ca4ac588e6c79573ba6a57d5b"; 314 | }; 315 | } 316 | { 317 | name = "cli_cursor___cli_cursor_3.1.0.tgz"; 318 | path = fetchurl { 319 | name = "cli_cursor___cli_cursor_3.1.0.tgz"; 320 | url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz"; 321 | sha1 = "264305a7ae490d1d03bf0c9ba7c925d1753af307"; 322 | }; 323 | } 324 | { 325 | name = "cli_width___cli_width_3.0.0.tgz"; 326 | path = fetchurl { 327 | name = "cli_width___cli_width_3.0.0.tgz"; 328 | url = "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz"; 329 | sha1 = "a2f48437a2caa9a22436e794bf071ec9e61cedf6"; 330 | }; 331 | } 332 | { 333 | name = "color_convert___color_convert_1.9.3.tgz"; 334 | path = fetchurl { 335 | name = "color_convert___color_convert_1.9.3.tgz"; 336 | url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; 337 | sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; 338 | }; 339 | } 340 | { 341 | name = "color_convert___color_convert_2.0.1.tgz"; 342 | path = fetchurl { 343 | name = "color_convert___color_convert_2.0.1.tgz"; 344 | url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz"; 345 | sha1 = "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"; 346 | }; 347 | } 348 | { 349 | name = "color_name___color_name_1.1.3.tgz"; 350 | path = fetchurl { 351 | name = "color_name___color_name_1.1.3.tgz"; 352 | url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; 353 | sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 354 | }; 355 | } 356 | { 357 | name = "color_name___color_name_1.1.4.tgz"; 358 | path = fetchurl { 359 | name = "color_name___color_name_1.1.4.tgz"; 360 | url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; 361 | sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2"; 362 | }; 363 | } 364 | { 365 | name = "concat_map___concat_map_0.0.1.tgz"; 366 | path = fetchurl { 367 | name = "concat_map___concat_map_0.0.1.tgz"; 368 | url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; 369 | sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 370 | }; 371 | } 372 | { 373 | name = "cross_spawn___cross_spawn_6.0.5.tgz"; 374 | path = fetchurl { 375 | name = "cross_spawn___cross_spawn_6.0.5.tgz"; 376 | url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; 377 | sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; 378 | }; 379 | } 380 | { 381 | name = "currently_unhandled___currently_unhandled_0.4.1.tgz"; 382 | path = fetchurl { 383 | name = "currently_unhandled___currently_unhandled_0.4.1.tgz"; 384 | url = "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz"; 385 | sha1 = "988df33feab191ef799a61369dd76c17adf957ea"; 386 | }; 387 | } 388 | { 389 | name = "dateformat___dateformat_1.0.12.tgz"; 390 | path = fetchurl { 391 | name = "dateformat___dateformat_1.0.12.tgz"; 392 | url = "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz"; 393 | sha1 = "9f124b67594c937ff706932e4a642cca8dbbfee9"; 394 | }; 395 | } 396 | { 397 | name = "debug___debug_4.3.1.tgz"; 398 | path = fetchurl { 399 | name = "debug___debug_4.3.1.tgz"; 400 | url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz"; 401 | sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"; 402 | }; 403 | } 404 | { 405 | name = "decamelize___decamelize_1.2.0.tgz"; 406 | path = fetchurl { 407 | name = "decamelize___decamelize_1.2.0.tgz"; 408 | url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz"; 409 | sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 410 | }; 411 | } 412 | { 413 | name = "deep_is___deep_is_0.1.3.tgz"; 414 | path = fetchurl { 415 | name = "deep_is___deep_is_0.1.3.tgz"; 416 | url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; 417 | sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 418 | }; 419 | } 420 | { 421 | name = "diff___diff_4.0.2.tgz"; 422 | path = fetchurl { 423 | name = "diff___diff_4.0.2.tgz"; 424 | url = "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz"; 425 | sha1 = "60f3aecb89d5fae520c11aa19efc2bb982aade7d"; 426 | }; 427 | } 428 | { 429 | name = "doctrine___doctrine_3.0.0.tgz"; 430 | path = fetchurl { 431 | name = "doctrine___doctrine_3.0.0.tgz"; 432 | url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz"; 433 | sha1 = "addebead72a6574db783639dc87a121773973961"; 434 | }; 435 | } 436 | { 437 | name = "dynamic_dedupe___dynamic_dedupe_0.3.0.tgz"; 438 | path = fetchurl { 439 | name = "dynamic_dedupe___dynamic_dedupe_0.3.0.tgz"; 440 | url = "https://registry.yarnpkg.com/dynamic-dedupe/-/dynamic-dedupe-0.3.0.tgz"; 441 | sha1 = "06e44c223f5e4e94d78ef9db23a6515ce2f962a1"; 442 | }; 443 | } 444 | { 445 | name = "emoji_regex___emoji_regex_7.0.3.tgz"; 446 | path = fetchurl { 447 | name = "emoji_regex___emoji_regex_7.0.3.tgz"; 448 | url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz"; 449 | sha1 = "933a04052860c85e83c122479c4748a8e4c72156"; 450 | }; 451 | } 452 | { 453 | name = "emoji_regex___emoji_regex_8.0.0.tgz"; 454 | path = fetchurl { 455 | name = "emoji_regex___emoji_regex_8.0.0.tgz"; 456 | url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz"; 457 | sha1 = "e818fd69ce5ccfcb404594f842963bf53164cc37"; 458 | }; 459 | } 460 | { 461 | name = "emojis_list___emojis_list_3.0.0.tgz"; 462 | path = fetchurl { 463 | name = "emojis_list___emojis_list_3.0.0.tgz"; 464 | url = "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz"; 465 | sha1 = "5570662046ad29e2e916e71aae260abdff4f6a78"; 466 | }; 467 | } 468 | { 469 | name = "error_ex___error_ex_1.3.2.tgz"; 470 | path = fetchurl { 471 | name = "error_ex___error_ex_1.3.2.tgz"; 472 | url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; 473 | sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; 474 | }; 475 | } 476 | { 477 | name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 478 | path = fetchurl { 479 | name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 480 | url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 481 | sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 482 | }; 483 | } 484 | { 485 | name = "eslint_scope___eslint_scope_5.1.1.tgz"; 486 | path = fetchurl { 487 | name = "eslint_scope___eslint_scope_5.1.1.tgz"; 488 | url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz"; 489 | sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c"; 490 | }; 491 | } 492 | { 493 | name = "eslint_utils___eslint_utils_1.4.3.tgz"; 494 | path = fetchurl { 495 | name = "eslint_utils___eslint_utils_1.4.3.tgz"; 496 | url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz"; 497 | sha1 = "74fec7c54d0776b6f67e0251040b5806564e981f"; 498 | }; 499 | } 500 | { 501 | name = "eslint_utils___eslint_utils_2.1.0.tgz"; 502 | path = fetchurl { 503 | name = "eslint_utils___eslint_utils_2.1.0.tgz"; 504 | url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz"; 505 | sha1 = "d2de5e03424e707dc10c74068ddedae708741b27"; 506 | }; 507 | } 508 | { 509 | name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; 510 | path = fetchurl { 511 | name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; 512 | url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; 513 | sha1 = "30ebd1ef7c2fdff01c3a4f151044af25fab0523e"; 514 | }; 515 | } 516 | { 517 | name = "eslint___eslint_6.8.0.tgz"; 518 | path = fetchurl { 519 | name = "eslint___eslint_6.8.0.tgz"; 520 | url = "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz"; 521 | sha1 = "62262d6729739f9275723824302fb227c8c93ffb"; 522 | }; 523 | } 524 | { 525 | name = "espree___espree_6.2.1.tgz"; 526 | path = fetchurl { 527 | name = "espree___espree_6.2.1.tgz"; 528 | url = "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz"; 529 | sha1 = "77fc72e1fd744a2052c20f38a5b575832e82734a"; 530 | }; 531 | } 532 | { 533 | name = "esprima___esprima_4.0.1.tgz"; 534 | path = fetchurl { 535 | name = "esprima___esprima_4.0.1.tgz"; 536 | url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; 537 | sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71"; 538 | }; 539 | } 540 | { 541 | name = "esquery___esquery_1.3.1.tgz"; 542 | path = fetchurl { 543 | name = "esquery___esquery_1.3.1.tgz"; 544 | url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz"; 545 | sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57"; 546 | }; 547 | } 548 | { 549 | name = "esrecurse___esrecurse_4.3.0.tgz"; 550 | path = fetchurl { 551 | name = "esrecurse___esrecurse_4.3.0.tgz"; 552 | url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz"; 553 | sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921"; 554 | }; 555 | } 556 | { 557 | name = "estraverse___estraverse_4.3.0.tgz"; 558 | path = fetchurl { 559 | name = "estraverse___estraverse_4.3.0.tgz"; 560 | url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 561 | sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d"; 562 | }; 563 | } 564 | { 565 | name = "estraverse___estraverse_5.2.0.tgz"; 566 | path = fetchurl { 567 | name = "estraverse___estraverse_5.2.0.tgz"; 568 | url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz"; 569 | sha1 = "307df42547e6cc7324d3cf03c155d5cdb8c53880"; 570 | }; 571 | } 572 | { 573 | name = "esutils___esutils_2.0.3.tgz"; 574 | path = fetchurl { 575 | name = "esutils___esutils_2.0.3.tgz"; 576 | url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; 577 | sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64"; 578 | }; 579 | } 580 | { 581 | name = "eventemitter3___eventemitter3_4.0.7.tgz"; 582 | path = fetchurl { 583 | name = "eventemitter3___eventemitter3_4.0.7.tgz"; 584 | url = "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz"; 585 | sha1 = "2de9b68f6528d5644ef5c59526a1b4a07306169f"; 586 | }; 587 | } 588 | { 589 | name = "exports_loader___exports_loader_1.1.1.tgz"; 590 | path = fetchurl { 591 | name = "exports_loader___exports_loader_1.1.1.tgz"; 592 | url = "https://registry.yarnpkg.com/exports-loader/-/exports-loader-1.1.1.tgz"; 593 | sha1 = "88c9a6877ee6a5519d7c41a016bdd99148421e69"; 594 | }; 595 | } 596 | { 597 | name = "external_editor___external_editor_3.1.0.tgz"; 598 | path = fetchurl { 599 | name = "external_editor___external_editor_3.1.0.tgz"; 600 | url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz"; 601 | sha1 = "cb03f740befae03ea4d283caed2741a83f335495"; 602 | }; 603 | } 604 | { 605 | name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz"; 606 | path = fetchurl { 607 | name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz"; 608 | url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; 609 | sha1 = "3a7d56b559d6cbc3eb512325244e619a65c6c525"; 610 | }; 611 | } 612 | { 613 | name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 614 | path = fetchurl { 615 | name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 616 | url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 617 | sha1 = "874bf69c6f404c2b5d99c481341399fd55892633"; 618 | }; 619 | } 620 | { 621 | name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 622 | path = fetchurl { 623 | name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 624 | url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 625 | sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 626 | }; 627 | } 628 | { 629 | name = "figures___figures_3.2.0.tgz"; 630 | path = fetchurl { 631 | name = "figures___figures_3.2.0.tgz"; 632 | url = "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz"; 633 | sha1 = "625c18bd293c604dc4a8ddb2febf0c88341746af"; 634 | }; 635 | } 636 | { 637 | name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 638 | path = fetchurl { 639 | name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 640 | url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 641 | sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; 642 | }; 643 | } 644 | { 645 | name = "fill_range___fill_range_7.0.1.tgz"; 646 | path = fetchurl { 647 | name = "fill_range___fill_range_7.0.1.tgz"; 648 | url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz"; 649 | sha1 = "1919a6a7c75fe38b2c7c77e5198535da9acdda40"; 650 | }; 651 | } 652 | { 653 | name = "find_up___find_up_1.1.2.tgz"; 654 | path = fetchurl { 655 | name = "find_up___find_up_1.1.2.tgz"; 656 | url = "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz"; 657 | sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; 658 | }; 659 | } 660 | { 661 | name = "flat_cache___flat_cache_2.0.1.tgz"; 662 | path = fetchurl { 663 | name = "flat_cache___flat_cache_2.0.1.tgz"; 664 | url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz"; 665 | sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0"; 666 | }; 667 | } 668 | { 669 | name = "flatted___flatted_2.0.2.tgz"; 670 | path = fetchurl { 671 | name = "flatted___flatted_2.0.2.tgz"; 672 | url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz"; 673 | sha1 = "4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"; 674 | }; 675 | } 676 | { 677 | name = "fs.realpath___fs.realpath_1.0.0.tgz"; 678 | path = fetchurl { 679 | name = "fs.realpath___fs.realpath_1.0.0.tgz"; 680 | url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; 681 | sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 682 | }; 683 | } 684 | { 685 | name = "fsevents___fsevents_2.1.3.tgz"; 686 | path = fetchurl { 687 | name = "fsevents___fsevents_2.1.3.tgz"; 688 | url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz"; 689 | sha1 = "fb738703ae8d2f9fe900c33836ddebee8b97f23e"; 690 | }; 691 | } 692 | { 693 | name = "function_bind___function_bind_1.1.1.tgz"; 694 | path = fetchurl { 695 | name = "function_bind___function_bind_1.1.1.tgz"; 696 | url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; 697 | sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; 698 | }; 699 | } 700 | { 701 | name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; 702 | path = fetchurl { 703 | name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; 704 | url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 705 | sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 706 | }; 707 | } 708 | { 709 | name = "get_stdin___get_stdin_4.0.1.tgz"; 710 | path = fetchurl { 711 | name = "get_stdin___get_stdin_4.0.1.tgz"; 712 | url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz"; 713 | sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe"; 714 | }; 715 | } 716 | { 717 | name = "glob_parent___glob_parent_5.1.1.tgz"; 718 | path = fetchurl { 719 | name = "glob_parent___glob_parent_5.1.1.tgz"; 720 | url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz"; 721 | sha1 = "b6c1ef417c4e5663ea498f1c45afac6916bbc229"; 722 | }; 723 | } 724 | { 725 | name = "glob___glob_7.1.6.tgz"; 726 | path = fetchurl { 727 | name = "glob___glob_7.1.6.tgz"; 728 | url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz"; 729 | sha1 = "141f33b81a7c2492e125594307480c46679278a6"; 730 | }; 731 | } 732 | { 733 | name = "globals___globals_12.4.0.tgz"; 734 | path = fetchurl { 735 | name = "globals___globals_12.4.0.tgz"; 736 | url = "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz"; 737 | sha1 = "a18813576a41b00a24a97e7f815918c2e19925f8"; 738 | }; 739 | } 740 | { 741 | name = "graceful_fs___graceful_fs_4.2.4.tgz"; 742 | path = fetchurl { 743 | name = "graceful_fs___graceful_fs_4.2.4.tgz"; 744 | url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz"; 745 | sha1 = "2256bde14d3632958c465ebc96dc467ca07a29fb"; 746 | }; 747 | } 748 | { 749 | name = "has_flag___has_flag_3.0.0.tgz"; 750 | path = fetchurl { 751 | name = "has_flag___has_flag_3.0.0.tgz"; 752 | url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; 753 | sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 754 | }; 755 | } 756 | { 757 | name = "has_flag___has_flag_4.0.0.tgz"; 758 | path = fetchurl { 759 | name = "has_flag___has_flag_4.0.0.tgz"; 760 | url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz"; 761 | sha1 = "944771fd9c81c81265c4d6941860da06bb59479b"; 762 | }; 763 | } 764 | { 765 | name = "has___has_1.0.3.tgz"; 766 | path = fetchurl { 767 | name = "has___has_1.0.3.tgz"; 768 | url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; 769 | sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; 770 | }; 771 | } 772 | { 773 | name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 774 | path = fetchurl { 775 | name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 776 | url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz"; 777 | sha1 = "7539bd4bc1e0e0a895815a2e0262420b12858488"; 778 | }; 779 | } 780 | { 781 | name = "iconv_lite___iconv_lite_0.4.24.tgz"; 782 | path = fetchurl { 783 | name = "iconv_lite___iconv_lite_0.4.24.tgz"; 784 | url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; 785 | sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b"; 786 | }; 787 | } 788 | { 789 | name = "ignore___ignore_4.0.6.tgz"; 790 | path = fetchurl { 791 | name = "ignore___ignore_4.0.6.tgz"; 792 | url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz"; 793 | sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc"; 794 | }; 795 | } 796 | { 797 | name = "import_fresh___import_fresh_3.2.2.tgz"; 798 | path = fetchurl { 799 | name = "import_fresh___import_fresh_3.2.2.tgz"; 800 | url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz"; 801 | sha1 = "fc129c160c5d68235507f4331a6baad186bdbc3e"; 802 | }; 803 | } 804 | { 805 | name = "imports_loader___imports_loader_1.2.0.tgz"; 806 | path = fetchurl { 807 | name = "imports_loader___imports_loader_1.2.0.tgz"; 808 | url = "https://registry.yarnpkg.com/imports-loader/-/imports-loader-1.2.0.tgz"; 809 | sha1 = "b06823d0bb42e6f5ff89bc893829000eda46693f"; 810 | }; 811 | } 812 | { 813 | name = "imurmurhash___imurmurhash_0.1.4.tgz"; 814 | path = fetchurl { 815 | name = "imurmurhash___imurmurhash_0.1.4.tgz"; 816 | url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; 817 | sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 818 | }; 819 | } 820 | { 821 | name = "indent_string___indent_string_2.1.0.tgz"; 822 | path = fetchurl { 823 | name = "indent_string___indent_string_2.1.0.tgz"; 824 | url = "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz"; 825 | sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80"; 826 | }; 827 | } 828 | { 829 | name = "inflight___inflight_1.0.6.tgz"; 830 | path = fetchurl { 831 | name = "inflight___inflight_1.0.6.tgz"; 832 | url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; 833 | sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 834 | }; 835 | } 836 | { 837 | name = "inherits___inherits_2.0.4.tgz"; 838 | path = fetchurl { 839 | name = "inherits___inherits_2.0.4.tgz"; 840 | url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 841 | sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c"; 842 | }; 843 | } 844 | { 845 | name = "inherits___inherits_2.0.3.tgz"; 846 | path = fetchurl { 847 | name = "inherits___inherits_2.0.3.tgz"; 848 | url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 849 | sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 850 | }; 851 | } 852 | { 853 | name = "inquirer___inquirer_7.3.3.tgz"; 854 | path = fetchurl { 855 | name = "inquirer___inquirer_7.3.3.tgz"; 856 | url = "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz"; 857 | sha1 = "04d176b2af04afc157a83fd7c100e98ee0aad003"; 858 | }; 859 | } 860 | { 861 | name = "is_arrayish___is_arrayish_0.2.1.tgz"; 862 | path = fetchurl { 863 | name = "is_arrayish___is_arrayish_0.2.1.tgz"; 864 | url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; 865 | sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 866 | }; 867 | } 868 | { 869 | name = "is_binary_path___is_binary_path_2.1.0.tgz"; 870 | path = fetchurl { 871 | name = "is_binary_path___is_binary_path_2.1.0.tgz"; 872 | url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz"; 873 | sha1 = "ea1f7f3b80f064236e83470f86c09c254fb45b09"; 874 | }; 875 | } 876 | { 877 | name = "is_core_module___is_core_module_2.1.0.tgz"; 878 | path = fetchurl { 879 | name = "is_core_module___is_core_module_2.1.0.tgz"; 880 | url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz"; 881 | sha1 = "a4cc031d9b1aca63eecbd18a650e13cb4eeab946"; 882 | }; 883 | } 884 | { 885 | name = "is_extglob___is_extglob_2.1.1.tgz"; 886 | path = fetchurl { 887 | name = "is_extglob___is_extglob_2.1.1.tgz"; 888 | url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; 889 | sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 890 | }; 891 | } 892 | { 893 | name = "is_finite___is_finite_1.1.0.tgz"; 894 | path = fetchurl { 895 | name = "is_finite___is_finite_1.1.0.tgz"; 896 | url = "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz"; 897 | sha1 = "904135c77fb42c0641d6aa1bcdbc4daa8da082f3"; 898 | }; 899 | } 900 | { 901 | name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 902 | path = fetchurl { 903 | name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 904 | url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 905 | sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 906 | }; 907 | } 908 | { 909 | name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; 910 | path = fetchurl { 911 | name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; 912 | url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 913 | sha1 = "f116f8064fe90b3f7844a38997c0b75051269f1d"; 914 | }; 915 | } 916 | { 917 | name = "is_glob___is_glob_4.0.1.tgz"; 918 | path = fetchurl { 919 | name = "is_glob___is_glob_4.0.1.tgz"; 920 | url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz"; 921 | sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"; 922 | }; 923 | } 924 | { 925 | name = "is_number___is_number_7.0.0.tgz"; 926 | path = fetchurl { 927 | name = "is_number___is_number_7.0.0.tgz"; 928 | url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz"; 929 | sha1 = "7535345b896734d5f80c4d06c50955527a14f12b"; 930 | }; 931 | } 932 | { 933 | name = "is_utf8___is_utf8_0.2.1.tgz"; 934 | path = fetchurl { 935 | name = "is_utf8___is_utf8_0.2.1.tgz"; 936 | url = "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz"; 937 | sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; 938 | }; 939 | } 940 | { 941 | name = "isexe___isexe_2.0.0.tgz"; 942 | path = fetchurl { 943 | name = "isexe___isexe_2.0.0.tgz"; 944 | url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; 945 | sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 946 | }; 947 | } 948 | { 949 | name = "jasmine_core___jasmine_core_3.6.0.tgz"; 950 | path = fetchurl { 951 | name = "jasmine_core___jasmine_core_3.6.0.tgz"; 952 | url = "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.6.0.tgz"; 953 | sha1 = "491f3bb23941799c353ceb7a45b38a950ebc5a20"; 954 | }; 955 | } 956 | { 957 | name = "jasmine___jasmine_3.6.3.tgz"; 958 | path = fetchurl { 959 | name = "jasmine___jasmine_3.6.3.tgz"; 960 | url = "https://registry.yarnpkg.com/jasmine/-/jasmine-3.6.3.tgz"; 961 | sha1 = "520cd71f76bd8251e9f566b622e13602e9ddcf26"; 962 | }; 963 | } 964 | { 965 | name = "js_tokens___js_tokens_4.0.0.tgz"; 966 | path = fetchurl { 967 | name = "js_tokens___js_tokens_4.0.0.tgz"; 968 | url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; 969 | sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; 970 | }; 971 | } 972 | { 973 | name = "js_yaml___js_yaml_3.14.0.tgz"; 974 | path = fetchurl { 975 | name = "js_yaml___js_yaml_3.14.0.tgz"; 976 | url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz"; 977 | sha1 = "a7a34170f26a21bb162424d8adacb4113a69e482"; 978 | }; 979 | } 980 | { 981 | name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 982 | path = fetchurl { 983 | name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 984 | url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 985 | sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; 986 | }; 987 | } 988 | { 989 | name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; 990 | path = fetchurl { 991 | name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; 992 | url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 993 | sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; 994 | }; 995 | } 996 | { 997 | name = "json5___json5_2.1.3.tgz"; 998 | path = fetchurl { 999 | name = "json5___json5_2.1.3.tgz"; 1000 | url = "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz"; 1001 | sha1 = "c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"; 1002 | }; 1003 | } 1004 | { 1005 | name = "levn___levn_0.3.0.tgz"; 1006 | path = fetchurl { 1007 | name = "levn___levn_0.3.0.tgz"; 1008 | url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 1009 | sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; 1010 | }; 1011 | } 1012 | { 1013 | name = "load_json_file___load_json_file_1.1.0.tgz"; 1014 | path = fetchurl { 1015 | name = "load_json_file___load_json_file_1.1.0.tgz"; 1016 | url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz"; 1017 | sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; 1018 | }; 1019 | } 1020 | { 1021 | name = "loader_utils___loader_utils_2.0.0.tgz"; 1022 | path = fetchurl { 1023 | name = "loader_utils___loader_utils_2.0.0.tgz"; 1024 | url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz"; 1025 | sha1 = "e4cace5b816d425a166b5f097e10cd12b36064b0"; 1026 | }; 1027 | } 1028 | { 1029 | name = "lodash___lodash_4.17.20.tgz"; 1030 | path = fetchurl { 1031 | name = "lodash___lodash_4.17.20.tgz"; 1032 | url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz"; 1033 | sha1 = "b44a9b6297bcb698f1c51a3545a2b3b368d59c52"; 1034 | }; 1035 | } 1036 | { 1037 | name = "loud_rejection___loud_rejection_1.6.0.tgz"; 1038 | path = fetchurl { 1039 | name = "loud_rejection___loud_rejection_1.6.0.tgz"; 1040 | url = "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz"; 1041 | sha1 = "5b46f80147edee578870f086d04821cf998e551f"; 1042 | }; 1043 | } 1044 | { 1045 | name = "make_error___make_error_1.3.6.tgz"; 1046 | path = fetchurl { 1047 | name = "make_error___make_error_1.3.6.tgz"; 1048 | url = "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz"; 1049 | sha1 = "2eb2e37ea9b67c4891f684a1394799af484cf7a2"; 1050 | }; 1051 | } 1052 | { 1053 | name = "map_obj___map_obj_1.0.1.tgz"; 1054 | path = fetchurl { 1055 | name = "map_obj___map_obj_1.0.1.tgz"; 1056 | url = "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz"; 1057 | sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; 1058 | }; 1059 | } 1060 | { 1061 | name = "meow___meow_3.7.0.tgz"; 1062 | path = fetchurl { 1063 | name = "meow___meow_3.7.0.tgz"; 1064 | url = "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz"; 1065 | sha1 = "72cb668b425228290abbfa856892587308a801fb"; 1066 | }; 1067 | } 1068 | { 1069 | name = "mimic_fn___mimic_fn_2.1.0.tgz"; 1070 | path = fetchurl { 1071 | name = "mimic_fn___mimic_fn_2.1.0.tgz"; 1072 | url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; 1073 | sha1 = "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"; 1074 | }; 1075 | } 1076 | { 1077 | name = "minimatch___minimatch_3.0.4.tgz"; 1078 | path = fetchurl { 1079 | name = "minimatch___minimatch_3.0.4.tgz"; 1080 | url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; 1081 | sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; 1082 | }; 1083 | } 1084 | { 1085 | name = "minimist___minimist_1.2.5.tgz"; 1086 | path = fetchurl { 1087 | name = "minimist___minimist_1.2.5.tgz"; 1088 | url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 1089 | sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602"; 1090 | }; 1091 | } 1092 | { 1093 | name = "mkdirp___mkdirp_0.5.5.tgz"; 1094 | path = fetchurl { 1095 | name = "mkdirp___mkdirp_0.5.5.tgz"; 1096 | url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 1097 | sha1 = "d91cefd62d1436ca0f41620e251288d420099def"; 1098 | }; 1099 | } 1100 | { 1101 | name = "mkdirp___mkdirp_1.0.4.tgz"; 1102 | path = fetchurl { 1103 | name = "mkdirp___mkdirp_1.0.4.tgz"; 1104 | url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz"; 1105 | sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"; 1106 | }; 1107 | } 1108 | { 1109 | name = "ms___ms_2.1.2.tgz"; 1110 | path = fetchurl { 1111 | name = "ms___ms_2.1.2.tgz"; 1112 | url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz"; 1113 | sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009"; 1114 | }; 1115 | } 1116 | { 1117 | name = "mute_stream___mute_stream_0.0.8.tgz"; 1118 | path = fetchurl { 1119 | name = "mute_stream___mute_stream_0.0.8.tgz"; 1120 | url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz"; 1121 | sha1 = "1630c42b2251ff81e2a283de96a5497ea92e5e0d"; 1122 | }; 1123 | } 1124 | { 1125 | name = "natural_compare___natural_compare_1.4.0.tgz"; 1126 | path = fetchurl { 1127 | name = "natural_compare___natural_compare_1.4.0.tgz"; 1128 | url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; 1129 | sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 1130 | }; 1131 | } 1132 | { 1133 | name = "nice_try___nice_try_1.0.5.tgz"; 1134 | path = fetchurl { 1135 | name = "nice_try___nice_try_1.0.5.tgz"; 1136 | url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; 1137 | sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366"; 1138 | }; 1139 | } 1140 | { 1141 | name = "normalize_package_data___normalize_package_data_2.5.0.tgz"; 1142 | path = fetchurl { 1143 | name = "normalize_package_data___normalize_package_data_2.5.0.tgz"; 1144 | url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; 1145 | sha1 = "e66db1838b200c1dfc233225d12cb36520e234a8"; 1146 | }; 1147 | } 1148 | { 1149 | name = "normalize_path___normalize_path_3.0.0.tgz"; 1150 | path = fetchurl { 1151 | name = "normalize_path___normalize_path_3.0.0.tgz"; 1152 | url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz"; 1153 | sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65"; 1154 | }; 1155 | } 1156 | { 1157 | name = "object_assign___object_assign_4.1.1.tgz"; 1158 | path = fetchurl { 1159 | name = "object_assign___object_assign_4.1.1.tgz"; 1160 | url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; 1161 | sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 1162 | }; 1163 | } 1164 | { 1165 | name = "once___once_1.4.0.tgz"; 1166 | path = fetchurl { 1167 | name = "once___once_1.4.0.tgz"; 1168 | url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; 1169 | sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 1170 | }; 1171 | } 1172 | { 1173 | name = "onetime___onetime_5.1.2.tgz"; 1174 | path = fetchurl { 1175 | name = "onetime___onetime_5.1.2.tgz"; 1176 | url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz"; 1177 | sha1 = "d0e96ebb56b07476df1dd9c4806e5237985ca45e"; 1178 | }; 1179 | } 1180 | { 1181 | name = "optionator___optionator_0.8.3.tgz"; 1182 | path = fetchurl { 1183 | name = "optionator___optionator_0.8.3.tgz"; 1184 | url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 1185 | sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495"; 1186 | }; 1187 | } 1188 | { 1189 | name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 1190 | path = fetchurl { 1191 | name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 1192 | url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 1193 | sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 1194 | }; 1195 | } 1196 | { 1197 | name = "parent_module___parent_module_1.0.1.tgz"; 1198 | path = fetchurl { 1199 | name = "parent_module___parent_module_1.0.1.tgz"; 1200 | url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; 1201 | sha1 = "691d2709e78c79fae3a156622452d00762caaaa2"; 1202 | }; 1203 | } 1204 | { 1205 | name = "parse_json___parse_json_2.2.0.tgz"; 1206 | path = fetchurl { 1207 | name = "parse_json___parse_json_2.2.0.tgz"; 1208 | url = "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz"; 1209 | sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; 1210 | }; 1211 | } 1212 | { 1213 | name = "path_exists___path_exists_2.1.0.tgz"; 1214 | path = fetchurl { 1215 | name = "path_exists___path_exists_2.1.0.tgz"; 1216 | url = "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz"; 1217 | sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; 1218 | }; 1219 | } 1220 | { 1221 | name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 1222 | path = fetchurl { 1223 | name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 1224 | url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 1225 | sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 1226 | }; 1227 | } 1228 | { 1229 | name = "path_key___path_key_2.0.1.tgz"; 1230 | path = fetchurl { 1231 | name = "path_key___path_key_2.0.1.tgz"; 1232 | url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz"; 1233 | sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; 1234 | }; 1235 | } 1236 | { 1237 | name = "path_parse___path_parse_1.0.6.tgz"; 1238 | path = fetchurl { 1239 | name = "path_parse___path_parse_1.0.6.tgz"; 1240 | url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; 1241 | sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c"; 1242 | }; 1243 | } 1244 | { 1245 | name = "path_type___path_type_1.1.0.tgz"; 1246 | path = fetchurl { 1247 | name = "path_type___path_type_1.1.0.tgz"; 1248 | url = "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz"; 1249 | sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; 1250 | }; 1251 | } 1252 | { 1253 | name = "path___path_0.12.7.tgz"; 1254 | path = fetchurl { 1255 | name = "path___path_0.12.7.tgz"; 1256 | url = "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz"; 1257 | sha1 = "d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f"; 1258 | }; 1259 | } 1260 | { 1261 | name = "phaser___phaser_3.24.1.tgz"; 1262 | path = fetchurl { 1263 | name = "phaser___phaser_3.24.1.tgz"; 1264 | url = "https://registry.yarnpkg.com/phaser/-/phaser-3.24.1.tgz"; 1265 | sha1 = "376e0c965d2a35af37c06ee78627dafbde5be017"; 1266 | }; 1267 | } 1268 | { 1269 | name = "picomatch___picomatch_2.2.2.tgz"; 1270 | path = fetchurl { 1271 | name = "picomatch___picomatch_2.2.2.tgz"; 1272 | url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz"; 1273 | sha1 = "21f333e9b6b8eaff02468f5146ea406d345f4dad"; 1274 | }; 1275 | } 1276 | { 1277 | name = "pify___pify_2.3.0.tgz"; 1278 | path = fetchurl { 1279 | name = "pify___pify_2.3.0.tgz"; 1280 | url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz"; 1281 | sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; 1282 | }; 1283 | } 1284 | { 1285 | name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 1286 | path = fetchurl { 1287 | name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 1288 | url = "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; 1289 | sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 1290 | }; 1291 | } 1292 | { 1293 | name = "pinkie___pinkie_2.0.4.tgz"; 1294 | path = fetchurl { 1295 | name = "pinkie___pinkie_2.0.4.tgz"; 1296 | url = "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz"; 1297 | sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; 1298 | }; 1299 | } 1300 | { 1301 | name = "prelude_ls___prelude_ls_1.1.2.tgz"; 1302 | path = fetchurl { 1303 | name = "prelude_ls___prelude_ls_1.1.2.tgz"; 1304 | url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 1305 | sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; 1306 | }; 1307 | } 1308 | { 1309 | name = "process___process_0.11.10.tgz"; 1310 | path = fetchurl { 1311 | name = "process___process_0.11.10.tgz"; 1312 | url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz"; 1313 | sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; 1314 | }; 1315 | } 1316 | { 1317 | name = "progress___progress_2.0.3.tgz"; 1318 | path = fetchurl { 1319 | name = "progress___progress_2.0.3.tgz"; 1320 | url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz"; 1321 | sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"; 1322 | }; 1323 | } 1324 | { 1325 | name = "punycode___punycode_2.1.1.tgz"; 1326 | path = fetchurl { 1327 | name = "punycode___punycode_2.1.1.tgz"; 1328 | url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; 1329 | sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; 1330 | }; 1331 | } 1332 | { 1333 | name = "read_pkg_up___read_pkg_up_1.0.1.tgz"; 1334 | path = fetchurl { 1335 | name = "read_pkg_up___read_pkg_up_1.0.1.tgz"; 1336 | url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz"; 1337 | sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02"; 1338 | }; 1339 | } 1340 | { 1341 | name = "read_pkg___read_pkg_1.1.0.tgz"; 1342 | path = fetchurl { 1343 | name = "read_pkg___read_pkg_1.1.0.tgz"; 1344 | url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz"; 1345 | sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"; 1346 | }; 1347 | } 1348 | { 1349 | name = "readdirp___readdirp_3.5.0.tgz"; 1350 | path = fetchurl { 1351 | name = "readdirp___readdirp_3.5.0.tgz"; 1352 | url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz"; 1353 | sha1 = "9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"; 1354 | }; 1355 | } 1356 | { 1357 | name = "redent___redent_1.0.0.tgz"; 1358 | path = fetchurl { 1359 | name = "redent___redent_1.0.0.tgz"; 1360 | url = "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz"; 1361 | sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"; 1362 | }; 1363 | } 1364 | { 1365 | name = "regexpp___regexpp_2.0.1.tgz"; 1366 | path = fetchurl { 1367 | name = "regexpp___regexpp_2.0.1.tgz"; 1368 | url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; 1369 | sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; 1370 | }; 1371 | } 1372 | { 1373 | name = "regexpp___regexpp_3.1.0.tgz"; 1374 | path = fetchurl { 1375 | name = "regexpp___regexpp_3.1.0.tgz"; 1376 | url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz"; 1377 | sha1 = "206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"; 1378 | }; 1379 | } 1380 | { 1381 | name = "repeating___repeating_2.0.1.tgz"; 1382 | path = fetchurl { 1383 | name = "repeating___repeating_2.0.1.tgz"; 1384 | url = "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz"; 1385 | sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; 1386 | }; 1387 | } 1388 | { 1389 | name = "resolve_from___resolve_from_4.0.0.tgz"; 1390 | path = fetchurl { 1391 | name = "resolve_from___resolve_from_4.0.0.tgz"; 1392 | url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; 1393 | sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6"; 1394 | }; 1395 | } 1396 | { 1397 | name = "resolve___resolve_1.19.0.tgz"; 1398 | path = fetchurl { 1399 | name = "resolve___resolve_1.19.0.tgz"; 1400 | url = "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz"; 1401 | sha1 = "1af5bf630409734a067cae29318aac7fa29a267c"; 1402 | }; 1403 | } 1404 | { 1405 | name = "restore_cursor___restore_cursor_3.1.0.tgz"; 1406 | path = fetchurl { 1407 | name = "restore_cursor___restore_cursor_3.1.0.tgz"; 1408 | url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz"; 1409 | sha1 = "39f67c54b3a7a58cea5236d95cf0034239631f7e"; 1410 | }; 1411 | } 1412 | { 1413 | name = "rimraf___rimraf_2.6.3.tgz"; 1414 | path = fetchurl { 1415 | name = "rimraf___rimraf_2.6.3.tgz"; 1416 | url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz"; 1417 | sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"; 1418 | }; 1419 | } 1420 | { 1421 | name = "rimraf___rimraf_2.7.1.tgz"; 1422 | path = fetchurl { 1423 | name = "rimraf___rimraf_2.7.1.tgz"; 1424 | url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz"; 1425 | sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec"; 1426 | }; 1427 | } 1428 | { 1429 | name = "run_async___run_async_2.4.1.tgz"; 1430 | path = fetchurl { 1431 | name = "run_async___run_async_2.4.1.tgz"; 1432 | url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz"; 1433 | sha1 = "8440eccf99ea3e70bd409d49aab88e10c189a455"; 1434 | }; 1435 | } 1436 | { 1437 | name = "rxjs___rxjs_6.6.3.tgz"; 1438 | path = fetchurl { 1439 | name = "rxjs___rxjs_6.6.3.tgz"; 1440 | url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz"; 1441 | sha1 = "8ca84635c4daa900c0d3967a6ee7ac60271ee552"; 1442 | }; 1443 | } 1444 | { 1445 | name = "safer_buffer___safer_buffer_2.1.2.tgz"; 1446 | path = fetchurl { 1447 | name = "safer_buffer___safer_buffer_2.1.2.tgz"; 1448 | url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; 1449 | sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; 1450 | }; 1451 | } 1452 | { 1453 | name = "schema_utils___schema_utils_3.0.0.tgz"; 1454 | path = fetchurl { 1455 | name = "schema_utils___schema_utils_3.0.0.tgz"; 1456 | url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz"; 1457 | sha1 = "67502f6aa2b66a2d4032b4279a2944978a0913ef"; 1458 | }; 1459 | } 1460 | { 1461 | name = "semver___semver_5.7.1.tgz"; 1462 | path = fetchurl { 1463 | name = "semver___semver_5.7.1.tgz"; 1464 | url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz"; 1465 | sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7"; 1466 | }; 1467 | } 1468 | { 1469 | name = "semver___semver_6.3.0.tgz"; 1470 | path = fetchurl { 1471 | name = "semver___semver_6.3.0.tgz"; 1472 | url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz"; 1473 | sha1 = "ee0a64c8af5e8ceea67687b133761e1becbd1d3d"; 1474 | }; 1475 | } 1476 | { 1477 | name = "semver___semver_7.3.2.tgz"; 1478 | path = fetchurl { 1479 | name = "semver___semver_7.3.2.tgz"; 1480 | url = "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz"; 1481 | sha1 = "604962b052b81ed0786aae84389ffba70ffd3938"; 1482 | }; 1483 | } 1484 | { 1485 | name = "shebang_command___shebang_command_1.2.0.tgz"; 1486 | path = fetchurl { 1487 | name = "shebang_command___shebang_command_1.2.0.tgz"; 1488 | url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz"; 1489 | sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; 1490 | }; 1491 | } 1492 | { 1493 | name = "shebang_regex___shebang_regex_1.0.0.tgz"; 1494 | path = fetchurl { 1495 | name = "shebang_regex___shebang_regex_1.0.0.tgz"; 1496 | url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz"; 1497 | sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; 1498 | }; 1499 | } 1500 | { 1501 | name = "signal_exit___signal_exit_3.0.3.tgz"; 1502 | path = fetchurl { 1503 | name = "signal_exit___signal_exit_3.0.3.tgz"; 1504 | url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz"; 1505 | sha1 = "a1410c2edd8f077b08b4e253c8eacfcaf057461c"; 1506 | }; 1507 | } 1508 | { 1509 | name = "slice_ansi___slice_ansi_2.1.0.tgz"; 1510 | path = fetchurl { 1511 | name = "slice_ansi___slice_ansi_2.1.0.tgz"; 1512 | url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz"; 1513 | sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636"; 1514 | }; 1515 | } 1516 | { 1517 | name = "source_map_support___source_map_support_0.5.19.tgz"; 1518 | path = fetchurl { 1519 | name = "source_map_support___source_map_support_0.5.19.tgz"; 1520 | url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz"; 1521 | sha1 = "a98b62f86dcaf4f67399648c085291ab9e8fed61"; 1522 | }; 1523 | } 1524 | { 1525 | name = "source_map___source_map_0.6.1.tgz"; 1526 | path = fetchurl { 1527 | name = "source_map___source_map_0.6.1.tgz"; 1528 | url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; 1529 | sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; 1530 | }; 1531 | } 1532 | { 1533 | name = "spdx_correct___spdx_correct_3.1.1.tgz"; 1534 | path = fetchurl { 1535 | name = "spdx_correct___spdx_correct_3.1.1.tgz"; 1536 | url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz"; 1537 | sha1 = "dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"; 1538 | }; 1539 | } 1540 | { 1541 | name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz"; 1542 | path = fetchurl { 1543 | name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz"; 1544 | url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; 1545 | sha1 = "3f28ce1a77a00372683eade4a433183527a2163d"; 1546 | }; 1547 | } 1548 | { 1549 | name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz"; 1550 | path = fetchurl { 1551 | name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz"; 1552 | url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; 1553 | sha1 = "cf70f50482eefdc98e3ce0a6833e4a53ceeba679"; 1554 | }; 1555 | } 1556 | { 1557 | name = "spdx_license_ids___spdx_license_ids_3.0.6.tgz"; 1558 | path = fetchurl { 1559 | name = "spdx_license_ids___spdx_license_ids_3.0.6.tgz"; 1560 | url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz"; 1561 | sha1 = "c80757383c28abf7296744998cbc106ae8b854ce"; 1562 | }; 1563 | } 1564 | { 1565 | name = "sprintf_js___sprintf_js_1.0.3.tgz"; 1566 | path = fetchurl { 1567 | name = "sprintf_js___sprintf_js_1.0.3.tgz"; 1568 | url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; 1569 | sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 1570 | }; 1571 | } 1572 | { 1573 | name = "string_width___string_width_3.1.0.tgz"; 1574 | path = fetchurl { 1575 | name = "string_width___string_width_3.1.0.tgz"; 1576 | url = "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz"; 1577 | sha1 = "22767be21b62af1081574306f69ac51b62203961"; 1578 | }; 1579 | } 1580 | { 1581 | name = "string_width___string_width_4.2.0.tgz"; 1582 | path = fetchurl { 1583 | name = "string_width___string_width_4.2.0.tgz"; 1584 | url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz"; 1585 | sha1 = "952182c46cc7b2c313d1596e623992bd163b72b5"; 1586 | }; 1587 | } 1588 | { 1589 | name = "strip_ansi___strip_ansi_5.2.0.tgz"; 1590 | path = fetchurl { 1591 | name = "strip_ansi___strip_ansi_5.2.0.tgz"; 1592 | url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz"; 1593 | sha1 = "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"; 1594 | }; 1595 | } 1596 | { 1597 | name = "strip_ansi___strip_ansi_6.0.0.tgz"; 1598 | path = fetchurl { 1599 | name = "strip_ansi___strip_ansi_6.0.0.tgz"; 1600 | url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz"; 1601 | sha1 = "0b1571dd7669ccd4f3e06e14ef1eed26225ae532"; 1602 | }; 1603 | } 1604 | { 1605 | name = "strip_bom___strip_bom_2.0.0.tgz"; 1606 | path = fetchurl { 1607 | name = "strip_bom___strip_bom_2.0.0.tgz"; 1608 | url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz"; 1609 | sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e"; 1610 | }; 1611 | } 1612 | { 1613 | name = "strip_bom___strip_bom_3.0.0.tgz"; 1614 | path = fetchurl { 1615 | name = "strip_bom___strip_bom_3.0.0.tgz"; 1616 | url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz"; 1617 | sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 1618 | }; 1619 | } 1620 | { 1621 | name = "strip_comments___strip_comments_2.0.1.tgz"; 1622 | path = fetchurl { 1623 | name = "strip_comments___strip_comments_2.0.1.tgz"; 1624 | url = "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz"; 1625 | sha1 = "4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b"; 1626 | }; 1627 | } 1628 | { 1629 | name = "strip_indent___strip_indent_1.0.1.tgz"; 1630 | path = fetchurl { 1631 | name = "strip_indent___strip_indent_1.0.1.tgz"; 1632 | url = "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz"; 1633 | sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2"; 1634 | }; 1635 | } 1636 | { 1637 | name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; 1638 | path = fetchurl { 1639 | name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; 1640 | url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 1641 | sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 1642 | }; 1643 | } 1644 | { 1645 | name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 1646 | path = fetchurl { 1647 | name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 1648 | url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 1649 | sha1 = "31f1281b3832630434831c310c01cccda8cbe006"; 1650 | }; 1651 | } 1652 | { 1653 | name = "supports_color___supports_color_5.5.0.tgz"; 1654 | path = fetchurl { 1655 | name = "supports_color___supports_color_5.5.0.tgz"; 1656 | url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 1657 | sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; 1658 | }; 1659 | } 1660 | { 1661 | name = "supports_color___supports_color_7.2.0.tgz"; 1662 | path = fetchurl { 1663 | name = "supports_color___supports_color_7.2.0.tgz"; 1664 | url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz"; 1665 | sha1 = "1b7dcdcb32b8138801b3e478ba6a51caa89648da"; 1666 | }; 1667 | } 1668 | { 1669 | name = "table___table_5.4.6.tgz"; 1670 | path = fetchurl { 1671 | name = "table___table_5.4.6.tgz"; 1672 | url = "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz"; 1673 | sha1 = "1292d19500ce3f86053b05f0e8e7e4a3bb21079e"; 1674 | }; 1675 | } 1676 | { 1677 | name = "text_table___text_table_0.2.0.tgz"; 1678 | path = fetchurl { 1679 | name = "text_table___text_table_0.2.0.tgz"; 1680 | url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; 1681 | sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; 1682 | }; 1683 | } 1684 | { 1685 | name = "through___through_2.3.8.tgz"; 1686 | path = fetchurl { 1687 | name = "through___through_2.3.8.tgz"; 1688 | url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 1689 | sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 1690 | }; 1691 | } 1692 | { 1693 | name = "tmp___tmp_0.0.33.tgz"; 1694 | path = fetchurl { 1695 | name = "tmp___tmp_0.0.33.tgz"; 1696 | url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; 1697 | sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; 1698 | }; 1699 | } 1700 | { 1701 | name = "to_regex_range___to_regex_range_5.0.1.tgz"; 1702 | path = fetchurl { 1703 | name = "to_regex_range___to_regex_range_5.0.1.tgz"; 1704 | url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz"; 1705 | sha1 = "1648c44aae7c8d988a326018ed72f5b4dd0392e4"; 1706 | }; 1707 | } 1708 | { 1709 | name = "tree_kill___tree_kill_1.2.2.tgz"; 1710 | path = fetchurl { 1711 | name = "tree_kill___tree_kill_1.2.2.tgz"; 1712 | url = "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz"; 1713 | sha1 = "4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"; 1714 | }; 1715 | } 1716 | { 1717 | name = "trim_newlines___trim_newlines_1.0.0.tgz"; 1718 | path = fetchurl { 1719 | name = "trim_newlines___trim_newlines_1.0.0.tgz"; 1720 | url = "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz"; 1721 | sha1 = "5887966bb582a4503a41eb524f7d35011815a613"; 1722 | }; 1723 | } 1724 | { 1725 | name = "ts_node_dev___ts_node_dev_1.0.0.tgz"; 1726 | path = fetchurl { 1727 | name = "ts_node_dev___ts_node_dev_1.0.0.tgz"; 1728 | url = "https://registry.yarnpkg.com/ts-node-dev/-/ts-node-dev-1.0.0.tgz"; 1729 | sha1 = "24a2270d225c29ce269de2a31f88b1b259fc84cb"; 1730 | }; 1731 | } 1732 | { 1733 | name = "ts_node___ts_node_9.0.0.tgz"; 1734 | path = fetchurl { 1735 | name = "ts_node___ts_node_9.0.0.tgz"; 1736 | url = "https://registry.yarnpkg.com/ts-node/-/ts-node-9.0.0.tgz"; 1737 | sha1 = "e7699d2a110cc8c0d3b831715e417688683460b3"; 1738 | }; 1739 | } 1740 | { 1741 | name = "tsconfig___tsconfig_7.0.0.tgz"; 1742 | path = fetchurl { 1743 | name = "tsconfig___tsconfig_7.0.0.tgz"; 1744 | url = "https://registry.yarnpkg.com/tsconfig/-/tsconfig-7.0.0.tgz"; 1745 | sha1 = "84538875a4dc216e5c4a5432b3a4dec3d54e91b7"; 1746 | }; 1747 | } 1748 | { 1749 | name = "tslib___tslib_1.14.1.tgz"; 1750 | path = fetchurl { 1751 | name = "tslib___tslib_1.14.1.tgz"; 1752 | url = "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz"; 1753 | sha1 = "cf2d38bdc34a134bcaf1091c41f6619e2f672d00"; 1754 | }; 1755 | } 1756 | { 1757 | name = "tsutils___tsutils_3.17.1.tgz"; 1758 | path = fetchurl { 1759 | name = "tsutils___tsutils_3.17.1.tgz"; 1760 | url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz"; 1761 | sha1 = "ed719917f11ca0dee586272b2ac49e015a2dd759"; 1762 | }; 1763 | } 1764 | { 1765 | name = "type_check___type_check_0.3.2.tgz"; 1766 | path = fetchurl { 1767 | name = "type_check___type_check_0.3.2.tgz"; 1768 | url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 1769 | sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; 1770 | }; 1771 | } 1772 | { 1773 | name = "type_fest___type_fest_0.11.0.tgz"; 1774 | path = fetchurl { 1775 | name = "type_fest___type_fest_0.11.0.tgz"; 1776 | url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz"; 1777 | sha1 = "97abf0872310fed88a5c466b25681576145e33f1"; 1778 | }; 1779 | } 1780 | { 1781 | name = "type_fest___type_fest_0.8.1.tgz"; 1782 | path = fetchurl { 1783 | name = "type_fest___type_fest_0.8.1.tgz"; 1784 | url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz"; 1785 | sha1 = "09e249ebde851d3b1e48d27c105444667f17b83d"; 1786 | }; 1787 | } 1788 | { 1789 | name = "typescript___typescript_3.9.7.tgz"; 1790 | path = fetchurl { 1791 | name = "typescript___typescript_3.9.7.tgz"; 1792 | url = "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz"; 1793 | sha1 = "98d600a5ebdc38f40cb277522f12dc800e9e25fa"; 1794 | }; 1795 | } 1796 | { 1797 | name = "uri_js___uri_js_4.4.0.tgz"; 1798 | path = fetchurl { 1799 | name = "uri_js___uri_js_4.4.0.tgz"; 1800 | url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz"; 1801 | sha1 = "aa714261de793e8a82347a7bcc9ce74e86f28602"; 1802 | }; 1803 | } 1804 | { 1805 | name = "util___util_0.10.4.tgz"; 1806 | path = fetchurl { 1807 | name = "util___util_0.10.4.tgz"; 1808 | url = "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz"; 1809 | sha1 = "3aa0125bfe668a4672de58857d3ace27ecb76901"; 1810 | }; 1811 | } 1812 | { 1813 | name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 1814 | path = fetchurl { 1815 | name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 1816 | url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 1817 | sha1 = "9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"; 1818 | }; 1819 | } 1820 | { 1821 | name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; 1822 | path = fetchurl { 1823 | name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; 1824 | url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; 1825 | sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"; 1826 | }; 1827 | } 1828 | { 1829 | name = "which___which_1.3.1.tgz"; 1830 | path = fetchurl { 1831 | name = "which___which_1.3.1.tgz"; 1832 | url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz"; 1833 | sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a"; 1834 | }; 1835 | } 1836 | { 1837 | name = "word_wrap___word_wrap_1.2.3.tgz"; 1838 | path = fetchurl { 1839 | name = "word_wrap___word_wrap_1.2.3.tgz"; 1840 | url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; 1841 | sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c"; 1842 | }; 1843 | } 1844 | { 1845 | name = "wrappy___wrappy_1.0.2.tgz"; 1846 | path = fetchurl { 1847 | name = "wrappy___wrappy_1.0.2.tgz"; 1848 | url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; 1849 | sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 1850 | }; 1851 | } 1852 | { 1853 | name = "write___write_1.0.3.tgz"; 1854 | path = fetchurl { 1855 | name = "write___write_1.0.3.tgz"; 1856 | url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz"; 1857 | sha1 = "0800e14523b923a387e415123c865616aae0f5c3"; 1858 | }; 1859 | } 1860 | { 1861 | name = "xtend___xtend_4.0.2.tgz"; 1862 | path = fetchurl { 1863 | name = "xtend___xtend_4.0.2.tgz"; 1864 | url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz"; 1865 | sha1 = "bb72779f5fa465186b1f438f674fa347fdb5db54"; 1866 | }; 1867 | } 1868 | { 1869 | name = "yn___yn_3.1.1.tgz"; 1870 | path = fetchurl { 1871 | name = "yn___yn_3.1.1.tgz"; 1872 | url = "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz"; 1873 | sha1 = "1e87401a09d767c1d5eab26a6e4c185182d2eb50"; 1874 | }; 1875 | } 1876 | ]; 1877 | } 1878 | -------------------------------------------------------------------------------- /messages/default.nix: -------------------------------------------------------------------------------- 1 | { stdenv 2 | , autoPatchelfHook 3 | , fetchFromGitHub 4 | , fetchzip 5 | , gcc-unwrapped 6 | , yarn2nix-moretea 7 | , ... }: 8 | 9 | let 10 | node-protoc-precompiled = fetchzip { 11 | name = "node-protoc-precompiled"; 12 | url = "https://node-precompiled-binaries.grpc.io/grpc-tools/v1.10.0/linux-x64.tar.gz"; 13 | sha256 = "0dl1anpw3610q58mxf7r9dcp768krwvpa4053cjxn5r8b5xfbh4l"; 14 | }; 15 | 16 | node-protoc-patched = stdenv.mkDerivation { 17 | name = "node-protoc"; 18 | buildInputs = [ gcc-unwrapped.lib ]; 19 | nativeBuildInputs = [ autoPatchelfHook ]; 20 | dontAutoPatchelf = true; 21 | dontUnpack = true; 22 | # protoc: symbol lookup error: /nix/store/...-node-protoc/bin/protoc: undefined symbol: , version 23 | dontStrip = true; 24 | installPhase = '' 25 | install -D -m755 ${node-protoc-precompiled}/grpc_node_plugin $out/bin/grpc_node_plugin 26 | install -D -m755 ${node-protoc-precompiled}/protoc $out/bin/protoc 27 | 28 | autoPatchelf $out/bin/{grpc_node_plugin,protoc} 29 | : 30 | ''; 31 | }; 32 | 33 | in 34 | yarn2nix-moretea.mkYarnPackage rec { 35 | pname = "workadventuremessages"; 36 | version = "unstable"; 37 | 38 | src = fetchFromGitHub { 39 | owner = "thecodingmachine"; 40 | repo = "workadventure"; 41 | rev = "284846e8a59ec0d921189ac3a46e0eb5d1e14818"; 42 | sha256 = "1f1vi226kas7x9y8zw810q5vg1ikn4bb6ha9vnzvqk9y7jlc1n8q"; 43 | } + "/messages"; 44 | 45 | # NOTE: this is optional and generated dynamically if omitted 46 | yarnNix = ./yarn.nix; 47 | 48 | pkgConfig = { 49 | grpc-tools = { 50 | postInstall = '' 51 | install -D -m755 ${node-protoc-patched}/bin/grpc_node_plugin bin/grpc_node_plugin 52 | install -D -m755 ${node-protoc-patched}/bin/protoc bin/protoc 53 | ''; 54 | }; 55 | }; 56 | 57 | dontStrip = true; 58 | 59 | buildPhase = '' 60 | mkdir -p $out 61 | HOME=$TMPDIR yarn --offline run proto 62 | ''; 63 | 64 | distPhase = ":"; 65 | 66 | installPhase = '' 67 | cp -r deps/workadventure-messages/generated $out/ 68 | cp -r node_modules $out/ 69 | ''; 70 | } 71 | -------------------------------------------------------------------------------- /overlay.nix: -------------------------------------------------------------------------------- 1 | self: super: 2 | 3 | let 4 | inherit (self) callPackage; 5 | in { 6 | workadventure = { 7 | back = callPackage ./back {}; 8 | pusher = callPackage ./pusher {}; 9 | messages = callPackage ./messages {}; 10 | front = callPackage ./front {}; 11 | uploader = callPackage ./uploader {}; 12 | maps = callPackage ./maps {}; 13 | }; 14 | } 15 | -------------------------------------------------------------------------------- /pusher/default.nix: -------------------------------------------------------------------------------- 1 | { stdenv 2 | , autoPatchelfHook 3 | , makeWrapper 4 | 5 | , fetchzip 6 | , fetchFromGitHub 7 | 8 | , nodejs-14_x 9 | , yarn2nix-moretea 10 | 11 | , workadventure 12 | }: 13 | 14 | let 15 | node-abi = "83"; 16 | 17 | node-grpc-precompiled = fetchzip { 18 | name = "node-grpc-precompiled-node-${node-abi}"; 19 | url = "https://node-precompiled-binaries.grpc.io/grpc/v1.24.4/node-v${node-abi}-linux-x64-glibc.tar.gz"; 20 | sha256 = "119rhhk1jpi2vwyim7byq3agacasc4q25c26wyzfmy8vk2ih6ndj"; 21 | }; 22 | 23 | node-grpc-patched = stdenv.mkDerivation { 24 | name = "node-grpc"; 25 | buildInputs = [ stdenv.cc.cc ]; 26 | nativeBuildInputs = [ autoPatchelfHook ]; 27 | dontUnpack = true; 28 | # spams console 29 | dontStrip = true; 30 | installPhase = '' 31 | install -D -m755 ${node-grpc-precompiled}/grpc_node.node $out/bin/grpc_node.node 32 | ''; 33 | }; 34 | 35 | in 36 | yarn2nix-moretea.mkYarnPackage rec { 37 | pname = "workadventurepusher"; 38 | version = "unstable"; 39 | 40 | src = fetchFromGitHub 41 | { 42 | owner = "thecodingmachine"; 43 | repo = "workadventure"; 44 | rev = "284846e8a59ec0d921189ac3a46e0eb5d1e14818"; 45 | sha256 = "1f1vi226kas7x9y8zw810q5vg1ikn4bb6ha9vnzvqk9y7jlc1n8q"; 46 | } + "/pusher"; 47 | 48 | # NOTE: this is optional and generated dynamically if omitted 49 | yarnNix = ./yarn.nix; 50 | 51 | nativeBuildInputs = [ makeWrapper ]; 52 | 53 | pkgConfig = { 54 | grpc = { 55 | postInstall = '' 56 | install -D -m755 ${node-grpc-patched}/bin/grpc_node.node src/node/extension_binary/node-v${node-abi}-linux-x64-glibc/grpc_node.node 57 | ''; 58 | }; 59 | }; 60 | 61 | dontStrip = true; 62 | 63 | buildPhase = '' 64 | mkdir -p $out 65 | ln -s ${workadventure.messages.outPath}/generated deps/workadventureback/src/Messages/generated 66 | HOME=$TMPDIR yarn --offline run tsc 67 | cp -r deps/workadventureback/dist $out/dist 68 | ''; 69 | 70 | postInstall = '' 71 | # node-abi needs to the abi of the node here 72 | makeWrapper '${nodejs-14_x}/bin/node' "$out/bin/${pname}" \ 73 | --set NODE_PATH $out/libexec/workadventureback/node_modules \ 74 | --add-flags "$out/dist/server.js" 75 | ''; 76 | } 77 | -------------------------------------------------------------------------------- /uploader/default.nix: -------------------------------------------------------------------------------- 1 | { stdenv 2 | , fetchFromGitHub 3 | , makeWrapper 4 | , mkYarnPackage 5 | , nodejs-14_x 6 | , workadventure 7 | , yarn2nix-moretea 8 | , ... }: 9 | 10 | yarn2nix-moretea.mkYarnPackage rec { 11 | pname = "workadventureuploader"; 12 | version = "unstable"; 13 | 14 | src = fetchFromGitHub 15 | { 16 | owner = "thecodingmachine"; 17 | repo = "workadventure"; 18 | rev = "284846e8a59ec0d921189ac3a46e0eb5d1e14818"; 19 | sha256 = "1f1vi226kas7x9y8zw810q5vg1ikn4bb6ha9vnzvqk9y7jlc1n8q"; 20 | } + "/uploader"; 21 | 22 | # NOTE: this is optional and generated dynamically if omitted 23 | yarnNix = ./yarn.nix; 24 | 25 | nativeBuildInputs = [ makeWrapper ]; 26 | 27 | dontStrip = true; 28 | 29 | buildPhase = '' 30 | mkdir -p $out 31 | # ln -s ${workadventure.messages.outPath}/generated deps/workadventureback/src/Messages/generated 32 | HOME=$TMPDIR yarn --offline run tsc 33 | cp -r deps/workadventureback/dist $out/dist 34 | ''; 35 | 36 | postInstall = '' 37 | # node-abi needs to the abi of the node here 38 | makeWrapper '${nodejs-14_x}/bin/node' "$out/bin/${pname}" \ 39 | --set NODE_PATH $out/libexec/workadventureback/node_modules \ 40 | --add-flags "$out/dist/server.js" 41 | ''; 42 | } 43 | -------------------------------------------------------------------------------- /uploader/yarn.nix: -------------------------------------------------------------------------------- 1 | { fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec { 2 | offline_cache = linkFarm "offline" packages; 3 | packages = [ 4 | { 5 | name = "_babel_code_frame___code_frame_7.10.4.tgz"; 6 | path = fetchurl { 7 | name = "_babel_code_frame___code_frame_7.10.4.tgz"; 8 | url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz"; 9 | sha1 = "168da1a36e90da68ae8d49c0f1b48c7c6249213a"; 10 | }; 11 | } 12 | { 13 | name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz"; 14 | path = fetchurl { 15 | name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz"; 16 | url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"; 17 | sha1 = "a78c7a7251e01f616512d31b10adcf52ada5e0d2"; 18 | }; 19 | } 20 | { 21 | name = "_babel_highlight___highlight_7.10.4.tgz"; 22 | path = fetchurl { 23 | name = "_babel_highlight___highlight_7.10.4.tgz"; 24 | url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz"; 25 | sha1 = "7d1bdfd65753538fabe6c38596cdb76d9ac60143"; 26 | }; 27 | } 28 | { 29 | name = "_types_busboy___busboy_0.2.3.tgz"; 30 | path = fetchurl { 31 | name = "_types_busboy___busboy_0.2.3.tgz"; 32 | url = "https://registry.yarnpkg.com/@types/busboy/-/busboy-0.2.3.tgz"; 33 | sha1 = "6697ad29873246c530f09a3ff5a40861824230d5"; 34 | }; 35 | } 36 | { 37 | name = "_types_circular_json___circular_json_0.4.0.tgz"; 38 | path = fetchurl { 39 | name = "_types_circular_json___circular_json_0.4.0.tgz"; 40 | url = "https://registry.yarnpkg.com/@types/circular-json/-/circular-json-0.4.0.tgz"; 41 | sha1 = "7401f7e218cfe87ad4c43690da5658b9acaf51be"; 42 | }; 43 | } 44 | { 45 | name = "_types_debug___debug_4.1.5.tgz"; 46 | path = fetchurl { 47 | name = "_types_debug___debug_4.1.5.tgz"; 48 | url = "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz"; 49 | sha1 = "b14efa8852b7768d898906613c23f688713e02cd"; 50 | }; 51 | } 52 | { 53 | name = "_types_eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; 54 | path = fetchurl { 55 | name = "_types_eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; 56 | url = "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"; 57 | sha1 = "1ee30d79544ca84d68d4b3cdb0af4f205663dd2d"; 58 | }; 59 | } 60 | { 61 | name = "_types_http_status_codes___http_status_codes_1.2.0.tgz"; 62 | path = fetchurl { 63 | name = "_types_http_status_codes___http_status_codes_1.2.0.tgz"; 64 | url = "https://registry.yarnpkg.com/@types/http-status-codes/-/http-status-codes-1.2.0.tgz"; 65 | sha1 = "6e5244835aaf7164dd306f1d4d2dfdbb2159d909"; 66 | }; 67 | } 68 | { 69 | name = "_types_jasmine___jasmine_3.6.2.tgz"; 70 | path = fetchurl { 71 | name = "_types_jasmine___jasmine_3.6.2.tgz"; 72 | url = "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-3.6.2.tgz"; 73 | sha1 = "02f64450016f7de70f145d698be311136d7c6374"; 74 | }; 75 | } 76 | { 77 | name = "_types_json_schema___json_schema_7.0.6.tgz"; 78 | path = fetchurl { 79 | name = "_types_json_schema___json_schema_7.0.6.tgz"; 80 | url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz"; 81 | sha1 = "f4c7ec43e81b319a9815115031709f26987891f0"; 82 | }; 83 | } 84 | { 85 | name = "_types_jsonwebtoken___jsonwebtoken_8.5.0.tgz"; 86 | path = fetchurl { 87 | name = "_types_jsonwebtoken___jsonwebtoken_8.5.0.tgz"; 88 | url = "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-8.5.0.tgz"; 89 | sha1 = "2531d5e300803aa63279b232c014acf780c981c5"; 90 | }; 91 | } 92 | { 93 | name = "_types_mkdirp___mkdirp_1.0.1.tgz"; 94 | path = fetchurl { 95 | name = "_types_mkdirp___mkdirp_1.0.1.tgz"; 96 | url = "https://registry.yarnpkg.com/@types/mkdirp/-/mkdirp-1.0.1.tgz"; 97 | sha1 = "0930b948914a78587de35458b86c907b6e98bbf6"; 98 | }; 99 | } 100 | { 101 | name = "_types_node___node_14.14.11.tgz"; 102 | path = fetchurl { 103 | name = "_types_node___node_14.14.11.tgz"; 104 | url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.11.tgz"; 105 | sha1 = "fc25a4248a5e8d0837019b1d170146d07334abe0"; 106 | }; 107 | } 108 | { 109 | name = "_types_strip_bom___strip_bom_3.0.0.tgz"; 110 | path = fetchurl { 111 | name = "_types_strip_bom___strip_bom_3.0.0.tgz"; 112 | url = "https://registry.yarnpkg.com/@types/strip-bom/-/strip-bom-3.0.0.tgz"; 113 | sha1 = "14a8ec3956c2e81edb7520790aecf21c290aebd2"; 114 | }; 115 | } 116 | { 117 | name = "_types_strip_json_comments___strip_json_comments_0.0.30.tgz"; 118 | path = fetchurl { 119 | name = "_types_strip_json_comments___strip_json_comments_0.0.30.tgz"; 120 | url = "https://registry.yarnpkg.com/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz"; 121 | sha1 = "9aa30c04db212a9a0649d6ae6fd50accc40748a1"; 122 | }; 123 | } 124 | { 125 | name = "_types_uuid___uuid_8.3.0.tgz"; 126 | path = fetchurl { 127 | name = "_types_uuid___uuid_8.3.0.tgz"; 128 | url = "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.0.tgz"; 129 | sha1 = "215c231dff736d5ba92410e6d602050cce7e273f"; 130 | }; 131 | } 132 | { 133 | name = "_types_uuidv4___uuidv4_5.0.0.tgz"; 134 | path = fetchurl { 135 | name = "_types_uuidv4___uuidv4_5.0.0.tgz"; 136 | url = "https://registry.yarnpkg.com/@types/uuidv4/-/uuidv4-5.0.0.tgz"; 137 | sha1 = "2c94e67b0c06d5adb28fb7ced1a1b5f0866ecd50"; 138 | }; 139 | } 140 | { 141 | name = "_typescript_eslint_eslint_plugin___eslint_plugin_2.34.0.tgz"; 142 | path = fetchurl { 143 | name = "_typescript_eslint_eslint_plugin___eslint_plugin_2.34.0.tgz"; 144 | url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz"; 145 | sha1 = "6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9"; 146 | }; 147 | } 148 | { 149 | name = "_typescript_eslint_experimental_utils___experimental_utils_2.34.0.tgz"; 150 | path = fetchurl { 151 | name = "_typescript_eslint_experimental_utils___experimental_utils_2.34.0.tgz"; 152 | url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz"; 153 | sha1 = "d3524b644cdb40eebceca67f8cf3e4cc9c8f980f"; 154 | }; 155 | } 156 | { 157 | name = "_typescript_eslint_parser___parser_2.34.0.tgz"; 158 | path = fetchurl { 159 | name = "_typescript_eslint_parser___parser_2.34.0.tgz"; 160 | url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz"; 161 | sha1 = "50252630ca319685420e9a39ca05fe185a256bc8"; 162 | }; 163 | } 164 | { 165 | name = "_typescript_eslint_typescript_estree___typescript_estree_2.34.0.tgz"; 166 | path = fetchurl { 167 | name = "_typescript_eslint_typescript_estree___typescript_estree_2.34.0.tgz"; 168 | url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz"; 169 | sha1 = "14aeb6353b39ef0732cc7f1b8285294937cf37d5"; 170 | }; 171 | } 172 | { 173 | name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 174 | path = fetchurl { 175 | name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 176 | url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; 177 | sha1 = "fc8661e11b7ac1539c47dbfea2e72b3af34d267b"; 178 | }; 179 | } 180 | { 181 | name = "acorn___acorn_7.4.1.tgz"; 182 | path = fetchurl { 183 | name = "acorn___acorn_7.4.1.tgz"; 184 | url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz"; 185 | sha1 = "feaed255973d2e77555b83dbc08851a6c63520fa"; 186 | }; 187 | } 188 | { 189 | name = "ajv___ajv_6.12.6.tgz"; 190 | path = fetchurl { 191 | name = "ajv___ajv_6.12.6.tgz"; 192 | url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz"; 193 | sha1 = "baf5a62e802b07d977034586f8c3baf5adf26df4"; 194 | }; 195 | } 196 | { 197 | name = "ansi_escapes___ansi_escapes_4.3.1.tgz"; 198 | path = fetchurl { 199 | name = "ansi_escapes___ansi_escapes_4.3.1.tgz"; 200 | url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz"; 201 | sha1 = "a5c47cc43181f1f38ffd7076837700d395522a61"; 202 | }; 203 | } 204 | { 205 | name = "ansi_regex___ansi_regex_4.1.0.tgz"; 206 | path = fetchurl { 207 | name = "ansi_regex___ansi_regex_4.1.0.tgz"; 208 | url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz"; 209 | sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997"; 210 | }; 211 | } 212 | { 213 | name = "ansi_regex___ansi_regex_5.0.0.tgz"; 214 | path = fetchurl { 215 | name = "ansi_regex___ansi_regex_5.0.0.tgz"; 216 | url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz"; 217 | sha1 = "388539f55179bf39339c81af30a654d69f87cb75"; 218 | }; 219 | } 220 | { 221 | name = "ansi_styles___ansi_styles_3.2.1.tgz"; 222 | path = fetchurl { 223 | name = "ansi_styles___ansi_styles_3.2.1.tgz"; 224 | url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; 225 | sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d"; 226 | }; 227 | } 228 | { 229 | name = "ansi_styles___ansi_styles_4.3.0.tgz"; 230 | path = fetchurl { 231 | name = "ansi_styles___ansi_styles_4.3.0.tgz"; 232 | url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz"; 233 | sha1 = "edd803628ae71c04c85ae7a0906edad34b648937"; 234 | }; 235 | } 236 | { 237 | name = "anymatch___anymatch_3.1.1.tgz"; 238 | path = fetchurl { 239 | name = "anymatch___anymatch_3.1.1.tgz"; 240 | url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz"; 241 | sha1 = "c55ecf02185e2469259399310c173ce31233b142"; 242 | }; 243 | } 244 | { 245 | name = "append_field___append_field_1.0.0.tgz"; 246 | path = fetchurl { 247 | name = "append_field___append_field_1.0.0.tgz"; 248 | url = "https://registry.yarnpkg.com/append-field/-/append-field-1.0.0.tgz"; 249 | sha1 = "1e3440e915f0b1203d23748e78edd7b9b5b43e56"; 250 | }; 251 | } 252 | { 253 | name = "arg___arg_4.1.3.tgz"; 254 | path = fetchurl { 255 | name = "arg___arg_4.1.3.tgz"; 256 | url = "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz"; 257 | sha1 = "269fc7ad5b8e42cb63c896d5666017261c144089"; 258 | }; 259 | } 260 | { 261 | name = "argparse___argparse_1.0.10.tgz"; 262 | path = fetchurl { 263 | name = "argparse___argparse_1.0.10.tgz"; 264 | url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; 265 | sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; 266 | }; 267 | } 268 | { 269 | name = "array_find_index___array_find_index_1.0.2.tgz"; 270 | path = fetchurl { 271 | name = "array_find_index___array_find_index_1.0.2.tgz"; 272 | url = "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz"; 273 | sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1"; 274 | }; 275 | } 276 | { 277 | name = "astral_regex___astral_regex_1.0.0.tgz"; 278 | path = fetchurl { 279 | name = "astral_regex___astral_regex_1.0.0.tgz"; 280 | url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; 281 | sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; 282 | }; 283 | } 284 | { 285 | name = "balanced_match___balanced_match_1.0.0.tgz"; 286 | path = fetchurl { 287 | name = "balanced_match___balanced_match_1.0.0.tgz"; 288 | url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 289 | sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 290 | }; 291 | } 292 | { 293 | name = "binary_extensions___binary_extensions_2.1.0.tgz"; 294 | path = fetchurl { 295 | name = "binary_extensions___binary_extensions_2.1.0.tgz"; 296 | url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz"; 297 | sha1 = "30fa40c9e7fe07dbc895678cd287024dea241dd9"; 298 | }; 299 | } 300 | { 301 | name = "bintrees___bintrees_1.0.1.tgz"; 302 | path = fetchurl { 303 | name = "bintrees___bintrees_1.0.1.tgz"; 304 | url = "https://registry.yarnpkg.com/bintrees/-/bintrees-1.0.1.tgz"; 305 | sha1 = "0e655c9b9c2435eaab68bf4027226d2b55a34524"; 306 | }; 307 | } 308 | { 309 | name = "body_parser___body_parser_1.19.0.tgz"; 310 | path = fetchurl { 311 | name = "body_parser___body_parser_1.19.0.tgz"; 312 | url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz"; 313 | sha1 = "96b2709e57c9c4e09a6fd66a8fd979844f69f08a"; 314 | }; 315 | } 316 | { 317 | name = "brace_expansion___brace_expansion_1.1.11.tgz"; 318 | path = fetchurl { 319 | name = "brace_expansion___brace_expansion_1.1.11.tgz"; 320 | url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; 321 | sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; 322 | }; 323 | } 324 | { 325 | name = "braces___braces_3.0.2.tgz"; 326 | path = fetchurl { 327 | name = "braces___braces_3.0.2.tgz"; 328 | url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz"; 329 | sha1 = "3454e1a462ee8d599e236df336cd9ea4f8afe107"; 330 | }; 331 | } 332 | { 333 | name = "buffer_equal_constant_time___buffer_equal_constant_time_1.0.1.tgz"; 334 | path = fetchurl { 335 | name = "buffer_equal_constant_time___buffer_equal_constant_time_1.0.1.tgz"; 336 | url = "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz"; 337 | sha1 = "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819"; 338 | }; 339 | } 340 | { 341 | name = "buffer_from___buffer_from_1.1.1.tgz"; 342 | path = fetchurl { 343 | name = "buffer_from___buffer_from_1.1.1.tgz"; 344 | url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; 345 | sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; 346 | }; 347 | } 348 | { 349 | name = "busboy___busboy_0.2.14.tgz"; 350 | path = fetchurl { 351 | name = "busboy___busboy_0.2.14.tgz"; 352 | url = "https://registry.yarnpkg.com/busboy/-/busboy-0.2.14.tgz"; 353 | sha1 = "6c2a622efcf47c57bbbe1e2a9c37ad36c7925453"; 354 | }; 355 | } 356 | { 357 | name = "busboy___busboy_0.3.1.tgz"; 358 | path = fetchurl { 359 | name = "busboy___busboy_0.3.1.tgz"; 360 | url = "https://registry.yarnpkg.com/busboy/-/busboy-0.3.1.tgz"; 361 | sha1 = "170899274c5bf38aae27d5c62b71268cd585fd1b"; 362 | }; 363 | } 364 | { 365 | name = "bytes___bytes_3.1.0.tgz"; 366 | path = fetchurl { 367 | name = "bytes___bytes_3.1.0.tgz"; 368 | url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz"; 369 | sha1 = "f6cf7933a360e0588fa9fde85651cdc7f805d1f6"; 370 | }; 371 | } 372 | { 373 | name = "callsites___callsites_3.1.0.tgz"; 374 | path = fetchurl { 375 | name = "callsites___callsites_3.1.0.tgz"; 376 | url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; 377 | sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73"; 378 | }; 379 | } 380 | { 381 | name = "camelcase_keys___camelcase_keys_2.1.0.tgz"; 382 | path = fetchurl { 383 | name = "camelcase_keys___camelcase_keys_2.1.0.tgz"; 384 | url = "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; 385 | sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; 386 | }; 387 | } 388 | { 389 | name = "camelcase___camelcase_2.1.1.tgz"; 390 | path = fetchurl { 391 | name = "camelcase___camelcase_2.1.1.tgz"; 392 | url = "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz"; 393 | sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"; 394 | }; 395 | } 396 | { 397 | name = "chalk___chalk_2.4.2.tgz"; 398 | path = fetchurl { 399 | name = "chalk___chalk_2.4.2.tgz"; 400 | url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 401 | sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; 402 | }; 403 | } 404 | { 405 | name = "chalk___chalk_4.1.0.tgz"; 406 | path = fetchurl { 407 | name = "chalk___chalk_4.1.0.tgz"; 408 | url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz"; 409 | sha1 = "4e14870a618d9e2edd97dd8345fd9d9dc315646a"; 410 | }; 411 | } 412 | { 413 | name = "chardet___chardet_0.7.0.tgz"; 414 | path = fetchurl { 415 | name = "chardet___chardet_0.7.0.tgz"; 416 | url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; 417 | sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; 418 | }; 419 | } 420 | { 421 | name = "chokidar___chokidar_3.4.3.tgz"; 422 | path = fetchurl { 423 | name = "chokidar___chokidar_3.4.3.tgz"; 424 | url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz"; 425 | sha1 = "c1df38231448e45ca4ac588e6c79573ba6a57d5b"; 426 | }; 427 | } 428 | { 429 | name = "cli_cursor___cli_cursor_3.1.0.tgz"; 430 | path = fetchurl { 431 | name = "cli_cursor___cli_cursor_3.1.0.tgz"; 432 | url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz"; 433 | sha1 = "264305a7ae490d1d03bf0c9ba7c925d1753af307"; 434 | }; 435 | } 436 | { 437 | name = "cli_width___cli_width_3.0.0.tgz"; 438 | path = fetchurl { 439 | name = "cli_width___cli_width_3.0.0.tgz"; 440 | url = "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz"; 441 | sha1 = "a2f48437a2caa9a22436e794bf071ec9e61cedf6"; 442 | }; 443 | } 444 | { 445 | name = "color_convert___color_convert_1.9.3.tgz"; 446 | path = fetchurl { 447 | name = "color_convert___color_convert_1.9.3.tgz"; 448 | url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; 449 | sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; 450 | }; 451 | } 452 | { 453 | name = "color_convert___color_convert_2.0.1.tgz"; 454 | path = fetchurl { 455 | name = "color_convert___color_convert_2.0.1.tgz"; 456 | url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz"; 457 | sha1 = "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"; 458 | }; 459 | } 460 | { 461 | name = "color_name___color_name_1.1.3.tgz"; 462 | path = fetchurl { 463 | name = "color_name___color_name_1.1.3.tgz"; 464 | url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; 465 | sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 466 | }; 467 | } 468 | { 469 | name = "color_name___color_name_1.1.4.tgz"; 470 | path = fetchurl { 471 | name = "color_name___color_name_1.1.4.tgz"; 472 | url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; 473 | sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2"; 474 | }; 475 | } 476 | { 477 | name = "concat_map___concat_map_0.0.1.tgz"; 478 | path = fetchurl { 479 | name = "concat_map___concat_map_0.0.1.tgz"; 480 | url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; 481 | sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 482 | }; 483 | } 484 | { 485 | name = "concat_stream___concat_stream_1.6.2.tgz"; 486 | path = fetchurl { 487 | name = "concat_stream___concat_stream_1.6.2.tgz"; 488 | url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; 489 | sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"; 490 | }; 491 | } 492 | { 493 | name = "content_type___content_type_1.0.4.tgz"; 494 | path = fetchurl { 495 | name = "content_type___content_type_1.0.4.tgz"; 496 | url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz"; 497 | sha1 = "e138cc75e040c727b1966fe5e5f8c9aee256fe3b"; 498 | }; 499 | } 500 | { 501 | name = "core_util_is___core_util_is_1.0.2.tgz"; 502 | path = fetchurl { 503 | name = "core_util_is___core_util_is_1.0.2.tgz"; 504 | url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; 505 | sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 506 | }; 507 | } 508 | { 509 | name = "create_require___create_require_1.1.1.tgz"; 510 | path = fetchurl { 511 | name = "create_require___create_require_1.1.1.tgz"; 512 | url = "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz"; 513 | sha1 = "c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"; 514 | }; 515 | } 516 | { 517 | name = "cross_spawn___cross_spawn_6.0.5.tgz"; 518 | path = fetchurl { 519 | name = "cross_spawn___cross_spawn_6.0.5.tgz"; 520 | url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; 521 | sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; 522 | }; 523 | } 524 | { 525 | name = "currently_unhandled___currently_unhandled_0.4.1.tgz"; 526 | path = fetchurl { 527 | name = "currently_unhandled___currently_unhandled_0.4.1.tgz"; 528 | url = "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz"; 529 | sha1 = "988df33feab191ef799a61369dd76c17adf957ea"; 530 | }; 531 | } 532 | { 533 | name = "dateformat___dateformat_1.0.12.tgz"; 534 | path = fetchurl { 535 | name = "dateformat___dateformat_1.0.12.tgz"; 536 | url = "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz"; 537 | sha1 = "9f124b67594c937ff706932e4a642cca8dbbfee9"; 538 | }; 539 | } 540 | { 541 | name = "debug___debug_2.6.9.tgz"; 542 | path = fetchurl { 543 | name = "debug___debug_2.6.9.tgz"; 544 | url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; 545 | sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; 546 | }; 547 | } 548 | { 549 | name = "debug___debug_4.3.1.tgz"; 550 | path = fetchurl { 551 | name = "debug___debug_4.3.1.tgz"; 552 | url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz"; 553 | sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"; 554 | }; 555 | } 556 | { 557 | name = "decamelize___decamelize_1.2.0.tgz"; 558 | path = fetchurl { 559 | name = "decamelize___decamelize_1.2.0.tgz"; 560 | url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz"; 561 | sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 562 | }; 563 | } 564 | { 565 | name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 566 | path = fetchurl { 567 | name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 568 | url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 569 | sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; 570 | }; 571 | } 572 | { 573 | name = "deep_is___deep_is_0.1.3.tgz"; 574 | path = fetchurl { 575 | name = "deep_is___deep_is_0.1.3.tgz"; 576 | url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; 577 | sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 578 | }; 579 | } 580 | { 581 | name = "depd___depd_1.1.2.tgz"; 582 | path = fetchurl { 583 | name = "depd___depd_1.1.2.tgz"; 584 | url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz"; 585 | sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; 586 | }; 587 | } 588 | { 589 | name = "dicer___dicer_0.2.5.tgz"; 590 | path = fetchurl { 591 | name = "dicer___dicer_0.2.5.tgz"; 592 | url = "https://registry.yarnpkg.com/dicer/-/dicer-0.2.5.tgz"; 593 | sha1 = "5996c086bb33218c812c090bddc09cd12facb70f"; 594 | }; 595 | } 596 | { 597 | name = "dicer___dicer_0.3.0.tgz"; 598 | path = fetchurl { 599 | name = "dicer___dicer_0.3.0.tgz"; 600 | url = "https://registry.yarnpkg.com/dicer/-/dicer-0.3.0.tgz"; 601 | sha1 = "eacd98b3bfbf92e8ab5c2fdb71aaac44bb06b872"; 602 | }; 603 | } 604 | { 605 | name = "diff___diff_4.0.2.tgz"; 606 | path = fetchurl { 607 | name = "diff___diff_4.0.2.tgz"; 608 | url = "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz"; 609 | sha1 = "60f3aecb89d5fae520c11aa19efc2bb982aade7d"; 610 | }; 611 | } 612 | { 613 | name = "doctrine___doctrine_3.0.0.tgz"; 614 | path = fetchurl { 615 | name = "doctrine___doctrine_3.0.0.tgz"; 616 | url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz"; 617 | sha1 = "addebead72a6574db783639dc87a121773973961"; 618 | }; 619 | } 620 | { 621 | name = "dynamic_dedupe___dynamic_dedupe_0.3.0.tgz"; 622 | path = fetchurl { 623 | name = "dynamic_dedupe___dynamic_dedupe_0.3.0.tgz"; 624 | url = "https://registry.yarnpkg.com/dynamic-dedupe/-/dynamic-dedupe-0.3.0.tgz"; 625 | sha1 = "06e44c223f5e4e94d78ef9db23a6515ce2f962a1"; 626 | }; 627 | } 628 | { 629 | name = "ecdsa_sig_formatter___ecdsa_sig_formatter_1.0.11.tgz"; 630 | path = fetchurl { 631 | name = "ecdsa_sig_formatter___ecdsa_sig_formatter_1.0.11.tgz"; 632 | url = "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz"; 633 | sha1 = "ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf"; 634 | }; 635 | } 636 | { 637 | name = "ee_first___ee_first_1.1.1.tgz"; 638 | path = fetchurl { 639 | name = "ee_first___ee_first_1.1.1.tgz"; 640 | url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz"; 641 | sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 642 | }; 643 | } 644 | { 645 | name = "emoji_regex___emoji_regex_7.0.3.tgz"; 646 | path = fetchurl { 647 | name = "emoji_regex___emoji_regex_7.0.3.tgz"; 648 | url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz"; 649 | sha1 = "933a04052860c85e83c122479c4748a8e4c72156"; 650 | }; 651 | } 652 | { 653 | name = "emoji_regex___emoji_regex_8.0.0.tgz"; 654 | path = fetchurl { 655 | name = "emoji_regex___emoji_regex_8.0.0.tgz"; 656 | url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz"; 657 | sha1 = "e818fd69ce5ccfcb404594f842963bf53164cc37"; 658 | }; 659 | } 660 | { 661 | name = "error_ex___error_ex_1.3.2.tgz"; 662 | path = fetchurl { 663 | name = "error_ex___error_ex_1.3.2.tgz"; 664 | url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; 665 | sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; 666 | }; 667 | } 668 | { 669 | name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 670 | path = fetchurl { 671 | name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 672 | url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 673 | sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 674 | }; 675 | } 676 | { 677 | name = "eslint_scope___eslint_scope_5.1.1.tgz"; 678 | path = fetchurl { 679 | name = "eslint_scope___eslint_scope_5.1.1.tgz"; 680 | url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz"; 681 | sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c"; 682 | }; 683 | } 684 | { 685 | name = "eslint_utils___eslint_utils_1.4.3.tgz"; 686 | path = fetchurl { 687 | name = "eslint_utils___eslint_utils_1.4.3.tgz"; 688 | url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz"; 689 | sha1 = "74fec7c54d0776b6f67e0251040b5806564e981f"; 690 | }; 691 | } 692 | { 693 | name = "eslint_utils___eslint_utils_2.1.0.tgz"; 694 | path = fetchurl { 695 | name = "eslint_utils___eslint_utils_2.1.0.tgz"; 696 | url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz"; 697 | sha1 = "d2de5e03424e707dc10c74068ddedae708741b27"; 698 | }; 699 | } 700 | { 701 | name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; 702 | path = fetchurl { 703 | name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; 704 | url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; 705 | sha1 = "30ebd1ef7c2fdff01c3a4f151044af25fab0523e"; 706 | }; 707 | } 708 | { 709 | name = "eslint___eslint_6.8.0.tgz"; 710 | path = fetchurl { 711 | name = "eslint___eslint_6.8.0.tgz"; 712 | url = "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz"; 713 | sha1 = "62262d6729739f9275723824302fb227c8c93ffb"; 714 | }; 715 | } 716 | { 717 | name = "espree___espree_6.2.1.tgz"; 718 | path = fetchurl { 719 | name = "espree___espree_6.2.1.tgz"; 720 | url = "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz"; 721 | sha1 = "77fc72e1fd744a2052c20f38a5b575832e82734a"; 722 | }; 723 | } 724 | { 725 | name = "esprima___esprima_4.0.1.tgz"; 726 | path = fetchurl { 727 | name = "esprima___esprima_4.0.1.tgz"; 728 | url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; 729 | sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71"; 730 | }; 731 | } 732 | { 733 | name = "esquery___esquery_1.3.1.tgz"; 734 | path = fetchurl { 735 | name = "esquery___esquery_1.3.1.tgz"; 736 | url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz"; 737 | sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57"; 738 | }; 739 | } 740 | { 741 | name = "esrecurse___esrecurse_4.3.0.tgz"; 742 | path = fetchurl { 743 | name = "esrecurse___esrecurse_4.3.0.tgz"; 744 | url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz"; 745 | sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921"; 746 | }; 747 | } 748 | { 749 | name = "estraverse___estraverse_4.3.0.tgz"; 750 | path = fetchurl { 751 | name = "estraverse___estraverse_4.3.0.tgz"; 752 | url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 753 | sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d"; 754 | }; 755 | } 756 | { 757 | name = "estraverse___estraverse_5.2.0.tgz"; 758 | path = fetchurl { 759 | name = "estraverse___estraverse_5.2.0.tgz"; 760 | url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz"; 761 | sha1 = "307df42547e6cc7324d3cf03c155d5cdb8c53880"; 762 | }; 763 | } 764 | { 765 | name = "esutils___esutils_2.0.3.tgz"; 766 | path = fetchurl { 767 | name = "esutils___esutils_2.0.3.tgz"; 768 | url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; 769 | sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64"; 770 | }; 771 | } 772 | { 773 | name = "external_editor___external_editor_3.1.0.tgz"; 774 | path = fetchurl { 775 | name = "external_editor___external_editor_3.1.0.tgz"; 776 | url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz"; 777 | sha1 = "cb03f740befae03ea4d283caed2741a83f335495"; 778 | }; 779 | } 780 | { 781 | name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz"; 782 | path = fetchurl { 783 | name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz"; 784 | url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; 785 | sha1 = "3a7d56b559d6cbc3eb512325244e619a65c6c525"; 786 | }; 787 | } 788 | { 789 | name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 790 | path = fetchurl { 791 | name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 792 | url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 793 | sha1 = "874bf69c6f404c2b5d99c481341399fd55892633"; 794 | }; 795 | } 796 | { 797 | name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 798 | path = fetchurl { 799 | name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 800 | url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 801 | sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 802 | }; 803 | } 804 | { 805 | name = "figures___figures_3.2.0.tgz"; 806 | path = fetchurl { 807 | name = "figures___figures_3.2.0.tgz"; 808 | url = "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz"; 809 | sha1 = "625c18bd293c604dc4a8ddb2febf0c88341746af"; 810 | }; 811 | } 812 | { 813 | name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 814 | path = fetchurl { 815 | name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 816 | url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 817 | sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; 818 | }; 819 | } 820 | { 821 | name = "fill_range___fill_range_7.0.1.tgz"; 822 | path = fetchurl { 823 | name = "fill_range___fill_range_7.0.1.tgz"; 824 | url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz"; 825 | sha1 = "1919a6a7c75fe38b2c7c77e5198535da9acdda40"; 826 | }; 827 | } 828 | { 829 | name = "find_up___find_up_1.1.2.tgz"; 830 | path = fetchurl { 831 | name = "find_up___find_up_1.1.2.tgz"; 832 | url = "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz"; 833 | sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; 834 | }; 835 | } 836 | { 837 | name = "flat_cache___flat_cache_2.0.1.tgz"; 838 | path = fetchurl { 839 | name = "flat_cache___flat_cache_2.0.1.tgz"; 840 | url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz"; 841 | sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0"; 842 | }; 843 | } 844 | { 845 | name = "flatted___flatted_2.0.2.tgz"; 846 | path = fetchurl { 847 | name = "flatted___flatted_2.0.2.tgz"; 848 | url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz"; 849 | sha1 = "4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"; 850 | }; 851 | } 852 | { 853 | name = "fs.realpath___fs.realpath_1.0.0.tgz"; 854 | path = fetchurl { 855 | name = "fs.realpath___fs.realpath_1.0.0.tgz"; 856 | url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; 857 | sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 858 | }; 859 | } 860 | { 861 | name = "fsevents___fsevents_2.1.3.tgz"; 862 | path = fetchurl { 863 | name = "fsevents___fsevents_2.1.3.tgz"; 864 | url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz"; 865 | sha1 = "fb738703ae8d2f9fe900c33836ddebee8b97f23e"; 866 | }; 867 | } 868 | { 869 | name = "function_bind___function_bind_1.1.1.tgz"; 870 | path = fetchurl { 871 | name = "function_bind___function_bind_1.1.1.tgz"; 872 | url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; 873 | sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; 874 | }; 875 | } 876 | { 877 | name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; 878 | path = fetchurl { 879 | name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; 880 | url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 881 | sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 882 | }; 883 | } 884 | { 885 | name = "get_stdin___get_stdin_4.0.1.tgz"; 886 | path = fetchurl { 887 | name = "get_stdin___get_stdin_4.0.1.tgz"; 888 | url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz"; 889 | sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe"; 890 | }; 891 | } 892 | { 893 | name = "glob_parent___glob_parent_5.1.1.tgz"; 894 | path = fetchurl { 895 | name = "glob_parent___glob_parent_5.1.1.tgz"; 896 | url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz"; 897 | sha1 = "b6c1ef417c4e5663ea498f1c45afac6916bbc229"; 898 | }; 899 | } 900 | { 901 | name = "glob___glob_7.1.6.tgz"; 902 | path = fetchurl { 903 | name = "glob___glob_7.1.6.tgz"; 904 | url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz"; 905 | sha1 = "141f33b81a7c2492e125594307480c46679278a6"; 906 | }; 907 | } 908 | { 909 | name = "globals___globals_12.4.0.tgz"; 910 | path = fetchurl { 911 | name = "globals___globals_12.4.0.tgz"; 912 | url = "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz"; 913 | sha1 = "a18813576a41b00a24a97e7f815918c2e19925f8"; 914 | }; 915 | } 916 | { 917 | name = "graceful_fs___graceful_fs_4.2.4.tgz"; 918 | path = fetchurl { 919 | name = "graceful_fs___graceful_fs_4.2.4.tgz"; 920 | url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz"; 921 | sha1 = "2256bde14d3632958c465ebc96dc467ca07a29fb"; 922 | }; 923 | } 924 | { 925 | name = "has_flag___has_flag_3.0.0.tgz"; 926 | path = fetchurl { 927 | name = "has_flag___has_flag_3.0.0.tgz"; 928 | url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; 929 | sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 930 | }; 931 | } 932 | { 933 | name = "has_flag___has_flag_4.0.0.tgz"; 934 | path = fetchurl { 935 | name = "has_flag___has_flag_4.0.0.tgz"; 936 | url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz"; 937 | sha1 = "944771fd9c81c81265c4d6941860da06bb59479b"; 938 | }; 939 | } 940 | { 941 | name = "has___has_1.0.3.tgz"; 942 | path = fetchurl { 943 | name = "has___has_1.0.3.tgz"; 944 | url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; 945 | sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; 946 | }; 947 | } 948 | { 949 | name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 950 | path = fetchurl { 951 | name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 952 | url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz"; 953 | sha1 = "7539bd4bc1e0e0a895815a2e0262420b12858488"; 954 | }; 955 | } 956 | { 957 | name = "http_errors___http_errors_1.7.2.tgz"; 958 | path = fetchurl { 959 | name = "http_errors___http_errors_1.7.2.tgz"; 960 | url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz"; 961 | sha1 = "4f5029cf13239f31036e5b2e55292bcfbcc85c8f"; 962 | }; 963 | } 964 | { 965 | name = "http_status_codes___http_status_codes_2.1.4.tgz"; 966 | path = fetchurl { 967 | name = "http_status_codes___http_status_codes_2.1.4.tgz"; 968 | url = "https://registry.yarnpkg.com/http-status-codes/-/http-status-codes-2.1.4.tgz"; 969 | sha1 = "453d99b4bd9424254c4f6a9a3a03715923052798"; 970 | }; 971 | } 972 | { 973 | name = "http_status_codes___http_status_codes_1.4.0.tgz"; 974 | path = fetchurl { 975 | name = "http_status_codes___http_status_codes_1.4.0.tgz"; 976 | url = "https://registry.yarnpkg.com/http-status-codes/-/http-status-codes-1.4.0.tgz"; 977 | sha1 = "6e4c15d16ff3a9e2df03b89f3a55e1aae05fb477"; 978 | }; 979 | } 980 | { 981 | name = "iconv_lite___iconv_lite_0.4.24.tgz"; 982 | path = fetchurl { 983 | name = "iconv_lite___iconv_lite_0.4.24.tgz"; 984 | url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; 985 | sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b"; 986 | }; 987 | } 988 | { 989 | name = "ignore___ignore_4.0.6.tgz"; 990 | path = fetchurl { 991 | name = "ignore___ignore_4.0.6.tgz"; 992 | url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz"; 993 | sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc"; 994 | }; 995 | } 996 | { 997 | name = "import_fresh___import_fresh_3.2.2.tgz"; 998 | path = fetchurl { 999 | name = "import_fresh___import_fresh_3.2.2.tgz"; 1000 | url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz"; 1001 | sha1 = "fc129c160c5d68235507f4331a6baad186bdbc3e"; 1002 | }; 1003 | } 1004 | { 1005 | name = "imurmurhash___imurmurhash_0.1.4.tgz"; 1006 | path = fetchurl { 1007 | name = "imurmurhash___imurmurhash_0.1.4.tgz"; 1008 | url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; 1009 | sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 1010 | }; 1011 | } 1012 | { 1013 | name = "indent_string___indent_string_2.1.0.tgz"; 1014 | path = fetchurl { 1015 | name = "indent_string___indent_string_2.1.0.tgz"; 1016 | url = "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz"; 1017 | sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80"; 1018 | }; 1019 | } 1020 | { 1021 | name = "inflight___inflight_1.0.6.tgz"; 1022 | path = fetchurl { 1023 | name = "inflight___inflight_1.0.6.tgz"; 1024 | url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; 1025 | sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1026 | }; 1027 | } 1028 | { 1029 | name = "inherits___inherits_2.0.4.tgz"; 1030 | path = fetchurl { 1031 | name = "inherits___inherits_2.0.4.tgz"; 1032 | url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 1033 | sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c"; 1034 | }; 1035 | } 1036 | { 1037 | name = "inherits___inherits_2.0.3.tgz"; 1038 | path = fetchurl { 1039 | name = "inherits___inherits_2.0.3.tgz"; 1040 | url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 1041 | sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 1042 | }; 1043 | } 1044 | { 1045 | name = "inquirer___inquirer_7.3.3.tgz"; 1046 | path = fetchurl { 1047 | name = "inquirer___inquirer_7.3.3.tgz"; 1048 | url = "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz"; 1049 | sha1 = "04d176b2af04afc157a83fd7c100e98ee0aad003"; 1050 | }; 1051 | } 1052 | { 1053 | name = "is_arrayish___is_arrayish_0.2.1.tgz"; 1054 | path = fetchurl { 1055 | name = "is_arrayish___is_arrayish_0.2.1.tgz"; 1056 | url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; 1057 | sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 1058 | }; 1059 | } 1060 | { 1061 | name = "is_binary_path___is_binary_path_2.1.0.tgz"; 1062 | path = fetchurl { 1063 | name = "is_binary_path___is_binary_path_2.1.0.tgz"; 1064 | url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz"; 1065 | sha1 = "ea1f7f3b80f064236e83470f86c09c254fb45b09"; 1066 | }; 1067 | } 1068 | { 1069 | name = "is_core_module___is_core_module_2.2.0.tgz"; 1070 | path = fetchurl { 1071 | name = "is_core_module___is_core_module_2.2.0.tgz"; 1072 | url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz"; 1073 | sha1 = "97037ef3d52224d85163f5597b2b63d9afed981a"; 1074 | }; 1075 | } 1076 | { 1077 | name = "is_extglob___is_extglob_2.1.1.tgz"; 1078 | path = fetchurl { 1079 | name = "is_extglob___is_extglob_2.1.1.tgz"; 1080 | url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; 1081 | sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 1082 | }; 1083 | } 1084 | { 1085 | name = "is_finite___is_finite_1.1.0.tgz"; 1086 | path = fetchurl { 1087 | name = "is_finite___is_finite_1.1.0.tgz"; 1088 | url = "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz"; 1089 | sha1 = "904135c77fb42c0641d6aa1bcdbc4daa8da082f3"; 1090 | }; 1091 | } 1092 | { 1093 | name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 1094 | path = fetchurl { 1095 | name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 1096 | url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 1097 | sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 1098 | }; 1099 | } 1100 | { 1101 | name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; 1102 | path = fetchurl { 1103 | name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; 1104 | url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 1105 | sha1 = "f116f8064fe90b3f7844a38997c0b75051269f1d"; 1106 | }; 1107 | } 1108 | { 1109 | name = "is_glob___is_glob_4.0.1.tgz"; 1110 | path = fetchurl { 1111 | name = "is_glob___is_glob_4.0.1.tgz"; 1112 | url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz"; 1113 | sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"; 1114 | }; 1115 | } 1116 | { 1117 | name = "is_number___is_number_7.0.0.tgz"; 1118 | path = fetchurl { 1119 | name = "is_number___is_number_7.0.0.tgz"; 1120 | url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz"; 1121 | sha1 = "7535345b896734d5f80c4d06c50955527a14f12b"; 1122 | }; 1123 | } 1124 | { 1125 | name = "is_utf8___is_utf8_0.2.1.tgz"; 1126 | path = fetchurl { 1127 | name = "is_utf8___is_utf8_0.2.1.tgz"; 1128 | url = "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz"; 1129 | sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; 1130 | }; 1131 | } 1132 | { 1133 | name = "isarray___isarray_0.0.1.tgz"; 1134 | path = fetchurl { 1135 | name = "isarray___isarray_0.0.1.tgz"; 1136 | url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz"; 1137 | sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; 1138 | }; 1139 | } 1140 | { 1141 | name = "isarray___isarray_1.0.0.tgz"; 1142 | path = fetchurl { 1143 | name = "isarray___isarray_1.0.0.tgz"; 1144 | url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; 1145 | sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 1146 | }; 1147 | } 1148 | { 1149 | name = "isexe___isexe_2.0.0.tgz"; 1150 | path = fetchurl { 1151 | name = "isexe___isexe_2.0.0.tgz"; 1152 | url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; 1153 | sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 1154 | }; 1155 | } 1156 | { 1157 | name = "iterall___iterall_1.3.0.tgz"; 1158 | path = fetchurl { 1159 | name = "iterall___iterall_1.3.0.tgz"; 1160 | url = "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz"; 1161 | sha1 = "afcb08492e2915cbd8a0884eb93a8c94d0d72fea"; 1162 | }; 1163 | } 1164 | { 1165 | name = "jasmine_core___jasmine_core_3.6.0.tgz"; 1166 | path = fetchurl { 1167 | name = "jasmine_core___jasmine_core_3.6.0.tgz"; 1168 | url = "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.6.0.tgz"; 1169 | sha1 = "491f3bb23941799c353ceb7a45b38a950ebc5a20"; 1170 | }; 1171 | } 1172 | { 1173 | name = "jasmine___jasmine_3.6.3.tgz"; 1174 | path = fetchurl { 1175 | name = "jasmine___jasmine_3.6.3.tgz"; 1176 | url = "https://registry.yarnpkg.com/jasmine/-/jasmine-3.6.3.tgz"; 1177 | sha1 = "520cd71f76bd8251e9f566b622e13602e9ddcf26"; 1178 | }; 1179 | } 1180 | { 1181 | name = "js_tokens___js_tokens_4.0.0.tgz"; 1182 | path = fetchurl { 1183 | name = "js_tokens___js_tokens_4.0.0.tgz"; 1184 | url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; 1185 | sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; 1186 | }; 1187 | } 1188 | { 1189 | name = "js_yaml___js_yaml_3.14.1.tgz"; 1190 | path = fetchurl { 1191 | name = "js_yaml___js_yaml_3.14.1.tgz"; 1192 | url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz"; 1193 | sha1 = "dae812fdb3825fa306609a8717383c50c36a0537"; 1194 | }; 1195 | } 1196 | { 1197 | name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 1198 | path = fetchurl { 1199 | name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 1200 | url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 1201 | sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; 1202 | }; 1203 | } 1204 | { 1205 | name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; 1206 | path = fetchurl { 1207 | name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; 1208 | url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 1209 | sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; 1210 | }; 1211 | } 1212 | { 1213 | name = "jsonwebtoken___jsonwebtoken_8.5.1.tgz"; 1214 | path = fetchurl { 1215 | name = "jsonwebtoken___jsonwebtoken_8.5.1.tgz"; 1216 | url = "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz"; 1217 | sha1 = "00e71e0b8df54c2121a1f26137df2280673bcc0d"; 1218 | }; 1219 | } 1220 | { 1221 | name = "jwa___jwa_1.4.1.tgz"; 1222 | path = fetchurl { 1223 | name = "jwa___jwa_1.4.1.tgz"; 1224 | url = "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz"; 1225 | sha1 = "743c32985cb9e98655530d53641b66c8645b039a"; 1226 | }; 1227 | } 1228 | { 1229 | name = "jws___jws_3.2.2.tgz"; 1230 | path = fetchurl { 1231 | name = "jws___jws_3.2.2.tgz"; 1232 | url = "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz"; 1233 | sha1 = "001099f3639468c9414000e99995fa52fb478304"; 1234 | }; 1235 | } 1236 | { 1237 | name = "levn___levn_0.3.0.tgz"; 1238 | path = fetchurl { 1239 | name = "levn___levn_0.3.0.tgz"; 1240 | url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 1241 | sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; 1242 | }; 1243 | } 1244 | { 1245 | name = "load_json_file___load_json_file_1.1.0.tgz"; 1246 | path = fetchurl { 1247 | name = "load_json_file___load_json_file_1.1.0.tgz"; 1248 | url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz"; 1249 | sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; 1250 | }; 1251 | } 1252 | { 1253 | name = "lodash.includes___lodash.includes_4.3.0.tgz"; 1254 | path = fetchurl { 1255 | name = "lodash.includes___lodash.includes_4.3.0.tgz"; 1256 | url = "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz"; 1257 | sha1 = "60bb98a87cb923c68ca1e51325483314849f553f"; 1258 | }; 1259 | } 1260 | { 1261 | name = "lodash.isboolean___lodash.isboolean_3.0.3.tgz"; 1262 | path = fetchurl { 1263 | name = "lodash.isboolean___lodash.isboolean_3.0.3.tgz"; 1264 | url = "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz"; 1265 | sha1 = "6c2e171db2a257cd96802fd43b01b20d5f5870f6"; 1266 | }; 1267 | } 1268 | { 1269 | name = "lodash.isinteger___lodash.isinteger_4.0.4.tgz"; 1270 | path = fetchurl { 1271 | name = "lodash.isinteger___lodash.isinteger_4.0.4.tgz"; 1272 | url = "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz"; 1273 | sha1 = "619c0af3d03f8b04c31f5882840b77b11cd68343"; 1274 | }; 1275 | } 1276 | { 1277 | name = "lodash.isnumber___lodash.isnumber_3.0.3.tgz"; 1278 | path = fetchurl { 1279 | name = "lodash.isnumber___lodash.isnumber_3.0.3.tgz"; 1280 | url = "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz"; 1281 | sha1 = "3ce76810c5928d03352301ac287317f11c0b1ffc"; 1282 | }; 1283 | } 1284 | { 1285 | name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz"; 1286 | path = fetchurl { 1287 | name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz"; 1288 | url = "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz"; 1289 | sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb"; 1290 | }; 1291 | } 1292 | { 1293 | name = "lodash.isstring___lodash.isstring_4.0.1.tgz"; 1294 | path = fetchurl { 1295 | name = "lodash.isstring___lodash.isstring_4.0.1.tgz"; 1296 | url = "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz"; 1297 | sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; 1298 | }; 1299 | } 1300 | { 1301 | name = "lodash.once___lodash.once_4.1.1.tgz"; 1302 | path = fetchurl { 1303 | name = "lodash.once___lodash.once_4.1.1.tgz"; 1304 | url = "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz"; 1305 | sha1 = "0dd3971213c7c56df880977d504c88fb471a97ac"; 1306 | }; 1307 | } 1308 | { 1309 | name = "lodash___lodash_4.17.20.tgz"; 1310 | path = fetchurl { 1311 | name = "lodash___lodash_4.17.20.tgz"; 1312 | url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz"; 1313 | sha1 = "b44a9b6297bcb698f1c51a3545a2b3b368d59c52"; 1314 | }; 1315 | } 1316 | { 1317 | name = "loud_rejection___loud_rejection_1.6.0.tgz"; 1318 | path = fetchurl { 1319 | name = "loud_rejection___loud_rejection_1.6.0.tgz"; 1320 | url = "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz"; 1321 | sha1 = "5b46f80147edee578870f086d04821cf998e551f"; 1322 | }; 1323 | } 1324 | { 1325 | name = "lru_cache___lru_cache_6.0.0.tgz"; 1326 | path = fetchurl { 1327 | name = "lru_cache___lru_cache_6.0.0.tgz"; 1328 | url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; 1329 | sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"; 1330 | }; 1331 | } 1332 | { 1333 | name = "make_error___make_error_1.3.6.tgz"; 1334 | path = fetchurl { 1335 | name = "make_error___make_error_1.3.6.tgz"; 1336 | url = "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz"; 1337 | sha1 = "2eb2e37ea9b67c4891f684a1394799af484cf7a2"; 1338 | }; 1339 | } 1340 | { 1341 | name = "map_obj___map_obj_1.0.1.tgz"; 1342 | path = fetchurl { 1343 | name = "map_obj___map_obj_1.0.1.tgz"; 1344 | url = "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz"; 1345 | sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; 1346 | }; 1347 | } 1348 | { 1349 | name = "media_typer___media_typer_0.3.0.tgz"; 1350 | path = fetchurl { 1351 | name = "media_typer___media_typer_0.3.0.tgz"; 1352 | url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz"; 1353 | sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; 1354 | }; 1355 | } 1356 | { 1357 | name = "meow___meow_3.7.0.tgz"; 1358 | path = fetchurl { 1359 | name = "meow___meow_3.7.0.tgz"; 1360 | url = "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz"; 1361 | sha1 = "72cb668b425228290abbfa856892587308a801fb"; 1362 | }; 1363 | } 1364 | { 1365 | name = "mime_db___mime_db_1.44.0.tgz"; 1366 | path = fetchurl { 1367 | name = "mime_db___mime_db_1.44.0.tgz"; 1368 | url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz"; 1369 | sha1 = "fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"; 1370 | }; 1371 | } 1372 | { 1373 | name = "mime_types___mime_types_2.1.27.tgz"; 1374 | path = fetchurl { 1375 | name = "mime_types___mime_types_2.1.27.tgz"; 1376 | url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz"; 1377 | sha1 = "47949f98e279ea53119f5722e0f34e529bec009f"; 1378 | }; 1379 | } 1380 | { 1381 | name = "mimic_fn___mimic_fn_2.1.0.tgz"; 1382 | path = fetchurl { 1383 | name = "mimic_fn___mimic_fn_2.1.0.tgz"; 1384 | url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; 1385 | sha1 = "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"; 1386 | }; 1387 | } 1388 | { 1389 | name = "minimatch___minimatch_3.0.4.tgz"; 1390 | path = fetchurl { 1391 | name = "minimatch___minimatch_3.0.4.tgz"; 1392 | url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; 1393 | sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; 1394 | }; 1395 | } 1396 | { 1397 | name = "minimist___minimist_1.2.5.tgz"; 1398 | path = fetchurl { 1399 | name = "minimist___minimist_1.2.5.tgz"; 1400 | url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 1401 | sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602"; 1402 | }; 1403 | } 1404 | { 1405 | name = "mkdirp___mkdirp_0.5.5.tgz"; 1406 | path = fetchurl { 1407 | name = "mkdirp___mkdirp_0.5.5.tgz"; 1408 | url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 1409 | sha1 = "d91cefd62d1436ca0f41620e251288d420099def"; 1410 | }; 1411 | } 1412 | { 1413 | name = "mkdirp___mkdirp_1.0.4.tgz"; 1414 | path = fetchurl { 1415 | name = "mkdirp___mkdirp_1.0.4.tgz"; 1416 | url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz"; 1417 | sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"; 1418 | }; 1419 | } 1420 | { 1421 | name = "ms___ms_2.0.0.tgz"; 1422 | path = fetchurl { 1423 | name = "ms___ms_2.0.0.tgz"; 1424 | url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; 1425 | sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 1426 | }; 1427 | } 1428 | { 1429 | name = "ms___ms_2.1.2.tgz"; 1430 | path = fetchurl { 1431 | name = "ms___ms_2.1.2.tgz"; 1432 | url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz"; 1433 | sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009"; 1434 | }; 1435 | } 1436 | { 1437 | name = "ms___ms_2.1.3.tgz"; 1438 | path = fetchurl { 1439 | name = "ms___ms_2.1.3.tgz"; 1440 | url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz"; 1441 | sha1 = "574c8138ce1d2b5861f0b44579dbadd60c6615b2"; 1442 | }; 1443 | } 1444 | { 1445 | name = "multer___multer_1.4.2.tgz"; 1446 | path = fetchurl { 1447 | name = "multer___multer_1.4.2.tgz"; 1448 | url = "https://registry.yarnpkg.com/multer/-/multer-1.4.2.tgz"; 1449 | sha1 = "2f1f4d12dbaeeba74cb37e623f234bf4d3d2057a"; 1450 | }; 1451 | } 1452 | { 1453 | name = "mute_stream___mute_stream_0.0.8.tgz"; 1454 | path = fetchurl { 1455 | name = "mute_stream___mute_stream_0.0.8.tgz"; 1456 | url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz"; 1457 | sha1 = "1630c42b2251ff81e2a283de96a5497ea92e5e0d"; 1458 | }; 1459 | } 1460 | { 1461 | name = "natural_compare___natural_compare_1.4.0.tgz"; 1462 | path = fetchurl { 1463 | name = "natural_compare___natural_compare_1.4.0.tgz"; 1464 | url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; 1465 | sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 1466 | }; 1467 | } 1468 | { 1469 | name = "nice_try___nice_try_1.0.5.tgz"; 1470 | path = fetchurl { 1471 | name = "nice_try___nice_try_1.0.5.tgz"; 1472 | url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; 1473 | sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366"; 1474 | }; 1475 | } 1476 | { 1477 | name = "normalize_package_data___normalize_package_data_2.5.0.tgz"; 1478 | path = fetchurl { 1479 | name = "normalize_package_data___normalize_package_data_2.5.0.tgz"; 1480 | url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; 1481 | sha1 = "e66db1838b200c1dfc233225d12cb36520e234a8"; 1482 | }; 1483 | } 1484 | { 1485 | name = "normalize_path___normalize_path_3.0.0.tgz"; 1486 | path = fetchurl { 1487 | name = "normalize_path___normalize_path_3.0.0.tgz"; 1488 | url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz"; 1489 | sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65"; 1490 | }; 1491 | } 1492 | { 1493 | name = "object_assign___object_assign_4.1.1.tgz"; 1494 | path = fetchurl { 1495 | name = "object_assign___object_assign_4.1.1.tgz"; 1496 | url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; 1497 | sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 1498 | }; 1499 | } 1500 | { 1501 | name = "on_finished___on_finished_2.3.0.tgz"; 1502 | path = fetchurl { 1503 | name = "on_finished___on_finished_2.3.0.tgz"; 1504 | url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz"; 1505 | sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 1506 | }; 1507 | } 1508 | { 1509 | name = "once___once_1.4.0.tgz"; 1510 | path = fetchurl { 1511 | name = "once___once_1.4.0.tgz"; 1512 | url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; 1513 | sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 1514 | }; 1515 | } 1516 | { 1517 | name = "onetime___onetime_5.1.2.tgz"; 1518 | path = fetchurl { 1519 | name = "onetime___onetime_5.1.2.tgz"; 1520 | url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz"; 1521 | sha1 = "d0e96ebb56b07476df1dd9c4806e5237985ca45e"; 1522 | }; 1523 | } 1524 | { 1525 | name = "optionator___optionator_0.8.3.tgz"; 1526 | path = fetchurl { 1527 | name = "optionator___optionator_0.8.3.tgz"; 1528 | url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 1529 | sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495"; 1530 | }; 1531 | } 1532 | { 1533 | name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 1534 | path = fetchurl { 1535 | name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 1536 | url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 1537 | sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 1538 | }; 1539 | } 1540 | { 1541 | name = "parent_module___parent_module_1.0.1.tgz"; 1542 | path = fetchurl { 1543 | name = "parent_module___parent_module_1.0.1.tgz"; 1544 | url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; 1545 | sha1 = "691d2709e78c79fae3a156622452d00762caaaa2"; 1546 | }; 1547 | } 1548 | { 1549 | name = "parse_json___parse_json_2.2.0.tgz"; 1550 | path = fetchurl { 1551 | name = "parse_json___parse_json_2.2.0.tgz"; 1552 | url = "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz"; 1553 | sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; 1554 | }; 1555 | } 1556 | { 1557 | name = "path_exists___path_exists_2.1.0.tgz"; 1558 | path = fetchurl { 1559 | name = "path_exists___path_exists_2.1.0.tgz"; 1560 | url = "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz"; 1561 | sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; 1562 | }; 1563 | } 1564 | { 1565 | name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 1566 | path = fetchurl { 1567 | name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 1568 | url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 1569 | sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 1570 | }; 1571 | } 1572 | { 1573 | name = "path_key___path_key_2.0.1.tgz"; 1574 | path = fetchurl { 1575 | name = "path_key___path_key_2.0.1.tgz"; 1576 | url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz"; 1577 | sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; 1578 | }; 1579 | } 1580 | { 1581 | name = "path_parse___path_parse_1.0.6.tgz"; 1582 | path = fetchurl { 1583 | name = "path_parse___path_parse_1.0.6.tgz"; 1584 | url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; 1585 | sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c"; 1586 | }; 1587 | } 1588 | { 1589 | name = "path_type___path_type_1.1.0.tgz"; 1590 | path = fetchurl { 1591 | name = "path_type___path_type_1.1.0.tgz"; 1592 | url = "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz"; 1593 | sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; 1594 | }; 1595 | } 1596 | { 1597 | name = "picomatch___picomatch_2.2.2.tgz"; 1598 | path = fetchurl { 1599 | name = "picomatch___picomatch_2.2.2.tgz"; 1600 | url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz"; 1601 | sha1 = "21f333e9b6b8eaff02468f5146ea406d345f4dad"; 1602 | }; 1603 | } 1604 | { 1605 | name = "pify___pify_2.3.0.tgz"; 1606 | path = fetchurl { 1607 | name = "pify___pify_2.3.0.tgz"; 1608 | url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz"; 1609 | sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; 1610 | }; 1611 | } 1612 | { 1613 | name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 1614 | path = fetchurl { 1615 | name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 1616 | url = "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; 1617 | sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 1618 | }; 1619 | } 1620 | { 1621 | name = "pinkie___pinkie_2.0.4.tgz"; 1622 | path = fetchurl { 1623 | name = "pinkie___pinkie_2.0.4.tgz"; 1624 | url = "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz"; 1625 | sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; 1626 | }; 1627 | } 1628 | { 1629 | name = "prelude_ls___prelude_ls_1.1.2.tgz"; 1630 | path = fetchurl { 1631 | name = "prelude_ls___prelude_ls_1.1.2.tgz"; 1632 | url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 1633 | sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; 1634 | }; 1635 | } 1636 | { 1637 | name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; 1638 | path = fetchurl { 1639 | name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; 1640 | url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 1641 | sha1 = "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"; 1642 | }; 1643 | } 1644 | { 1645 | name = "progress___progress_2.0.3.tgz"; 1646 | path = fetchurl { 1647 | name = "progress___progress_2.0.3.tgz"; 1648 | url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz"; 1649 | sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"; 1650 | }; 1651 | } 1652 | { 1653 | name = "prom_client___prom_client_12.0.0.tgz"; 1654 | path = fetchurl { 1655 | name = "prom_client___prom_client_12.0.0.tgz"; 1656 | url = "https://registry.yarnpkg.com/prom-client/-/prom-client-12.0.0.tgz"; 1657 | sha1 = "9689379b19bd3f6ab88a9866124db9da3d76c6ed"; 1658 | }; 1659 | } 1660 | { 1661 | name = "punycode___punycode_2.1.1.tgz"; 1662 | path = fetchurl { 1663 | name = "punycode___punycode_2.1.1.tgz"; 1664 | url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; 1665 | sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; 1666 | }; 1667 | } 1668 | { 1669 | name = "qs___qs_6.7.0.tgz"; 1670 | path = fetchurl { 1671 | name = "qs___qs_6.7.0.tgz"; 1672 | url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz"; 1673 | sha1 = "41dc1a015e3d581f1621776be31afb2876a9b1bc"; 1674 | }; 1675 | } 1676 | { 1677 | name = "query_string___query_string_6.13.7.tgz"; 1678 | path = fetchurl { 1679 | name = "query_string___query_string_6.13.7.tgz"; 1680 | url = "https://registry.yarnpkg.com/query-string/-/query-string-6.13.7.tgz"; 1681 | sha1 = "af53802ff6ed56f3345f92d40a056f93681026ee"; 1682 | }; 1683 | } 1684 | { 1685 | name = "raw_body___raw_body_2.4.0.tgz"; 1686 | path = fetchurl { 1687 | name = "raw_body___raw_body_2.4.0.tgz"; 1688 | url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz"; 1689 | sha1 = "a1ce6fb9c9bc356ca52e89256ab59059e13d0332"; 1690 | }; 1691 | } 1692 | { 1693 | name = "read_pkg_up___read_pkg_up_1.0.1.tgz"; 1694 | path = fetchurl { 1695 | name = "read_pkg_up___read_pkg_up_1.0.1.tgz"; 1696 | url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz"; 1697 | sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02"; 1698 | }; 1699 | } 1700 | { 1701 | name = "read_pkg___read_pkg_1.1.0.tgz"; 1702 | path = fetchurl { 1703 | name = "read_pkg___read_pkg_1.1.0.tgz"; 1704 | url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz"; 1705 | sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"; 1706 | }; 1707 | } 1708 | { 1709 | name = "readable_stream___readable_stream_1.1.14.tgz"; 1710 | path = fetchurl { 1711 | name = "readable_stream___readable_stream_1.1.14.tgz"; 1712 | url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz"; 1713 | sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9"; 1714 | }; 1715 | } 1716 | { 1717 | name = "readable_stream___readable_stream_2.3.7.tgz"; 1718 | path = fetchurl { 1719 | name = "readable_stream___readable_stream_2.3.7.tgz"; 1720 | url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz"; 1721 | sha1 = "1eca1cf711aef814c04f62252a36a62f6cb23b57"; 1722 | }; 1723 | } 1724 | { 1725 | name = "readdirp___readdirp_3.5.0.tgz"; 1726 | path = fetchurl { 1727 | name = "readdirp___readdirp_3.5.0.tgz"; 1728 | url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz"; 1729 | sha1 = "9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"; 1730 | }; 1731 | } 1732 | { 1733 | name = "redent___redent_1.0.0.tgz"; 1734 | path = fetchurl { 1735 | name = "redent___redent_1.0.0.tgz"; 1736 | url = "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz"; 1737 | sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"; 1738 | }; 1739 | } 1740 | { 1741 | name = "regexpp___regexpp_2.0.1.tgz"; 1742 | path = fetchurl { 1743 | name = "regexpp___regexpp_2.0.1.tgz"; 1744 | url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; 1745 | sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; 1746 | }; 1747 | } 1748 | { 1749 | name = "regexpp___regexpp_3.1.0.tgz"; 1750 | path = fetchurl { 1751 | name = "regexpp___regexpp_3.1.0.tgz"; 1752 | url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz"; 1753 | sha1 = "206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"; 1754 | }; 1755 | } 1756 | { 1757 | name = "repeating___repeating_2.0.1.tgz"; 1758 | path = fetchurl { 1759 | name = "repeating___repeating_2.0.1.tgz"; 1760 | url = "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz"; 1761 | sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; 1762 | }; 1763 | } 1764 | { 1765 | name = "resolve_from___resolve_from_4.0.0.tgz"; 1766 | path = fetchurl { 1767 | name = "resolve_from___resolve_from_4.0.0.tgz"; 1768 | url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; 1769 | sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6"; 1770 | }; 1771 | } 1772 | { 1773 | name = "resolve___resolve_1.19.0.tgz"; 1774 | path = fetchurl { 1775 | name = "resolve___resolve_1.19.0.tgz"; 1776 | url = "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz"; 1777 | sha1 = "1af5bf630409734a067cae29318aac7fa29a267c"; 1778 | }; 1779 | } 1780 | { 1781 | name = "restore_cursor___restore_cursor_3.1.0.tgz"; 1782 | path = fetchurl { 1783 | name = "restore_cursor___restore_cursor_3.1.0.tgz"; 1784 | url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz"; 1785 | sha1 = "39f67c54b3a7a58cea5236d95cf0034239631f7e"; 1786 | }; 1787 | } 1788 | { 1789 | name = "rimraf___rimraf_2.6.3.tgz"; 1790 | path = fetchurl { 1791 | name = "rimraf___rimraf_2.6.3.tgz"; 1792 | url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz"; 1793 | sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"; 1794 | }; 1795 | } 1796 | { 1797 | name = "rimraf___rimraf_2.7.1.tgz"; 1798 | path = fetchurl { 1799 | name = "rimraf___rimraf_2.7.1.tgz"; 1800 | url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz"; 1801 | sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec"; 1802 | }; 1803 | } 1804 | { 1805 | name = "run_async___run_async_2.4.1.tgz"; 1806 | path = fetchurl { 1807 | name = "run_async___run_async_2.4.1.tgz"; 1808 | url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz"; 1809 | sha1 = "8440eccf99ea3e70bd409d49aab88e10c189a455"; 1810 | }; 1811 | } 1812 | { 1813 | name = "rxjs___rxjs_6.6.3.tgz"; 1814 | path = fetchurl { 1815 | name = "rxjs___rxjs_6.6.3.tgz"; 1816 | url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz"; 1817 | sha1 = "8ca84635c4daa900c0d3967a6ee7ac60271ee552"; 1818 | }; 1819 | } 1820 | { 1821 | name = "safe_buffer___safe_buffer_5.2.1.tgz"; 1822 | path = fetchurl { 1823 | name = "safe_buffer___safe_buffer_5.2.1.tgz"; 1824 | url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; 1825 | sha1 = "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"; 1826 | }; 1827 | } 1828 | { 1829 | name = "safe_buffer___safe_buffer_5.1.2.tgz"; 1830 | path = fetchurl { 1831 | name = "safe_buffer___safe_buffer_5.1.2.tgz"; 1832 | url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; 1833 | sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d"; 1834 | }; 1835 | } 1836 | { 1837 | name = "safer_buffer___safer_buffer_2.1.2.tgz"; 1838 | path = fetchurl { 1839 | name = "safer_buffer___safer_buffer_2.1.2.tgz"; 1840 | url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; 1841 | sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; 1842 | }; 1843 | } 1844 | { 1845 | name = "semver___semver_5.7.1.tgz"; 1846 | path = fetchurl { 1847 | name = "semver___semver_5.7.1.tgz"; 1848 | url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz"; 1849 | sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7"; 1850 | }; 1851 | } 1852 | { 1853 | name = "semver___semver_6.3.0.tgz"; 1854 | path = fetchurl { 1855 | name = "semver___semver_6.3.0.tgz"; 1856 | url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz"; 1857 | sha1 = "ee0a64c8af5e8ceea67687b133761e1becbd1d3d"; 1858 | }; 1859 | } 1860 | { 1861 | name = "semver___semver_7.3.4.tgz"; 1862 | path = fetchurl { 1863 | name = "semver___semver_7.3.4.tgz"; 1864 | url = "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz"; 1865 | sha1 = "27aaa7d2e4ca76452f98d3add093a72c943edc97"; 1866 | }; 1867 | } 1868 | { 1869 | name = "setprototypeof___setprototypeof_1.1.1.tgz"; 1870 | path = fetchurl { 1871 | name = "setprototypeof___setprototypeof_1.1.1.tgz"; 1872 | url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz"; 1873 | sha1 = "7e95acb24aa92f5885e0abef5ba131330d4ae683"; 1874 | }; 1875 | } 1876 | { 1877 | name = "shebang_command___shebang_command_1.2.0.tgz"; 1878 | path = fetchurl { 1879 | name = "shebang_command___shebang_command_1.2.0.tgz"; 1880 | url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz"; 1881 | sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; 1882 | }; 1883 | } 1884 | { 1885 | name = "shebang_regex___shebang_regex_1.0.0.tgz"; 1886 | path = fetchurl { 1887 | name = "shebang_regex___shebang_regex_1.0.0.tgz"; 1888 | url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz"; 1889 | sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; 1890 | }; 1891 | } 1892 | { 1893 | name = "signal_exit___signal_exit_3.0.3.tgz"; 1894 | path = fetchurl { 1895 | name = "signal_exit___signal_exit_3.0.3.tgz"; 1896 | url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz"; 1897 | sha1 = "a1410c2edd8f077b08b4e253c8eacfcaf057461c"; 1898 | }; 1899 | } 1900 | { 1901 | name = "slice_ansi___slice_ansi_2.1.0.tgz"; 1902 | path = fetchurl { 1903 | name = "slice_ansi___slice_ansi_2.1.0.tgz"; 1904 | url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz"; 1905 | sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636"; 1906 | }; 1907 | } 1908 | { 1909 | name = "source_map_support___source_map_support_0.5.19.tgz"; 1910 | path = fetchurl { 1911 | name = "source_map_support___source_map_support_0.5.19.tgz"; 1912 | url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz"; 1913 | sha1 = "a98b62f86dcaf4f67399648c085291ab9e8fed61"; 1914 | }; 1915 | } 1916 | { 1917 | name = "source_map___source_map_0.6.1.tgz"; 1918 | path = fetchurl { 1919 | name = "source_map___source_map_0.6.1.tgz"; 1920 | url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; 1921 | sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; 1922 | }; 1923 | } 1924 | { 1925 | name = "spdx_correct___spdx_correct_3.1.1.tgz"; 1926 | path = fetchurl { 1927 | name = "spdx_correct___spdx_correct_3.1.1.tgz"; 1928 | url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz"; 1929 | sha1 = "dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"; 1930 | }; 1931 | } 1932 | { 1933 | name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz"; 1934 | path = fetchurl { 1935 | name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz"; 1936 | url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; 1937 | sha1 = "3f28ce1a77a00372683eade4a433183527a2163d"; 1938 | }; 1939 | } 1940 | { 1941 | name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz"; 1942 | path = fetchurl { 1943 | name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz"; 1944 | url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; 1945 | sha1 = "cf70f50482eefdc98e3ce0a6833e4a53ceeba679"; 1946 | }; 1947 | } 1948 | { 1949 | name = "spdx_license_ids___spdx_license_ids_3.0.7.tgz"; 1950 | path = fetchurl { 1951 | name = "spdx_license_ids___spdx_license_ids_3.0.7.tgz"; 1952 | url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 1953 | sha1 = "e9c18a410e5ed7e12442a549fbd8afa767038d65"; 1954 | }; 1955 | } 1956 | { 1957 | name = "split_on_first___split_on_first_1.1.0.tgz"; 1958 | path = fetchurl { 1959 | name = "split_on_first___split_on_first_1.1.0.tgz"; 1960 | url = "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz"; 1961 | sha1 = "f610afeee3b12bce1d0c30425e76398b78249a5f"; 1962 | }; 1963 | } 1964 | { 1965 | name = "sprintf_js___sprintf_js_1.0.3.tgz"; 1966 | path = fetchurl { 1967 | name = "sprintf_js___sprintf_js_1.0.3.tgz"; 1968 | url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; 1969 | sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 1970 | }; 1971 | } 1972 | { 1973 | name = "statuses___statuses_1.5.0.tgz"; 1974 | path = fetchurl { 1975 | name = "statuses___statuses_1.5.0.tgz"; 1976 | url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz"; 1977 | sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 1978 | }; 1979 | } 1980 | { 1981 | name = "streamsearch___streamsearch_0.1.2.tgz"; 1982 | path = fetchurl { 1983 | name = "streamsearch___streamsearch_0.1.2.tgz"; 1984 | url = "https://registry.yarnpkg.com/streamsearch/-/streamsearch-0.1.2.tgz"; 1985 | sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a"; 1986 | }; 1987 | } 1988 | { 1989 | name = "strict_uri_encode___strict_uri_encode_2.0.0.tgz"; 1990 | path = fetchurl { 1991 | name = "strict_uri_encode___strict_uri_encode_2.0.0.tgz"; 1992 | url = "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz"; 1993 | sha1 = "b9c7330c7042862f6b142dc274bbcc5866ce3546"; 1994 | }; 1995 | } 1996 | { 1997 | name = "string_width___string_width_3.1.0.tgz"; 1998 | path = fetchurl { 1999 | name = "string_width___string_width_3.1.0.tgz"; 2000 | url = "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz"; 2001 | sha1 = "22767be21b62af1081574306f69ac51b62203961"; 2002 | }; 2003 | } 2004 | { 2005 | name = "string_width___string_width_4.2.0.tgz"; 2006 | path = fetchurl { 2007 | name = "string_width___string_width_4.2.0.tgz"; 2008 | url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz"; 2009 | sha1 = "952182c46cc7b2c313d1596e623992bd163b72b5"; 2010 | }; 2011 | } 2012 | { 2013 | name = "string_decoder___string_decoder_0.10.31.tgz"; 2014 | path = fetchurl { 2015 | name = "string_decoder___string_decoder_0.10.31.tgz"; 2016 | url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz"; 2017 | sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; 2018 | }; 2019 | } 2020 | { 2021 | name = "string_decoder___string_decoder_1.1.1.tgz"; 2022 | path = fetchurl { 2023 | name = "string_decoder___string_decoder_1.1.1.tgz"; 2024 | url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; 2025 | sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8"; 2026 | }; 2027 | } 2028 | { 2029 | name = "strip_ansi___strip_ansi_5.2.0.tgz"; 2030 | path = fetchurl { 2031 | name = "strip_ansi___strip_ansi_5.2.0.tgz"; 2032 | url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz"; 2033 | sha1 = "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"; 2034 | }; 2035 | } 2036 | { 2037 | name = "strip_ansi___strip_ansi_6.0.0.tgz"; 2038 | path = fetchurl { 2039 | name = "strip_ansi___strip_ansi_6.0.0.tgz"; 2040 | url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz"; 2041 | sha1 = "0b1571dd7669ccd4f3e06e14ef1eed26225ae532"; 2042 | }; 2043 | } 2044 | { 2045 | name = "strip_bom___strip_bom_2.0.0.tgz"; 2046 | path = fetchurl { 2047 | name = "strip_bom___strip_bom_2.0.0.tgz"; 2048 | url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz"; 2049 | sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e"; 2050 | }; 2051 | } 2052 | { 2053 | name = "strip_bom___strip_bom_3.0.0.tgz"; 2054 | path = fetchurl { 2055 | name = "strip_bom___strip_bom_3.0.0.tgz"; 2056 | url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz"; 2057 | sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 2058 | }; 2059 | } 2060 | { 2061 | name = "strip_indent___strip_indent_1.0.1.tgz"; 2062 | path = fetchurl { 2063 | name = "strip_indent___strip_indent_1.0.1.tgz"; 2064 | url = "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz"; 2065 | sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2"; 2066 | }; 2067 | } 2068 | { 2069 | name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; 2070 | path = fetchurl { 2071 | name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; 2072 | url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 2073 | sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 2074 | }; 2075 | } 2076 | { 2077 | name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 2078 | path = fetchurl { 2079 | name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 2080 | url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 2081 | sha1 = "31f1281b3832630434831c310c01cccda8cbe006"; 2082 | }; 2083 | } 2084 | { 2085 | name = "supports_color___supports_color_5.5.0.tgz"; 2086 | path = fetchurl { 2087 | name = "supports_color___supports_color_5.5.0.tgz"; 2088 | url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 2089 | sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; 2090 | }; 2091 | } 2092 | { 2093 | name = "supports_color___supports_color_7.2.0.tgz"; 2094 | path = fetchurl { 2095 | name = "supports_color___supports_color_7.2.0.tgz"; 2096 | url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz"; 2097 | sha1 = "1b7dcdcb32b8138801b3e478ba6a51caa89648da"; 2098 | }; 2099 | } 2100 | { 2101 | name = "table___table_5.4.6.tgz"; 2102 | path = fetchurl { 2103 | name = "table___table_5.4.6.tgz"; 2104 | url = "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz"; 2105 | sha1 = "1292d19500ce3f86053b05f0e8e7e4a3bb21079e"; 2106 | }; 2107 | } 2108 | { 2109 | name = "tdigest___tdigest_0.1.1.tgz"; 2110 | path = fetchurl { 2111 | name = "tdigest___tdigest_0.1.1.tgz"; 2112 | url = "https://registry.yarnpkg.com/tdigest/-/tdigest-0.1.1.tgz"; 2113 | sha1 = "2e3cb2c39ea449e55d1e6cd91117accca4588021"; 2114 | }; 2115 | } 2116 | { 2117 | name = "text_table___text_table_0.2.0.tgz"; 2118 | path = fetchurl { 2119 | name = "text_table___text_table_0.2.0.tgz"; 2120 | url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; 2121 | sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; 2122 | }; 2123 | } 2124 | { 2125 | name = "through___through_2.3.8.tgz"; 2126 | path = fetchurl { 2127 | name = "through___through_2.3.8.tgz"; 2128 | url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 2129 | sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 2130 | }; 2131 | } 2132 | { 2133 | name = "tmp___tmp_0.0.33.tgz"; 2134 | path = fetchurl { 2135 | name = "tmp___tmp_0.0.33.tgz"; 2136 | url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; 2137 | sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; 2138 | }; 2139 | } 2140 | { 2141 | name = "to_regex_range___to_regex_range_5.0.1.tgz"; 2142 | path = fetchurl { 2143 | name = "to_regex_range___to_regex_range_5.0.1.tgz"; 2144 | url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz"; 2145 | sha1 = "1648c44aae7c8d988a326018ed72f5b4dd0392e4"; 2146 | }; 2147 | } 2148 | { 2149 | name = "toidentifier___toidentifier_1.0.0.tgz"; 2150 | path = fetchurl { 2151 | name = "toidentifier___toidentifier_1.0.0.tgz"; 2152 | url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz"; 2153 | sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553"; 2154 | }; 2155 | } 2156 | { 2157 | name = "tree_kill___tree_kill_1.2.2.tgz"; 2158 | path = fetchurl { 2159 | name = "tree_kill___tree_kill_1.2.2.tgz"; 2160 | url = "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz"; 2161 | sha1 = "4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"; 2162 | }; 2163 | } 2164 | { 2165 | name = "trim_newlines___trim_newlines_1.0.0.tgz"; 2166 | path = fetchurl { 2167 | name = "trim_newlines___trim_newlines_1.0.0.tgz"; 2168 | url = "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz"; 2169 | sha1 = "5887966bb582a4503a41eb524f7d35011815a613"; 2170 | }; 2171 | } 2172 | { 2173 | name = "ts_node_dev___ts_node_dev_1.0.0.tgz"; 2174 | path = fetchurl { 2175 | name = "ts_node_dev___ts_node_dev_1.0.0.tgz"; 2176 | url = "https://registry.yarnpkg.com/ts-node-dev/-/ts-node-dev-1.0.0.tgz"; 2177 | sha1 = "24a2270d225c29ce269de2a31f88b1b259fc84cb"; 2178 | }; 2179 | } 2180 | { 2181 | name = "ts_node___ts_node_9.1.1.tgz"; 2182 | path = fetchurl { 2183 | name = "ts_node___ts_node_9.1.1.tgz"; 2184 | url = "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz"; 2185 | sha1 = "51a9a450a3e959401bda5f004a72d54b936d376d"; 2186 | }; 2187 | } 2188 | { 2189 | name = "tsconfig___tsconfig_7.0.0.tgz"; 2190 | path = fetchurl { 2191 | name = "tsconfig___tsconfig_7.0.0.tgz"; 2192 | url = "https://registry.yarnpkg.com/tsconfig/-/tsconfig-7.0.0.tgz"; 2193 | sha1 = "84538875a4dc216e5c4a5432b3a4dec3d54e91b7"; 2194 | }; 2195 | } 2196 | { 2197 | name = "tslib___tslib_1.14.1.tgz"; 2198 | path = fetchurl { 2199 | name = "tslib___tslib_1.14.1.tgz"; 2200 | url = "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz"; 2201 | sha1 = "cf2d38bdc34a134bcaf1091c41f6619e2f672d00"; 2202 | }; 2203 | } 2204 | { 2205 | name = "tsutils___tsutils_3.17.1.tgz"; 2206 | path = fetchurl { 2207 | name = "tsutils___tsutils_3.17.1.tgz"; 2208 | url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz"; 2209 | sha1 = "ed719917f11ca0dee586272b2ac49e015a2dd759"; 2210 | }; 2211 | } 2212 | { 2213 | name = "type_check___type_check_0.3.2.tgz"; 2214 | path = fetchurl { 2215 | name = "type_check___type_check_0.3.2.tgz"; 2216 | url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 2217 | sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; 2218 | }; 2219 | } 2220 | { 2221 | name = "type_fest___type_fest_0.11.0.tgz"; 2222 | path = fetchurl { 2223 | name = "type_fest___type_fest_0.11.0.tgz"; 2224 | url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz"; 2225 | sha1 = "97abf0872310fed88a5c466b25681576145e33f1"; 2226 | }; 2227 | } 2228 | { 2229 | name = "type_fest___type_fest_0.8.1.tgz"; 2230 | path = fetchurl { 2231 | name = "type_fest___type_fest_0.8.1.tgz"; 2232 | url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz"; 2233 | sha1 = "09e249ebde851d3b1e48d27c105444667f17b83d"; 2234 | }; 2235 | } 2236 | { 2237 | name = "type_is___type_is_1.6.18.tgz"; 2238 | path = fetchurl { 2239 | name = "type_is___type_is_1.6.18.tgz"; 2240 | url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; 2241 | sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131"; 2242 | }; 2243 | } 2244 | { 2245 | name = "typedarray___typedarray_0.0.6.tgz"; 2246 | path = fetchurl { 2247 | name = "typedarray___typedarray_0.0.6.tgz"; 2248 | url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; 2249 | sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 2250 | }; 2251 | } 2252 | { 2253 | name = "typescript___typescript_3.9.7.tgz"; 2254 | path = fetchurl { 2255 | name = "typescript___typescript_3.9.7.tgz"; 2256 | url = "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz"; 2257 | sha1 = "98d600a5ebdc38f40cb277522f12dc800e9e25fa"; 2258 | }; 2259 | } 2260 | { 2261 | name = "9b1605d2db82981cafe69dbe356e10ce412f5805"; 2262 | path = fetchurl { 2263 | name = "9b1605d2db82981cafe69dbe356e10ce412f5805"; 2264 | url = "https://codeload.github.com/uNetworking/uWebSockets.js/tar.gz/9b1605d2db82981cafe69dbe356e10ce412f5805"; 2265 | sha1 = "cc1999cdad54da6d5ac2be6a9153cde874942a7e"; 2266 | }; 2267 | } 2268 | { 2269 | name = "unpipe___unpipe_1.0.0.tgz"; 2270 | path = fetchurl { 2271 | name = "unpipe___unpipe_1.0.0.tgz"; 2272 | url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz"; 2273 | sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; 2274 | }; 2275 | } 2276 | { 2277 | name = "uri_js___uri_js_4.4.0.tgz"; 2278 | path = fetchurl { 2279 | name = "uri_js___uri_js_4.4.0.tgz"; 2280 | url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz"; 2281 | sha1 = "aa714261de793e8a82347a7bcc9ce74e86f28602"; 2282 | }; 2283 | } 2284 | { 2285 | name = "util_deprecate___util_deprecate_1.0.2.tgz"; 2286 | path = fetchurl { 2287 | name = "util_deprecate___util_deprecate_1.0.2.tgz"; 2288 | url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; 2289 | sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 2290 | }; 2291 | } 2292 | { 2293 | name = "uuid___uuid_8.3.2.tgz"; 2294 | path = fetchurl { 2295 | name = "uuid___uuid_8.3.2.tgz"; 2296 | url = "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz"; 2297 | sha1 = "80d5b5ced271bb9af6c445f21a1a04c606cefbe2"; 2298 | }; 2299 | } 2300 | { 2301 | name = "uuidv4___uuidv4_6.2.6.tgz"; 2302 | path = fetchurl { 2303 | name = "uuidv4___uuidv4_6.2.6.tgz"; 2304 | url = "https://registry.yarnpkg.com/uuidv4/-/uuidv4-6.2.6.tgz"; 2305 | sha1 = "c37c764b578114b60bdd5460e5578d7d99383ad1"; 2306 | }; 2307 | } 2308 | { 2309 | name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 2310 | path = fetchurl { 2311 | name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 2312 | url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 2313 | sha1 = "9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"; 2314 | }; 2315 | } 2316 | { 2317 | name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; 2318 | path = fetchurl { 2319 | name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; 2320 | url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; 2321 | sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"; 2322 | }; 2323 | } 2324 | { 2325 | name = "which___which_1.3.1.tgz"; 2326 | path = fetchurl { 2327 | name = "which___which_1.3.1.tgz"; 2328 | url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz"; 2329 | sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a"; 2330 | }; 2331 | } 2332 | { 2333 | name = "word_wrap___word_wrap_1.2.3.tgz"; 2334 | path = fetchurl { 2335 | name = "word_wrap___word_wrap_1.2.3.tgz"; 2336 | url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; 2337 | sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c"; 2338 | }; 2339 | } 2340 | { 2341 | name = "wrappy___wrappy_1.0.2.tgz"; 2342 | path = fetchurl { 2343 | name = "wrappy___wrappy_1.0.2.tgz"; 2344 | url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; 2345 | sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 2346 | }; 2347 | } 2348 | { 2349 | name = "write___write_1.0.3.tgz"; 2350 | path = fetchurl { 2351 | name = "write___write_1.0.3.tgz"; 2352 | url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz"; 2353 | sha1 = "0800e14523b923a387e415123c865616aae0f5c3"; 2354 | }; 2355 | } 2356 | { 2357 | name = "xtend___xtend_4.0.2.tgz"; 2358 | path = fetchurl { 2359 | name = "xtend___xtend_4.0.2.tgz"; 2360 | url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz"; 2361 | sha1 = "bb72779f5fa465186b1f438f674fa347fdb5db54"; 2362 | }; 2363 | } 2364 | { 2365 | name = "yallist___yallist_4.0.0.tgz"; 2366 | path = fetchurl { 2367 | name = "yallist___yallist_4.0.0.tgz"; 2368 | url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz"; 2369 | sha1 = "9bb92790d9c0effec63be73519e11a35019a3a72"; 2370 | }; 2371 | } 2372 | { 2373 | name = "yn___yn_3.1.1.tgz"; 2374 | path = fetchurl { 2375 | name = "yn___yn_3.1.1.tgz"; 2376 | url = "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz"; 2377 | sha1 = "1e87401a09d767c1d5eab26a6e4c185182d2eb50"; 2378 | }; 2379 | } 2380 | ]; 2381 | } 2382 | --------------------------------------------------------------------------------