Skip to content
Snippets Groups Projects
package-lock.json 1.53 MiB
Newer Older
  • Learn to ignore specific revisions
  • Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000
          "version": "7.12.13",
          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz",
          "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==",
          "dev": true,
          "dependencies": {
            "@babel/code-frame": "^7.12.13",
            "@babel/parser": "^7.12.13",
            "@babel/types": "^7.12.13"
          }
        },
        "node_modules/@babel/helpers/node_modules/@babel/traverse": {
          "version": "7.14.0",
          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.0.tgz",
          "integrity": "sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA==",
          "dev": true,
          "dependencies": {
            "@babel/code-frame": "^7.12.13",
            "@babel/generator": "^7.14.0",
            "@babel/helper-function-name": "^7.12.13",
            "@babel/helper-split-export-declaration": "^7.12.13",
            "@babel/parser": "^7.14.0",
            "@babel/types": "^7.14.0",
            "debug": "^4.1.0",
            "globals": "^11.1.0"
          }
        },
        "node_modules/@babel/helpers/node_modules/@babel/types": {
          "version": "7.14.1",
          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz",
          "integrity": "sha512-S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-validator-identifier": "^7.14.0",
            "to-fast-properties": "^2.0.0"
          }
        },
        "node_modules/@babel/highlight": {
          "version": "7.10.4",
          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-validator-identifier": "^7.10.4",
            "chalk": "^2.0.0",
            "js-tokens": "^4.0.0"
          }
        },
        "node_modules/@babel/parser": {
          "version": "7.11.5",
          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.5.tgz",
          "integrity": "sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==",
          "dev": true,
          "bin": {
            "parser": "bin/babel-parser.js"
          },
          "engines": {
            "node": ">=6.0.0"
          }
        },
        "node_modules/@babel/plugin-proposal-async-generator-functions": {
          "version": "7.12.12",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz",
          "integrity": "sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-remap-async-to-generator": "^7.12.1",
            "@babel/plugin-syntax-async-generators": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-proposal-class-properties": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
          "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
          "dev": true,
          "dependencies": {
            "@babel/helper-create-class-features-plugin": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-proposal-dynamic-import": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
          "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/plugin-syntax-dynamic-import": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-proposal-export-namespace-from": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz",
          "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
          }
        },
        "node_modules/@babel/plugin-proposal-json-strings": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
          "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/plugin-syntax-json-strings": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz",
          "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
          "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-proposal-numeric-separator": {
          "version": "7.12.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz",
          "integrity": "sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/plugin-syntax-numeric-separator": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-proposal-object-rest-spread": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
          "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
            "@babel/plugin-transform-parameters": "^7.12.1"
          }
        },
        "node_modules/@babel/plugin-proposal-optional-catch-binding": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
          "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-proposal-optional-chaining": {
          "version": "7.12.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz",
          "integrity": "sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
            "@babel/plugin-syntax-optional-chaining": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-proposal-private-methods": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
          "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
          "dev": true,
          "dependencies": {
            "@babel/helper-create-class-features-plugin": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-proposal-unicode-property-regex": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
          "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
          "dev": true,
          "dependencies": {
            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4"
          },
          "engines": {
            "node": ">=4"
          }
        },
        "node_modules/@babel/plugin-syntax-async-generators": {
          "version": "7.8.4",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
          "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-syntax-class-properties": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
          "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-syntax-dynamic-import": {
          "version": "7.8.3",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
          "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-syntax-export-namespace-from": {
          "version": "7.8.3",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
          "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.8.3"
          }
        },
        "node_modules/@babel/plugin-syntax-json-strings": {
          "version": "7.8.3",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
          "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
          "version": "7.10.4",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
          "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
          "version": "7.8.3",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
          "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-syntax-numeric-separator": {
          "version": "7.10.4",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
          "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-syntax-object-rest-spread": {
          "version": "7.8.3",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
          "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-syntax-optional-catch-binding": {
          "version": "7.8.3",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
          "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-syntax-optional-chaining": {
          "version": "7.8.3",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
          "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.8.0"
          }
        },
        "node_modules/@babel/plugin-syntax-top-level-await": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
          "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-arrow-functions": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
          "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-async-to-generator": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
          "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
          "dev": true,
          "dependencies": {
            "@babel/helper-module-imports": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-remap-async-to-generator": "^7.12.1"
          }
        },
        "node_modules/@babel/plugin-transform-block-scoped-functions": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
          "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-block-scoping": {
          "version": "7.12.12",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz",
          "integrity": "sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-classes": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
          "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
          "dev": true,
          "dependencies": {
            "@babel/helper-annotate-as-pure": "^7.10.4",
            "@babel/helper-define-map": "^7.10.4",
            "@babel/helper-function-name": "^7.10.4",
            "@babel/helper-optimise-call-expression": "^7.10.4",
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-replace-supers": "^7.12.1",
            "@babel/helper-split-export-declaration": "^7.10.4",
            "globals": "^11.1.0"
          }
        },
        "node_modules/@babel/plugin-transform-computed-properties": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
          "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-destructuring": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
          "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-dotall-regex": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
          "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-duplicate-keys": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
          "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-exponentiation-operator": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
          "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
          "dev": true,
          "dependencies": {
            "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-for-of": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
          "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-function-name": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
          "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-function-name": "^7.10.4",
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-literals": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
          "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-member-expression-literals": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
          "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-modules-amd": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
          "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-module-transforms": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4",
            "babel-plugin-dynamic-import-node": "^2.3.3"
          }
        },
        "node_modules/@babel/plugin-transform-modules-commonjs": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
          "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
          "dev": true,
          "dependencies": {
            "@babel/helper-module-transforms": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-simple-access": "^7.12.1",
            "babel-plugin-dynamic-import-node": "^2.3.3"
          }
        },
        "node_modules/@babel/plugin-transform-modules-systemjs": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
          "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
          "dev": true,
          "dependencies": {
            "@babel/helper-hoist-variables": "^7.10.4",
            "@babel/helper-module-transforms": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-validator-identifier": "^7.10.4",
            "babel-plugin-dynamic-import-node": "^2.3.3"
          }
        },
        "node_modules/@babel/plugin-transform-modules-umd": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
          "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
          "dev": true,
          "dependencies": {
            "@babel/helper-module-transforms": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
          "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
          "dev": true,
          "dependencies": {
            "@babel/helper-create-regexp-features-plugin": "^7.12.1"
          }
        },
        "node_modules/@babel/plugin-transform-new-target": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
          "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-object-super": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
          "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-replace-supers": "^7.12.1"
          }
        },
        "node_modules/@babel/plugin-transform-parameters": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
          "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-property-literals": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
          "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-regenerator": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
          "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
          "dev": true,
          "dependencies": {
            "regenerator-transform": "^0.14.2"
          }
        },
        "node_modules/@babel/plugin-transform-reserved-words": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
          "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-runtime": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz",
          "integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-module-imports": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4",
            "resolve": "^1.8.1",
            "semver": "^5.5.1"
          }
        },
        "node_modules/@babel/plugin-transform-runtime/node_modules/semver": {
          "version": "5.7.1",
          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
          "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
          "dev": true,
          "bin": {
            "semver": "bin/semver"
          }
        },
        "node_modules/@babel/plugin-transform-shorthand-properties": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
          "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-spread": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
          "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
          }
        },
        "node_modules/@babel/plugin-transform-sticky-regex": {
          "version": "7.12.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz",
          "integrity": "sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-template-literals": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
          "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-typeof-symbol": {
          "version": "7.12.10",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz",
          "integrity": "sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-unicode-escapes": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
          "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/plugin-transform-unicode-regex": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
          "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4"
          }
        },
        "node_modules/@babel/preset-env": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz",
          "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==",
          "dev": true,
          "dependencies": {
            "@babel/compat-data": "^7.12.1",
            "@babel/helper-compilation-targets": "^7.12.1",
            "@babel/helper-module-imports": "^7.12.1",
            "@babel/helper-plugin-utils": "^7.10.4",
            "@babel/helper-validator-option": "^7.12.1",
            "@babel/plugin-proposal-async-generator-functions": "^7.12.1",
            "@babel/plugin-proposal-class-properties": "^7.12.1",
            "@babel/plugin-proposal-dynamic-import": "^7.12.1",
            "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
            "@babel/plugin-proposal-json-strings": "^7.12.1",
            "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
            "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
            "@babel/plugin-proposal-numeric-separator": "^7.12.1",
            "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
            "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
            "@babel/plugin-proposal-optional-chaining": "^7.12.1",
            "@babel/plugin-proposal-private-methods": "^7.12.1",
            "@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
            "@babel/plugin-syntax-async-generators": "^7.8.0",
            "@babel/plugin-syntax-class-properties": "^7.12.1",
            "@babel/plugin-syntax-dynamic-import": "^7.8.0",
            "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
            "@babel/plugin-syntax-json-strings": "^7.8.0",
            "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
            "@babel/plugin-syntax-numeric-separator": "^7.10.4",
            "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
            "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
            "@babel/plugin-syntax-optional-chaining": "^7.8.0",
            "@babel/plugin-syntax-top-level-await": "^7.12.1",
            "@babel/plugin-transform-arrow-functions": "^7.12.1",
            "@babel/plugin-transform-async-to-generator": "^7.12.1",
            "@babel/plugin-transform-block-scoped-functions": "^7.12.1",
            "@babel/plugin-transform-block-scoping": "^7.12.1",
            "@babel/plugin-transform-classes": "^7.12.1",
            "@babel/plugin-transform-computed-properties": "^7.12.1",
            "@babel/plugin-transform-destructuring": "^7.12.1",
            "@babel/plugin-transform-dotall-regex": "^7.12.1",
            "@babel/plugin-transform-duplicate-keys": "^7.12.1",
            "@babel/plugin-transform-exponentiation-operator": "^7.12.1",
            "@babel/plugin-transform-for-of": "^7.12.1",
            "@babel/plugin-transform-function-name": "^7.12.1",
            "@babel/plugin-transform-literals": "^7.12.1",
            "@babel/plugin-transform-member-expression-literals": "^7.12.1",
            "@babel/plugin-transform-modules-amd": "^7.12.1",
            "@babel/plugin-transform-modules-commonjs": "^7.12.1",
            "@babel/plugin-transform-modules-systemjs": "^7.12.1",
            "@babel/plugin-transform-modules-umd": "^7.12.1",
            "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
            "@babel/plugin-transform-new-target": "^7.12.1",
            "@babel/plugin-transform-object-super": "^7.12.1",
            "@babel/plugin-transform-parameters": "^7.12.1",
            "@babel/plugin-transform-property-literals": "^7.12.1",
            "@babel/plugin-transform-regenerator": "^7.12.1",
            "@babel/plugin-transform-reserved-words": "^7.12.1",
            "@babel/plugin-transform-shorthand-properties": "^7.12.1",
            "@babel/plugin-transform-spread": "^7.12.1",
            "@babel/plugin-transform-sticky-regex": "^7.12.1",
            "@babel/plugin-transform-template-literals": "^7.12.1",
            "@babel/plugin-transform-typeof-symbol": "^7.12.1",
            "@babel/plugin-transform-unicode-escapes": "^7.12.1",
            "@babel/plugin-transform-unicode-regex": "^7.12.1",
            "@babel/preset-modules": "^0.1.3",
            "@babel/types": "^7.12.1",
            "core-js-compat": "^3.6.2",
            "semver": "^5.5.0"
          }
        },
        "node_modules/@babel/preset-env/node_modules/@babel/helper-validator-identifier": {
          "version": "7.12.11",
          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
          "dev": true
        },
        "node_modules/@babel/preset-env/node_modules/@babel/types": {
          "version": "7.12.12",
          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
          "dev": true,
          "dependencies": {
            "@babel/helper-validator-identifier": "^7.12.11",
            "lodash": "^4.17.19",
            "to-fast-properties": "^2.0.0"
          }
        },
        "node_modules/@babel/preset-env/node_modules/semver": {
          "version": "5.7.1",
          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
          "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
          "dev": true,
          "bin": {
            "semver": "bin/semver"
          }
        },
        "node_modules/@babel/preset-modules": {
          "version": "0.1.4",
          "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz",
          "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==",
          "dev": true,
          "dependencies": {
            "@babel/helper-plugin-utils": "^7.0.0",
            "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
            "@babel/plugin-transform-dotall-regex": "^7.4.4",
            "@babel/types": "^7.4.4",
            "esutils": "^2.0.2"
          }
        },
        "node_modules/@babel/runtime": {
          "version": "7.12.1",
          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
          "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
          "dev": true,
          "dependencies": {
            "regenerator-runtime": "^0.13.4"
          }
        },
        "node_modules/@babel/template": {
          "version": "7.10.4",
          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
          "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
          "dev": true,
          "dependencies": {
            "@babel/code-frame": "^7.10.4",
            "@babel/parser": "^7.10.4",
            "@babel/types": "^7.10.4"
          }
        },
        "node_modules/@babel/traverse": {
          "version": "7.11.5",
          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.5.tgz",
          "integrity": "sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ==",
          "dev": true,
          "dependencies": {
            "@babel/code-frame": "^7.10.4",
            "@babel/generator": "^7.11.5",
            "@babel/helper-function-name": "^7.10.4",
            "@babel/helper-split-export-declaration": "^7.11.0",
            "@babel/parser": "^7.11.5",
            "@babel/types": "^7.11.5",
            "debug": "^4.1.0",
            "globals": "^11.1.0",
            "lodash": "^4.17.19"
          }
        },
        "node_modules/@babel/traverse/node_modules/@babel/generator": {
          "version": "7.11.6",
          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.6.tgz",
          "integrity": "sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA==",
          "dev": true,
          "dependencies": {
            "@babel/types": "^7.11.5",
            "jsesc": "^2.5.1",
            "source-map": "^0.5.0"
          }
        },
        "node_modules/@babel/traverse/node_modules/source-map": {
          "version": "0.5.7",
          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
          "dev": true,
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/@babel/types": {
          "version": "7.11.5",
          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.5.tgz",
          "integrity": "sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==",
          "dev": true,
          "dependencies": {
            "@babel/helper-validator-identifier": "^7.10.4",
            "lodash": "^4.17.19",
            "to-fast-properties": "^2.0.0"
          }
        },
        "node_modules/@compodoc/compodoc": {
          "version": "1.1.11",
          "resolved": "https://registry.npmjs.org/@compodoc/compodoc/-/compodoc-1.1.11.tgz",
          "integrity": "sha512-3PGTf64Eug1SIcdQole2KkVftBMFjKzecBytLHy4+MQYcblAQM0O3a4GoxuWwN7cTawVq4eqSJTtf6My1I/oHA==",
          "dev": true,
          "hasInstallScript": true,
          "dependencies": {
            "@compodoc/ngd-transformer": "^2.0.0",
            "chalk": "^2.4.2",
            "cheerio": "^1.0.0-rc.3",
            "chokidar": "^3.1.1",
            "colors": "^1.4.0",
            "commander": "^3.0.2",
            "cosmiconfig": "^5.2.1",
            "decache": "^4.5.1",
            "fancy-log": "^1.3.3",
            "findit2": "^2.2.3",
            "fs-extra": "^8.0.1",
            "glob": "^7.1.4",
            "handlebars": "^4.3.3",
            "html-entities": "^1.2.1",
            "i18next": "^17.0.16",
            "inside": "^1.0.0",
            "json5": "^2.1.0",
            "live-server": "^1.2.1",
            "lodash": "^4.17.15",
            "loglevel": "^1.6.4",
            "loglevel-plugin-prefix": "^0.8.4",
            "lunr": "^2.3.6",
            "marked": "^0.7.0",
            "minimist": "^1.2.0",
            "opencollective-postinstall": "^2.0.2",
            "os-name": "^3.1.0",
            "pdfmake": "^0.1.60",
            "semver": "^6.3.0",
            "traverse": "^0.6.6",
            "ts-simple-ast": "12.4.0",
            "uuid": "^3.3.3"
          },
          "bin": {
            "compodoc": "bin/index-cli.js"
          },
          "engines": {
            "node": ">= 8.0.0"
          }
        },
        "node_modules/@compodoc/compodoc/node_modules/commander": {
          "version": "3.0.2",
          "resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz",
          "integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==",
          "dev": true
        },
        "node_modules/@compodoc/compodoc/node_modules/fs-extra": {
          "version": "8.1.0",
          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
          "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
          "dev": true,
          "dependencies": {
            "graceful-fs": "^4.2.0",
            "jsonfile": "^4.0.0",
            "universalify": "^0.1.0"
          },
          "engines": {
            "node": ">=6 <7 || >=8"
          }
        },
        "node_modules/@compodoc/compodoc/node_modules/semver": {
          "version": "6.3.0",
          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
          "dev": true,
          "bin": {
            "semver": "bin/semver.js"
          }
        },
        "node_modules/@compodoc/ngd-core": {
          "version": "2.1.0",
          "resolved": "https://registry.npmjs.org/@compodoc/ngd-core/-/ngd-core-2.1.0.tgz",
          "integrity": "sha512-nyBH7J7SJJ2AV6OeZhJ02kRtVB7ALnZJKgShjoL9CNmOFEj8AkdhP9qTBIgjaDrbsW5pF4nx32KQL2fT7RFnqw==",
          "dev": true,
          "dependencies": {
            "ansi-colors": "^4.1.1",
            "fancy-log": "^1.3.3",
            "typescript": "^4.0.3"
          },
          "engines": {
            "node": ">= 10.0.0"
          }
        },
        "node_modules/@compodoc/ngd-transformer": {
          "version": "2.1.0",
          "resolved": "https://registry.npmjs.org/@compodoc/ngd-transformer/-/ngd-transformer-2.1.0.tgz",
          "integrity": "sha512-Jo4VCMzIUtgIAdRmhHhOoRRE01gCjc5CyrUERRx0VgEzkkCm1Wmu/XHSsQP6tSpCYHBjERghqaDqH5DabkR2oQ==",
          "dev": true,
          "dependencies": {
            "@aduh95/viz.js": "^3.1.0",
            "@compodoc/ngd-core": "~2.1.0",
            "dot": "^1.1.3",
            "fs-extra": "^9.0.1"
          },
          "engines": {
            "node": ">= 10.0.0"
          }
        },
        "node_modules/@compodoc/ngd-transformer/node_modules/fs-extra": {
          "version": "9.1.0",
          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
          "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
          "dev": true,
          "dependencies": {
            "at-least-node": "^1.0.0",
            "graceful-fs": "^4.2.0",
            "jsonfile": "^6.0.1",
            "universalify": "^2.0.0"
          },
          "engines": {
            "node": ">=10"
          }
        },
        "node_modules/@compodoc/ngd-transformer/node_modules/jsonfile": {
          "version": "6.1.0",
          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
          "dev": true,
          "dependencies": {
            "universalify": "^2.0.0"
          },
          "optionalDependencies": {
            "graceful-fs": "^4.1.6"
          }
        },
        "node_modules/@compodoc/ngd-transformer/node_modules/universalify": {
          "version": "2.0.0",
          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
          "dev": true,
          "engines": {
            "node": ">= 10.0.0"
          }
        },
        "node_modules/@dsherret/to-absolute-glob": {
          "version": "2.0.2",
          "resolved": "https://registry.npmjs.org/@dsherret/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz",
          "integrity": "sha1-H2R13IvZdM6gei2vOGSzF7HdMyw=",
          "dev": true,
          "dependencies": {
            "is-absolute": "^1.0.0",
            "is-negated-glob": "^1.0.0"
          },
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/@istanbuljs/schema": {
          "version": "0.1.2",
          "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz",
          "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==",
          "dev": true,
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/@jsdevtools/coverage-istanbul-loader": {
          "version": "3.0.5",
          "resolved": "https://registry.npmjs.org/@jsdevtools/coverage-istanbul-loader/-/coverage-istanbul-loader-3.0.5.tgz",
          "integrity": "sha512-EUCPEkaRPvmHjWAAZkWMT7JDzpw7FKB00WTISaiXsbNOd5hCHg77XLA8sLYLFDo1zepYLo2w7GstN8YBqRXZfA==",
          "dev": true,
          "dependencies": {
            "convert-source-map": "^1.7.0",
            "istanbul-lib-instrument": "^4.0.3",
            "loader-utils": "^2.0.0",
            "merge-source-map": "^1.1.0",
            "schema-utils": "^2.7.0"
          }
        },
        "node_modules/@mrmlnc/readdir-enhanced": {
          "version": "2.2.1",
          "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
          "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
          "dev": true,
          "dependencies": {
            "call-me-maybe": "^1.0.1",