summaryrefslogtreecommitdiff
path: root/extension/examples/MyProject/package-lock.json
blob: 77879b3257a39fd8a684b1ebacbcb288d0681183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
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
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
{
   "name": "MyProject",
   "version": "0.0.1",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
      "": {
         "name": "MyProject",
         "version": "0.0.1",
         "dependencies": {
            "reflect-metadata": "^0.1.13",
            "sqlite3": "^5.1.6",
            "typeorm": "0.3.15"
         },
         "devDependencies": {
            "@types/node": "^16.11.10",
            "ts-node": "10.7.0",
            "typescript": "4.5.2"
         }
      },
      "node_modules/@cspotcode/source-map-consumer": {
         "version": "0.8.0",
         "resolved": "https://registry.npmjs.org/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz",
         "integrity": "sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==",
         "devOptional": true,
         "engines": {
            "node": ">= 12"
         }
      },
      "node_modules/@cspotcode/source-map-support": {
         "version": "0.7.0",
         "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz",
         "integrity": "sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==",
         "devOptional": true,
         "dependencies": {
            "@cspotcode/source-map-consumer": "0.8.0"
         },
         "engines": {
            "node": ">=12"
         }
      },
      "node_modules/@gar/promisify": {
         "version": "1.1.3",
         "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
         "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
         "optional": true
      },
      "node_modules/@mapbox/node-pre-gyp": {
         "version": "1.0.10",
         "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz",
         "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==",
         "dependencies": {
            "detect-libc": "^2.0.0",
            "https-proxy-agent": "^5.0.0",
            "make-dir": "^3.1.0",
            "node-fetch": "^2.6.7",
            "nopt": "^5.0.0",
            "npmlog": "^5.0.1",
            "rimraf": "^3.0.2",
            "semver": "^7.3.5",
            "tar": "^6.1.11"
         },
         "bin": {
            "node-pre-gyp": "bin/node-pre-gyp"
         }
      },
      "node_modules/@npmcli/fs": {
         "version": "1.1.1",
         "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz",
         "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
         "optional": true,
         "dependencies": {
            "@gar/promisify": "^1.0.1",
            "semver": "^7.3.5"
         }
      },
      "node_modules/@npmcli/move-file": {
         "version": "1.1.2",
         "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
         "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
         "deprecated": "This functionality has been moved to @npmcli/fs",
         "optional": true,
         "dependencies": {
            "mkdirp": "^1.0.4",
            "rimraf": "^3.0.2"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/@sqltools/formatter": {
         "version": "1.2.5",
         "resolved": "https://registry.npmjs.org/@sqltools/formatter/-/formatter-1.2.5.tgz",
         "integrity": "sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw=="
      },
      "node_modules/@tootallnate/once": {
         "version": "1.1.2",
         "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
         "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
         "optional": true,
         "engines": {
            "node": ">= 6"
         }
      },
      "node_modules/@tsconfig/node10": {
         "version": "1.0.9",
         "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz",
         "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==",
         "devOptional": true
      },
      "node_modules/@tsconfig/node12": {
         "version": "1.0.11",
         "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
         "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
         "devOptional": true
      },
      "node_modules/@tsconfig/node14": {
         "version": "1.0.3",
         "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
         "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
         "devOptional": true
      },
      "node_modules/@tsconfig/node16": {
         "version": "1.0.3",
         "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz",
         "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==",
         "devOptional": true
      },
      "node_modules/@types/node": {
         "version": "16.18.24",
         "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.24.tgz",
         "integrity": "sha512-zvSN2Esek1aeLdKDYuntKAYjti9Z2oT4I8bfkLLhIxHlv3dwZ5vvATxOc31820iYm4hQRCwjUgDpwSMFjfTUnw==",
         "devOptional": true
      },
      "node_modules/abbrev": {
         "version": "1.1.1",
         "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
         "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
      },
      "node_modules/acorn": {
         "version": "8.8.2",
         "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
         "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
         "devOptional": true,
         "bin": {
            "acorn": "bin/acorn"
         },
         "engines": {
            "node": ">=0.4.0"
         }
      },
      "node_modules/acorn-walk": {
         "version": "8.2.0",
         "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz",
         "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
         "devOptional": true,
         "engines": {
            "node": ">=0.4.0"
         }
      },
      "node_modules/agent-base": {
         "version": "6.0.2",
         "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
         "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
         "dependencies": {
            "debug": "4"
         },
         "engines": {
            "node": ">= 6.0.0"
         }
      },
      "node_modules/agentkeepalive": {
         "version": "4.3.0",
         "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz",
         "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==",
         "optional": true,
         "dependencies": {
            "debug": "^4.1.0",
            "depd": "^2.0.0",
            "humanize-ms": "^1.2.1"
         },
         "engines": {
            "node": ">= 8.0.0"
         }
      },
      "node_modules/aggregate-error": {
         "version": "3.1.0",
         "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
         "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
         "optional": true,
         "dependencies": {
            "clean-stack": "^2.0.0",
            "indent-string": "^4.0.0"
         },
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/ansi-regex": {
         "version": "5.0.1",
         "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
         "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/ansi-styles": {
         "version": "4.3.0",
         "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
         "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
         "dependencies": {
            "color-convert": "^2.0.1"
         },
         "engines": {
            "node": ">=8"
         },
         "funding": {
            "url": "https://github.com/chalk/ansi-styles?sponsor=1"
         }
      },
      "node_modules/any-promise": {
         "version": "1.3.0",
         "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
         "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
      },
      "node_modules/app-root-path": {
         "version": "3.1.0",
         "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.1.0.tgz",
         "integrity": "sha512-biN3PwB2gUtjaYy/isrU3aNWI5w+fAfvHkSvCKeQGxhmYpwKFUxudR3Yya+KqVRHBmEDYh+/lTozYCFbmzX4nA==",
         "engines": {
            "node": ">= 6.0.0"
         }
      },
      "node_modules/aproba": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
         "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
      },
      "node_modules/are-we-there-yet": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
         "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
         "dependencies": {
            "delegates": "^1.0.0",
            "readable-stream": "^3.6.0"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/arg": {
         "version": "4.1.3",
         "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
         "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
         "devOptional": true
      },
      "node_modules/balanced-match": {
         "version": "1.0.2",
         "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
         "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
      },
      "node_modules/base64-js": {
         "version": "1.5.1",
         "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
         "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
         "funding": [
            {
               "type": "github",
               "url": "https://github.com/sponsors/feross"
            },
            {
               "type": "patreon",
               "url": "https://www.patreon.com/feross"
            },
            {
               "type": "consulting",
               "url": "https://feross.org/support"
            }
         ]
      },
      "node_modules/brace-expansion": {
         "version": "1.1.11",
         "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
         "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
         "dependencies": {
            "balanced-match": "^1.0.0",
            "concat-map": "0.0.1"
         }
      },
      "node_modules/buffer": {
         "version": "6.0.3",
         "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
         "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
         "funding": [
            {
               "type": "github",
               "url": "https://github.com/sponsors/feross"
            },
            {
               "type": "patreon",
               "url": "https://www.patreon.com/feross"
            },
            {
               "type": "consulting",
               "url": "https://feross.org/support"
            }
         ],
         "dependencies": {
            "base64-js": "^1.3.1",
            "ieee754": "^1.2.1"
         }
      },
      "node_modules/cacache": {
         "version": "15.3.0",
         "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
         "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
         "optional": true,
         "dependencies": {
            "@npmcli/fs": "^1.0.0",
            "@npmcli/move-file": "^1.0.1",
            "chownr": "^2.0.0",
            "fs-minipass": "^2.0.0",
            "glob": "^7.1.4",
            "infer-owner": "^1.0.4",
            "lru-cache": "^6.0.0",
            "minipass": "^3.1.1",
            "minipass-collect": "^1.0.2",
            "minipass-flush": "^1.0.5",
            "minipass-pipeline": "^1.2.2",
            "mkdirp": "^1.0.3",
            "p-map": "^4.0.0",
            "promise-inflight": "^1.0.1",
            "rimraf": "^3.0.2",
            "ssri": "^8.0.1",
            "tar": "^6.0.2",
            "unique-filename": "^1.1.1"
         },
         "engines": {
            "node": ">= 10"
         }
      },
      "node_modules/chalk": {
         "version": "4.1.2",
         "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
         "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
         "dependencies": {
            "ansi-styles": "^4.1.0",
            "supports-color": "^7.1.0"
         },
         "engines": {
            "node": ">=10"
         },
         "funding": {
            "url": "https://github.com/chalk/chalk?sponsor=1"
         }
      },
      "node_modules/chownr": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
         "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/clean-stack": {
         "version": "2.2.0",
         "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
         "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
         "optional": true,
         "engines": {
            "node": ">=6"
         }
      },
      "node_modules/cli-highlight": {
         "version": "2.1.11",
         "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz",
         "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==",
         "dependencies": {
            "chalk": "^4.0.0",
            "highlight.js": "^10.7.1",
            "mz": "^2.4.0",
            "parse5": "^5.1.1",
            "parse5-htmlparser2-tree-adapter": "^6.0.0",
            "yargs": "^16.0.0"
         },
         "bin": {
            "highlight": "bin/highlight"
         },
         "engines": {
            "node": ">=8.0.0",
            "npm": ">=5.0.0"
         }
      },
      "node_modules/cli-highlight/node_modules/cliui": {
         "version": "7.0.4",
         "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
         "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
         "dependencies": {
            "string-width": "^4.2.0",
            "strip-ansi": "^6.0.0",
            "wrap-ansi": "^7.0.0"
         }
      },
      "node_modules/cli-highlight/node_modules/yargs": {
         "version": "16.2.0",
         "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
         "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
         "dependencies": {
            "cliui": "^7.0.2",
            "escalade": "^3.1.1",
            "get-caller-file": "^2.0.5",
            "require-directory": "^2.1.1",
            "string-width": "^4.2.0",
            "y18n": "^5.0.5",
            "yargs-parser": "^20.2.2"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/cli-highlight/node_modules/yargs-parser": {
         "version": "20.2.9",
         "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
         "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/cliui": {
         "version": "8.0.1",
         "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
         "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
         "dependencies": {
            "string-width": "^4.2.0",
            "strip-ansi": "^6.0.1",
            "wrap-ansi": "^7.0.0"
         },
         "engines": {
            "node": ">=12"
         }
      },
      "node_modules/color-convert": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
         "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
         "dependencies": {
            "color-name": "~1.1.4"
         },
         "engines": {
            "node": ">=7.0.0"
         }
      },
      "node_modules/color-name": {
         "version": "1.1.4",
         "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
         "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
      },
      "node_modules/color-support": {
         "version": "1.1.3",
         "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
         "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
         "bin": {
            "color-support": "bin.js"
         }
      },
      "node_modules/concat-map": {
         "version": "0.0.1",
         "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
         "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
      },
      "node_modules/console-control-strings": {
         "version": "1.1.0",
         "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
         "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="
      },
      "node_modules/create-require": {
         "version": "1.1.1",
         "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
         "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
         "devOptional": true
      },
      "node_modules/debug": {
         "version": "4.3.4",
         "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
         "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
         "dependencies": {
            "ms": "2.1.2"
         },
         "engines": {
            "node": ">=6.0"
         },
         "peerDependenciesMeta": {
            "supports-color": {
               "optional": true
            }
         }
      },
      "node_modules/delegates": {
         "version": "1.0.0",
         "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
         "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="
      },
      "node_modules/depd": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
         "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
         "optional": true,
         "engines": {
            "node": ">= 0.8"
         }
      },
      "node_modules/detect-libc": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz",
         "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==",
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/diff": {
         "version": "4.0.2",
         "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
         "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
         "devOptional": true,
         "engines": {
            "node": ">=0.3.1"
         }
      },
      "node_modules/dotenv": {
         "version": "16.0.3",
         "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz",
         "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==",
         "engines": {
            "node": ">=12"
         }
      },
      "node_modules/emoji-regex": {
         "version": "8.0.0",
         "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
         "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
      },
      "node_modules/encoding": {
         "version": "0.1.13",
         "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
         "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
         "optional": true,
         "dependencies": {
            "iconv-lite": "^0.6.2"
         }
      },
      "node_modules/env-paths": {
         "version": "2.2.1",
         "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
         "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
         "optional": true,
         "engines": {
            "node": ">=6"
         }
      },
      "node_modules/err-code": {
         "version": "2.0.3",
         "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
         "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
         "optional": true
      },
      "node_modules/escalade": {
         "version": "3.1.1",
         "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
         "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
         "engines": {
            "node": ">=6"
         }
      },
      "node_modules/fs-minipass": {
         "version": "2.1.0",
         "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
         "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
         "dependencies": {
            "minipass": "^3.0.0"
         },
         "engines": {
            "node": ">= 8"
         }
      },
      "node_modules/fs.realpath": {
         "version": "1.0.0",
         "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
         "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
      },
      "node_modules/gauge": {
         "version": "3.0.2",
         "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
         "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
         "dependencies": {
            "aproba": "^1.0.3 || ^2.0.0",
            "color-support": "^1.1.2",
            "console-control-strings": "^1.0.0",
            "has-unicode": "^2.0.1",
            "object-assign": "^4.1.1",
            "signal-exit": "^3.0.0",
            "string-width": "^4.2.3",
            "strip-ansi": "^6.0.1",
            "wide-align": "^1.1.2"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/get-caller-file": {
         "version": "2.0.5",
         "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
         "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
         "engines": {
            "node": "6.* || 8.* || >= 10.*"
         }
      },
      "node_modules/glob": {
         "version": "7.2.3",
         "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
         "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
         "dependencies": {
            "fs.realpath": "^1.0.0",
            "inflight": "^1.0.4",
            "inherits": "2",
            "minimatch": "^3.1.1",
            "once": "^1.3.0",
            "path-is-absolute": "^1.0.0"
         },
         "engines": {
            "node": "*"
         },
         "funding": {
            "url": "https://github.com/sponsors/isaacs"
         }
      },
      "node_modules/graceful-fs": {
         "version": "4.2.11",
         "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
         "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
         "optional": true
      },
      "node_modules/has-flag": {
         "version": "4.0.0",
         "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
         "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/has-unicode": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
         "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
      },
      "node_modules/highlight.js": {
         "version": "10.7.3",
         "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
         "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
         "engines": {
            "node": "*"
         }
      },
      "node_modules/http-cache-semantics": {
         "version": "4.1.1",
         "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
         "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==",
         "optional": true
      },
      "node_modules/http-proxy-agent": {
         "version": "4.0.1",
         "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
         "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
         "optional": true,
         "dependencies": {
            "@tootallnate/once": "1",
            "agent-base": "6",
            "debug": "4"
         },
         "engines": {
            "node": ">= 6"
         }
      },
      "node_modules/https-proxy-agent": {
         "version": "5.0.1",
         "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
         "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
         "dependencies": {
            "agent-base": "6",
            "debug": "4"
         },
         "engines": {
            "node": ">= 6"
         }
      },
      "node_modules/humanize-ms": {
         "version": "1.2.1",
         "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
         "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
         "optional": true,
         "dependencies": {
            "ms": "^2.0.0"
         }
      },
      "node_modules/iconv-lite": {
         "version": "0.6.3",
         "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
         "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
         "optional": true,
         "dependencies": {
            "safer-buffer": ">= 2.1.2 < 3.0.0"
         },
         "engines": {
            "node": ">=0.10.0"
         }
      },
      "node_modules/ieee754": {
         "version": "1.2.1",
         "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
         "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
         "funding": [
            {
               "type": "github",
               "url": "https://github.com/sponsors/feross"
            },
            {
               "type": "patreon",
               "url": "https://www.patreon.com/feross"
            },
            {
               "type": "consulting",
               "url": "https://feross.org/support"
            }
         ]
      },
      "node_modules/imurmurhash": {
         "version": "0.1.4",
         "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
         "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
         "optional": true,
         "engines": {
            "node": ">=0.8.19"
         }
      },
      "node_modules/indent-string": {
         "version": "4.0.0",
         "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
         "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
         "optional": true,
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/infer-owner": {
         "version": "1.0.4",
         "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
         "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
         "optional": true
      },
      "node_modules/inflight": {
         "version": "1.0.6",
         "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
         "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
         "dependencies": {
            "once": "^1.3.0",
            "wrappy": "1"
         }
      },
      "node_modules/inherits": {
         "version": "2.0.4",
         "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
         "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
      },
      "node_modules/ip": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
         "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==",
         "optional": true
      },
      "node_modules/is-fullwidth-code-point": {
         "version": "3.0.0",
         "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
         "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/is-lambda": {
         "version": "1.0.1",
         "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
         "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==",
         "optional": true
      },
      "node_modules/isexe": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
         "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
         "optional": true
      },
      "node_modules/lru-cache": {
         "version": "6.0.0",
         "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
         "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
         "dependencies": {
            "yallist": "^4.0.0"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/make-dir": {
         "version": "3.1.0",
         "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
         "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
         "dependencies": {
            "semver": "^6.0.0"
         },
         "engines": {
            "node": ">=8"
         },
         "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
         }
      },
      "node_modules/make-dir/node_modules/semver": {
         "version": "6.3.0",
         "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
         "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
         "bin": {
            "semver": "bin/semver.js"
         }
      },
      "node_modules/make-error": {
         "version": "1.3.6",
         "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
         "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
         "devOptional": true
      },
      "node_modules/make-fetch-happen": {
         "version": "9.1.0",
         "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz",
         "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==",
         "optional": true,
         "dependencies": {
            "agentkeepalive": "^4.1.3",
            "cacache": "^15.2.0",
            "http-cache-semantics": "^4.1.0",
            "http-proxy-agent": "^4.0.1",
            "https-proxy-agent": "^5.0.0",
            "is-lambda": "^1.0.1",
            "lru-cache": "^6.0.0",
            "minipass": "^3.1.3",
            "minipass-collect": "^1.0.2",
            "minipass-fetch": "^1.3.2",
            "minipass-flush": "^1.0.5",
            "minipass-pipeline": "^1.2.4",
            "negotiator": "^0.6.2",
            "promise-retry": "^2.0.1",
            "socks-proxy-agent": "^6.0.0",
            "ssri": "^8.0.0"
         },
         "engines": {
            "node": ">= 10"
         }
      },
      "node_modules/minimatch": {
         "version": "3.1.2",
         "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
         "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
         "dependencies": {
            "brace-expansion": "^1.1.7"
         },
         "engines": {
            "node": "*"
         }
      },
      "node_modules/minipass": {
         "version": "3.3.6",
         "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
         "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
         "dependencies": {
            "yallist": "^4.0.0"
         },
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/minipass-collect": {
         "version": "1.0.2",
         "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
         "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
         "optional": true,
         "dependencies": {
            "minipass": "^3.0.0"
         },
         "engines": {
            "node": ">= 8"
         }
      },
      "node_modules/minipass-fetch": {
         "version": "1.4.1",
         "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
         "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
         "optional": true,
         "dependencies": {
            "minipass": "^3.1.0",
            "minipass-sized": "^1.0.3",
            "minizlib": "^2.0.0"
         },
         "engines": {
            "node": ">=8"
         },
         "optionalDependencies": {
            "encoding": "^0.1.12"
         }
      },
      "node_modules/minipass-flush": {
         "version": "1.0.5",
         "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
         "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
         "optional": true,
         "dependencies": {
            "minipass": "^3.0.0"
         },
         "engines": {
            "node": ">= 8"
         }
      },
      "node_modules/minipass-pipeline": {
         "version": "1.2.4",
         "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
         "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
         "optional": true,
         "dependencies": {
            "minipass": "^3.0.0"
         },
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/minipass-sized": {
         "version": "1.0.3",
         "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
         "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
         "optional": true,
         "dependencies": {
            "minipass": "^3.0.0"
         },
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/minizlib": {
         "version": "2.1.2",
         "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
         "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
         "dependencies": {
            "minipass": "^3.0.0",
            "yallist": "^4.0.0"
         },
         "engines": {
            "node": ">= 8"
         }
      },
      "node_modules/mkdirp": {
         "version": "1.0.4",
         "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
         "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
         "bin": {
            "mkdirp": "bin/cmd.js"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/ms": {
         "version": "2.1.2",
         "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
         "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
      },
      "node_modules/mz": {
         "version": "2.7.0",
         "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
         "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
         "dependencies": {
            "any-promise": "^1.0.0",
            "object-assign": "^4.0.1",
            "thenify-all": "^1.0.0"
         }
      },
      "node_modules/negotiator": {
         "version": "0.6.3",
         "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
         "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
         "optional": true,
         "engines": {
            "node": ">= 0.6"
         }
      },
      "node_modules/node-addon-api": {
         "version": "4.3.0",
         "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz",
         "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ=="
      },
      "node_modules/node-fetch": {
         "version": "2.6.9",
         "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz",
         "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==",
         "dependencies": {
            "whatwg-url": "^5.0.0"
         },
         "engines": {
            "node": "4.x || >=6.0.0"
         },
         "peerDependencies": {
            "encoding": "^0.1.0"
         },
         "peerDependenciesMeta": {
            "encoding": {
               "optional": true
            }
         }
      },
      "node_modules/node-gyp": {
         "version": "8.4.1",
         "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz",
         "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==",
         "optional": true,
         "dependencies": {
            "env-paths": "^2.2.0",
            "glob": "^7.1.4",
            "graceful-fs": "^4.2.6",
            "make-fetch-happen": "^9.1.0",
            "nopt": "^5.0.0",
            "npmlog": "^6.0.0",
            "rimraf": "^3.0.2",
            "semver": "^7.3.5",
            "tar": "^6.1.2",
            "which": "^2.0.2"
         },
         "bin": {
            "node-gyp": "bin/node-gyp.js"
         },
         "engines": {
            "node": ">= 10.12.0"
         }
      },
      "node_modules/node-gyp/node_modules/are-we-there-yet": {
         "version": "3.0.1",
         "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
         "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
         "optional": true,
         "dependencies": {
            "delegates": "^1.0.0",
            "readable-stream": "^3.6.0"
         },
         "engines": {
            "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
         }
      },
      "node_modules/node-gyp/node_modules/gauge": {
         "version": "4.0.4",
         "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
         "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
         "optional": true,
         "dependencies": {
            "aproba": "^1.0.3 || ^2.0.0",
            "color-support": "^1.1.3",
            "console-control-strings": "^1.1.0",
            "has-unicode": "^2.0.1",
            "signal-exit": "^3.0.7",
            "string-width": "^4.2.3",
            "strip-ansi": "^6.0.1",
            "wide-align": "^1.1.5"
         },
         "engines": {
            "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
         }
      },
      "node_modules/node-gyp/node_modules/npmlog": {
         "version": "6.0.2",
         "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
         "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
         "optional": true,
         "dependencies": {
            "are-we-there-yet": "^3.0.0",
            "console-control-strings": "^1.1.0",
            "gauge": "^4.0.3",
            "set-blocking": "^2.0.0"
         },
         "engines": {
            "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
         }
      },
      "node_modules/nopt": {
         "version": "5.0.0",
         "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
         "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
         "dependencies": {
            "abbrev": "1"
         },
         "bin": {
            "nopt": "bin/nopt.js"
         },
         "engines": {
            "node": ">=6"
         }
      },
      "node_modules/npmlog": {
         "version": "5.0.1",
         "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
         "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
         "dependencies": {
            "are-we-there-yet": "^2.0.0",
            "console-control-strings": "^1.1.0",
            "gauge": "^3.0.0",
            "set-blocking": "^2.0.0"
         }
      },
      "node_modules/object-assign": {
         "version": "4.1.1",
         "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
         "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
         "engines": {
            "node": ">=0.10.0"
         }
      },
      "node_modules/once": {
         "version": "1.4.0",
         "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
         "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
         "dependencies": {
            "wrappy": "1"
         }
      },
      "node_modules/p-map": {
         "version": "4.0.0",
         "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
         "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
         "optional": true,
         "dependencies": {
            "aggregate-error": "^3.0.0"
         },
         "engines": {
            "node": ">=10"
         },
         "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
         }
      },
      "node_modules/parse5": {
         "version": "5.1.1",
         "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
         "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug=="
      },
      "node_modules/parse5-htmlparser2-tree-adapter": {
         "version": "6.0.1",
         "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz",
         "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==",
         "dependencies": {
            "parse5": "^6.0.1"
         }
      },
      "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": {
         "version": "6.0.1",
         "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
         "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="
      },
      "node_modules/path-is-absolute": {
         "version": "1.0.1",
         "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
         "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
         "engines": {
            "node": ">=0.10.0"
         }
      },
      "node_modules/promise-inflight": {
         "version": "1.0.1",
         "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
         "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==",
         "optional": true
      },
      "node_modules/promise-retry": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
         "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
         "optional": true,
         "dependencies": {
            "err-code": "^2.0.2",
            "retry": "^0.12.0"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/readable-stream": {
         "version": "3.6.2",
         "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
         "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
         "dependencies": {
            "inherits": "^2.0.3",
            "string_decoder": "^1.1.1",
            "util-deprecate": "^1.0.1"
         },
         "engines": {
            "node": ">= 6"
         }
      },
      "node_modules/reflect-metadata": {
         "version": "0.1.13",
         "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz",
         "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg=="
      },
      "node_modules/require-directory": {
         "version": "2.1.1",
         "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
         "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
         "engines": {
            "node": ">=0.10.0"
         }
      },
      "node_modules/retry": {
         "version": "0.12.0",
         "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
         "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
         "optional": true,
         "engines": {
            "node": ">= 4"
         }
      },
      "node_modules/rimraf": {
         "version": "3.0.2",
         "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
         "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
         "dependencies": {
            "glob": "^7.1.3"
         },
         "bin": {
            "rimraf": "bin.js"
         },
         "funding": {
            "url": "https://github.com/sponsors/isaacs"
         }
      },
      "node_modules/safe-buffer": {
         "version": "5.2.1",
         "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
         "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
         "funding": [
            {
               "type": "github",
               "url": "https://github.com/sponsors/feross"
            },
            {
               "type": "patreon",
               "url": "https://www.patreon.com/feross"
            },
            {
               "type": "consulting",
               "url": "https://feross.org/support"
            }
         ]
      },
      "node_modules/safer-buffer": {
         "version": "2.1.2",
         "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
         "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
         "optional": true
      },
      "node_modules/semver": {
         "version": "7.5.0",
         "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
         "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
         "dependencies": {
            "lru-cache": "^6.0.0"
         },
         "bin": {
            "semver": "bin/semver.js"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/set-blocking": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
         "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
      },
      "node_modules/sha.js": {
         "version": "2.4.11",
         "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
         "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
         "dependencies": {
            "inherits": "^2.0.1",
            "safe-buffer": "^5.0.1"
         },
         "bin": {
            "sha.js": "bin.js"
         }
      },
      "node_modules/signal-exit": {
         "version": "3.0.7",
         "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
         "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
      },
      "node_modules/smart-buffer": {
         "version": "4.2.0",
         "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
         "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
         "optional": true,
         "engines": {
            "node": ">= 6.0.0",
            "npm": ">= 3.0.0"
         }
      },
      "node_modules/socks": {
         "version": "2.7.1",
         "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz",
         "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==",
         "optional": true,
         "dependencies": {
            "ip": "^2.0.0",
            "smart-buffer": "^4.2.0"
         },
         "engines": {
            "node": ">= 10.13.0",
            "npm": ">= 3.0.0"
         }
      },
      "node_modules/socks-proxy-agent": {
         "version": "6.2.1",
         "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz",
         "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==",
         "optional": true,
         "dependencies": {
            "agent-base": "^6.0.2",
            "debug": "^4.3.3",
            "socks": "^2.6.2"
         },
         "engines": {
            "node": ">= 10"
         }
      },
      "node_modules/sqlite3": {
         "version": "5.1.6",
         "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.6.tgz",
         "integrity": "sha512-olYkWoKFVNSSSQNvxVUfjiVbz3YtBwTJj+mfV5zpHmqW3sELx2Cf4QCdirMelhM5Zh+KDVaKgQHqCxrqiWHybw==",
         "hasInstallScript": true,
         "dependencies": {
            "@mapbox/node-pre-gyp": "^1.0.0",
            "node-addon-api": "^4.2.0",
            "tar": "^6.1.11"
         },
         "optionalDependencies": {
            "node-gyp": "8.x"
         },
         "peerDependencies": {
            "node-gyp": "8.x"
         },
         "peerDependenciesMeta": {
            "node-gyp": {
               "optional": true
            }
         }
      },
      "node_modules/ssri": {
         "version": "8.0.1",
         "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
         "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
         "optional": true,
         "dependencies": {
            "minipass": "^3.1.1"
         },
         "engines": {
            "node": ">= 8"
         }
      },
      "node_modules/string_decoder": {
         "version": "1.3.0",
         "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
         "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
         "dependencies": {
            "safe-buffer": "~5.2.0"
         }
      },
      "node_modules/string-width": {
         "version": "4.2.3",
         "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
         "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
         "dependencies": {
            "emoji-regex": "^8.0.0",
            "is-fullwidth-code-point": "^3.0.0",
            "strip-ansi": "^6.0.1"
         },
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/strip-ansi": {
         "version": "6.0.1",
         "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
         "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
         "dependencies": {
            "ansi-regex": "^5.0.1"
         },
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/supports-color": {
         "version": "7.2.0",
         "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
         "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
         "dependencies": {
            "has-flag": "^4.0.0"
         },
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/tar": {
         "version": "6.1.13",
         "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz",
         "integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==",
         "dependencies": {
            "chownr": "^2.0.0",
            "fs-minipass": "^2.0.0",
            "minipass": "^4.0.0",
            "minizlib": "^2.1.1",
            "mkdirp": "^1.0.3",
            "yallist": "^4.0.0"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/tar/node_modules/minipass": {
         "version": "4.2.8",
         "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz",
         "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==",
         "engines": {
            "node": ">=8"
         }
      },
      "node_modules/thenify": {
         "version": "3.3.1",
         "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
         "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
         "dependencies": {
            "any-promise": "^1.0.0"
         }
      },
      "node_modules/thenify-all": {
         "version": "1.6.0",
         "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
         "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
         "dependencies": {
            "thenify": ">= 3.1.0 < 4"
         },
         "engines": {
            "node": ">=0.8"
         }
      },
      "node_modules/tr46": {
         "version": "0.0.3",
         "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
         "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
      },
      "node_modules/ts-node": {
         "version": "10.7.0",
         "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.7.0.tgz",
         "integrity": "sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==",
         "devOptional": true,
         "dependencies": {
            "@cspotcode/source-map-support": "0.7.0",
            "@tsconfig/node10": "^1.0.7",
            "@tsconfig/node12": "^1.0.7",
            "@tsconfig/node14": "^1.0.0",
            "@tsconfig/node16": "^1.0.2",
            "acorn": "^8.4.1",
            "acorn-walk": "^8.1.1",
            "arg": "^4.1.0",
            "create-require": "^1.1.0",
            "diff": "^4.0.1",
            "make-error": "^1.1.1",
            "v8-compile-cache-lib": "^3.0.0",
            "yn": "3.1.1"
         },
         "bin": {
            "ts-node": "dist/bin.js",
            "ts-node-cwd": "dist/bin-cwd.js",
            "ts-node-esm": "dist/bin-esm.js",
            "ts-node-script": "dist/bin-script.js",
            "ts-node-transpile-only": "dist/bin-transpile.js",
            "ts-script": "dist/bin-script-deprecated.js"
         },
         "peerDependencies": {
            "@swc/core": ">=1.2.50",
            "@swc/wasm": ">=1.2.50",
            "@types/node": "*",
            "typescript": ">=2.7"
         },
         "peerDependenciesMeta": {
            "@swc/core": {
               "optional": true
            },
            "@swc/wasm": {
               "optional": true
            }
         }
      },
      "node_modules/tslib": {
         "version": "2.5.0",
         "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
         "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="
      },
      "node_modules/typeorm": {
         "version": "0.3.15",
         "resolved": "https://registry.npmjs.org/typeorm/-/typeorm-0.3.15.tgz",
         "integrity": "sha512-R4JSw8QjDP1W+ypeRz/XrCXIqubrLSnNAzJAp9EQSQIPHTv+YmUHZis8g08lOwFpuhqL9m8jkPSz8GWEKlU/ow==",
         "dependencies": {
            "@sqltools/formatter": "^1.2.5",
            "app-root-path": "^3.1.0",
            "buffer": "^6.0.3",
            "chalk": "^4.1.2",
            "cli-highlight": "^2.1.11",
            "debug": "^4.3.4",
            "dotenv": "^16.0.3",
            "glob": "^8.1.0",
            "mkdirp": "^2.1.3",
            "reflect-metadata": "^0.1.13",
            "sha.js": "^2.4.11",
            "tslib": "^2.5.0",
            "uuid": "^9.0.0",
            "yargs": "^17.6.2"
         },
         "bin": {
            "typeorm": "cli.js",
            "typeorm-ts-node-commonjs": "cli-ts-node-commonjs.js",
            "typeorm-ts-node-esm": "cli-ts-node-esm.js"
         },
         "engines": {
            "node": ">= 12.9.0"
         },
         "funding": {
            "url": "https://opencollective.com/typeorm"
         },
         "peerDependencies": {
            "@google-cloud/spanner": "^5.18.0",
            "@sap/hana-client": "^2.12.25",
            "better-sqlite3": "^7.1.2 || ^8.0.0",
            "hdb-pool": "^0.1.6",
            "ioredis": "^5.0.4",
            "mongodb": "^5.2.0",
            "mssql": "^9.1.1",
            "mysql2": "^2.2.5 || ^3.0.1",
            "oracledb": "^5.1.0",
            "pg": "^8.5.1",
            "pg-native": "^3.0.0",
            "pg-query-stream": "^4.0.0",
            "redis": "^3.1.1 || ^4.0.0",
            "sql.js": "^1.4.0",
            "sqlite3": "^5.0.3",
            "ts-node": "^10.7.0",
            "typeorm-aurora-data-api-driver": "^2.0.0"
         },
         "peerDependenciesMeta": {
            "@google-cloud/spanner": {
               "optional": true
            },
            "@sap/hana-client": {
               "optional": true
            },
            "better-sqlite3": {
               "optional": true
            },
            "hdb-pool": {
               "optional": true
            },
            "ioredis": {
               "optional": true
            },
            "mongodb": {
               "optional": true
            },
            "mssql": {
               "optional": true
            },
            "mysql2": {
               "optional": true
            },
            "oracledb": {
               "optional": true
            },
            "pg": {
               "optional": true
            },
            "pg-native": {
               "optional": true
            },
            "pg-query-stream": {
               "optional": true
            },
            "redis": {
               "optional": true
            },
            "sql.js": {
               "optional": true
            },
            "sqlite3": {
               "optional": true
            },
            "ts-node": {
               "optional": true
            },
            "typeorm-aurora-data-api-driver": {
               "optional": true
            }
         }
      },
      "node_modules/typeorm/node_modules/brace-expansion": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
         "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
         "dependencies": {
            "balanced-match": "^1.0.0"
         }
      },
      "node_modules/typeorm/node_modules/glob": {
         "version": "8.1.0",
         "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
         "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
         "dependencies": {
            "fs.realpath": "^1.0.0",
            "inflight": "^1.0.4",
            "inherits": "2",
            "minimatch": "^5.0.1",
            "once": "^1.3.0"
         },
         "engines": {
            "node": ">=12"
         },
         "funding": {
            "url": "https://github.com/sponsors/isaacs"
         }
      },
      "node_modules/typeorm/node_modules/minimatch": {
         "version": "5.1.6",
         "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
         "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
         "dependencies": {
            "brace-expansion": "^2.0.1"
         },
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/typeorm/node_modules/mkdirp": {
         "version": "2.1.6",
         "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-2.1.6.tgz",
         "integrity": "sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A==",
         "bin": {
            "mkdirp": "dist/cjs/src/bin.js"
         },
         "engines": {
            "node": ">=10"
         },
         "funding": {
            "url": "https://github.com/sponsors/isaacs"
         }
      },
      "node_modules/typescript": {
         "version": "4.5.2",
         "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz",
         "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==",
         "devOptional": true,
         "bin": {
            "tsc": "bin/tsc",
            "tsserver": "bin/tsserver"
         },
         "engines": {
            "node": ">=4.2.0"
         }
      },
      "node_modules/unique-filename": {
         "version": "1.1.1",
         "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
         "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
         "optional": true,
         "dependencies": {
            "unique-slug": "^2.0.0"
         }
      },
      "node_modules/unique-slug": {
         "version": "2.0.2",
         "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
         "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
         "optional": true,
         "dependencies": {
            "imurmurhash": "^0.1.4"
         }
      },
      "node_modules/util-deprecate": {
         "version": "1.0.2",
         "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
         "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
      },
      "node_modules/uuid": {
         "version": "9.0.0",
         "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
         "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==",
         "bin": {
            "uuid": "dist/bin/uuid"
         }
      },
      "node_modules/v8-compile-cache-lib": {
         "version": "3.0.1",
         "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
         "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
         "devOptional": true
      },
      "node_modules/webidl-conversions": {
         "version": "3.0.1",
         "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
         "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
      },
      "node_modules/whatwg-url": {
         "version": "5.0.0",
         "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
         "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
         "dependencies": {
            "tr46": "~0.0.3",
            "webidl-conversions": "^3.0.0"
         }
      },
      "node_modules/which": {
         "version": "2.0.2",
         "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
         "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
         "optional": true,
         "dependencies": {
            "isexe": "^2.0.0"
         },
         "bin": {
            "node-which": "bin/node-which"
         },
         "engines": {
            "node": ">= 8"
         }
      },
      "node_modules/wide-align": {
         "version": "1.1.5",
         "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
         "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
         "dependencies": {
            "string-width": "^1.0.2 || 2 || 3 || 4"
         }
      },
      "node_modules/wrap-ansi": {
         "version": "7.0.0",
         "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
         "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
         "dependencies": {
            "ansi-styles": "^4.0.0",
            "string-width": "^4.1.0",
            "strip-ansi": "^6.0.0"
         },
         "engines": {
            "node": ">=10"
         },
         "funding": {
            "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
         }
      },
      "node_modules/wrappy": {
         "version": "1.0.2",
         "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
         "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
      },
      "node_modules/y18n": {
         "version": "5.0.8",
         "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
         "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
         "engines": {
            "node": ">=10"
         }
      },
      "node_modules/yallist": {
         "version": "4.0.0",
         "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
         "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
      },
      "node_modules/yargs": {
         "version": "17.7.1",
         "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz",
         "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==",
         "dependencies": {
            "cliui": "^8.0.1",
            "escalade": "^3.1.1",
            "get-caller-file": "^2.0.5",
            "require-directory": "^2.1.1",
            "string-width": "^4.2.3",
            "y18n": "^5.0.5",
            "yargs-parser": "^21.1.1"
         },
         "engines": {
            "node": ">=12"
         }
      },
      "node_modules/yargs-parser": {
         "version": "21.1.1",
         "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
         "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
         "engines": {
            "node": ">=12"
         }
      },
      "node_modules/yn": {
         "version": "3.1.1",
         "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
         "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
         "devOptional": true,
         "engines": {
            "node": ">=6"
         }
      }
   },
   "dependencies": {
      "@cspotcode/source-map-consumer": {
         "version": "0.8.0",
         "resolved": "https://registry.npmjs.org/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz",
         "integrity": "sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==",
         "devOptional": true
      },
      "@cspotcode/source-map-support": {
         "version": "0.7.0",
         "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz",
         "integrity": "sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==",
         "devOptional": true,
         "requires": {
            "@cspotcode/source-map-consumer": "0.8.0"
         }
      },
      "@gar/promisify": {
         "version": "1.1.3",
         "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
         "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
         "optional": true
      },
      "@mapbox/node-pre-gyp": {
         "version": "1.0.10",
         "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz",
         "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==",
         "requires": {
            "detect-libc": "^2.0.0",
            "https-proxy-agent": "^5.0.0",
            "make-dir": "^3.1.0",
            "node-fetch": "^2.6.7",
            "nopt": "^5.0.0",
            "npmlog": "^5.0.1",
            "rimraf": "^3.0.2",
            "semver": "^7.3.5",
            "tar": "^6.1.11"
         }
      },
      "@npmcli/fs": {
         "version": "1.1.1",
         "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz",
         "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
         "optional": true,
         "requires": {
            "@gar/promisify": "^1.0.1",
            "semver": "^7.3.5"
         }
      },
      "@npmcli/move-file": {
         "version": "1.1.2",
         "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
         "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
         "optional": true,
         "requires": {
            "mkdirp": "^1.0.4",
            "rimraf": "^3.0.2"
         }
      },
      "@sqltools/formatter": {
         "version": "1.2.5",
         "resolved": "https://registry.npmjs.org/@sqltools/formatter/-/formatter-1.2.5.tgz",
         "integrity": "sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw=="
      },
      "@tootallnate/once": {
         "version": "1.1.2",
         "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
         "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
         "optional": true
      },
      "@tsconfig/node10": {
         "version": "1.0.9",
         "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz",
         "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==",
         "devOptional": true
      },
      "@tsconfig/node12": {
         "version": "1.0.11",
         "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
         "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
         "devOptional": true
      },
      "@tsconfig/node14": {
         "version": "1.0.3",
         "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
         "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
         "devOptional": true
      },
      "@tsconfig/node16": {
         "version": "1.0.3",
         "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz",
         "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==",
         "devOptional": true
      },
      "@types/node": {
         "version": "16.18.24",
         "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.24.tgz",
         "integrity": "sha512-zvSN2Esek1aeLdKDYuntKAYjti9Z2oT4I8bfkLLhIxHlv3dwZ5vvATxOc31820iYm4hQRCwjUgDpwSMFjfTUnw==",
         "devOptional": true
      },
      "abbrev": {
         "version": "1.1.1",
         "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
         "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
      },
      "acorn": {
         "version": "8.8.2",
         "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
         "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
         "devOptional": true
      },
      "acorn-walk": {
         "version": "8.2.0",
         "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz",
         "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
         "devOptional": true
      },
      "agent-base": {
         "version": "6.0.2",
         "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
         "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
         "requires": {
            "debug": "4"
         }
      },
      "agentkeepalive": {
         "version": "4.3.0",
         "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz",
         "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==",
         "optional": true,
         "requires": {
            "debug": "^4.1.0",
            "depd": "^2.0.0",
            "humanize-ms": "^1.2.1"
         }
      },
      "aggregate-error": {
         "version": "3.1.0",
         "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
         "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
         "optional": true,
         "requires": {
            "clean-stack": "^2.0.0",
            "indent-string": "^4.0.0"
         }
      },
      "ansi-regex": {
         "version": "5.0.1",
         "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
         "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
      },
      "ansi-styles": {
         "version": "4.3.0",
         "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
         "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
         "requires": {
            "color-convert": "^2.0.1"
         }
      },
      "any-promise": {
         "version": "1.3.0",
         "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
         "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
      },
      "app-root-path": {
         "version": "3.1.0",
         "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.1.0.tgz",
         "integrity": "sha512-biN3PwB2gUtjaYy/isrU3aNWI5w+fAfvHkSvCKeQGxhmYpwKFUxudR3Yya+KqVRHBmEDYh+/lTozYCFbmzX4nA=="
      },
      "aproba": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
         "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
      },
      "are-we-there-yet": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
         "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
         "requires": {
            "delegates": "^1.0.0",
            "readable-stream": "^3.6.0"
         }
      },
      "arg": {
         "version": "4.1.3",
         "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
         "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
         "devOptional": true
      },
      "balanced-match": {
         "version": "1.0.2",
         "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
         "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
      },
      "base64-js": {
         "version": "1.5.1",
         "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
         "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
      },
      "brace-expansion": {
         "version": "1.1.11",
         "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
         "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
         "requires": {
            "balanced-match": "^1.0.0",
            "concat-map": "0.0.1"
         }
      },
      "buffer": {
         "version": "6.0.3",
         "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
         "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
         "requires": {
            "base64-js": "^1.3.1",
            "ieee754": "^1.2.1"
         }
      },
      "cacache": {
         "version": "15.3.0",
         "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
         "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
         "optional": true,
         "requires": {
            "@npmcli/fs": "^1.0.0",
            "@npmcli/move-file": "^1.0.1",
            "chownr": "^2.0.0",
            "fs-minipass": "^2.0.0",
            "glob": "^7.1.4",
            "infer-owner": "^1.0.4",
            "lru-cache": "^6.0.0",
            "minipass": "^3.1.1",
            "minipass-collect": "^1.0.2",
            "minipass-flush": "^1.0.5",
            "minipass-pipeline": "^1.2.2",
            "mkdirp": "^1.0.3",
            "p-map": "^4.0.0",
            "promise-inflight": "^1.0.1",
            "rimraf": "^3.0.2",
            "ssri": "^8.0.1",
            "tar": "^6.0.2",
            "unique-filename": "^1.1.1"
         }
      },
      "chalk": {
         "version": "4.1.2",
         "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
         "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
         "requires": {
            "ansi-styles": "^4.1.0",
            "supports-color": "^7.1.0"
         }
      },
      "chownr": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
         "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="
      },
      "clean-stack": {
         "version": "2.2.0",
         "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
         "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
         "optional": true
      },
      "cli-highlight": {
         "version": "2.1.11",
         "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz",
         "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==",
         "requires": {
            "chalk": "^4.0.0",
            "highlight.js": "^10.7.1",
            "mz": "^2.4.0",
            "parse5": "^5.1.1",
            "parse5-htmlparser2-tree-adapter": "^6.0.0",
            "yargs": "^16.0.0"
         },
         "dependencies": {
            "cliui": {
               "version": "7.0.4",
               "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
               "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
               "requires": {
                  "string-width": "^4.2.0",
                  "strip-ansi": "^6.0.0",
                  "wrap-ansi": "^7.0.0"
               }
            },
            "yargs": {
               "version": "16.2.0",
               "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
               "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
               "requires": {
                  "cliui": "^7.0.2",
                  "escalade": "^3.1.1",
                  "get-caller-file": "^2.0.5",
                  "require-directory": "^2.1.1",
                  "string-width": "^4.2.0",
                  "y18n": "^5.0.5",
                  "yargs-parser": "^20.2.2"
               }
            },
            "yargs-parser": {
               "version": "20.2.9",
               "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
               "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="
            }
         }
      },
      "cliui": {
         "version": "8.0.1",
         "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
         "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
         "requires": {
            "string-width": "^4.2.0",
            "strip-ansi": "^6.0.1",
            "wrap-ansi": "^7.0.0"
         }
      },
      "color-convert": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
         "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
         "requires": {
            "color-name": "~1.1.4"
         }
      },
      "color-name": {
         "version": "1.1.4",
         "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
         "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
      },
      "color-support": {
         "version": "1.1.3",
         "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
         "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="
      },
      "concat-map": {
         "version": "0.0.1",
         "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
         "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
      },
      "console-control-strings": {
         "version": "1.1.0",
         "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
         "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="
      },
      "create-require": {
         "version": "1.1.1",
         "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
         "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
         "devOptional": true
      },
      "debug": {
         "version": "4.3.4",
         "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
         "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
         "requires": {
            "ms": "2.1.2"
         }
      },
      "delegates": {
         "version": "1.0.0",
         "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
         "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="
      },
      "depd": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
         "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
         "optional": true
      },
      "detect-libc": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz",
         "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="
      },
      "diff": {
         "version": "4.0.2",
         "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
         "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
         "devOptional": true
      },
      "dotenv": {
         "version": "16.0.3",
         "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz",
         "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ=="
      },
      "emoji-regex": {
         "version": "8.0.0",
         "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
         "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
      },
      "encoding": {
         "version": "0.1.13",
         "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
         "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
         "optional": true,
         "requires": {
            "iconv-lite": "^0.6.2"
         }
      },
      "env-paths": {
         "version": "2.2.1",
         "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
         "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
         "optional": true
      },
      "err-code": {
         "version": "2.0.3",
         "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
         "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
         "optional": true
      },
      "escalade": {
         "version": "3.1.1",
         "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
         "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
      },
      "fs-minipass": {
         "version": "2.1.0",
         "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
         "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
         "requires": {
            "minipass": "^3.0.0"
         }
      },
      "fs.realpath": {
         "version": "1.0.0",
         "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
         "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
      },
      "gauge": {
         "version": "3.0.2",
         "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
         "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
         "requires": {
            "aproba": "^1.0.3 || ^2.0.0",
            "color-support": "^1.1.2",
            "console-control-strings": "^1.0.0",
            "has-unicode": "^2.0.1",
            "object-assign": "^4.1.1",
            "signal-exit": "^3.0.0",
            "string-width": "^4.2.3",
            "strip-ansi": "^6.0.1",
            "wide-align": "^1.1.2"
         }
      },
      "get-caller-file": {
         "version": "2.0.5",
         "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
         "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
      },
      "glob": {
         "version": "7.2.3",
         "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
         "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
         "requires": {
            "fs.realpath": "^1.0.0",
            "inflight": "^1.0.4",
            "inherits": "2",
            "minimatch": "^3.1.1",
            "once": "^1.3.0",
            "path-is-absolute": "^1.0.0"
         }
      },
      "graceful-fs": {
         "version": "4.2.11",
         "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
         "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
         "optional": true
      },
      "has-flag": {
         "version": "4.0.0",
         "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
         "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
      },
      "has-unicode": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
         "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
      },
      "highlight.js": {
         "version": "10.7.3",
         "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
         "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A=="
      },
      "http-cache-semantics": {
         "version": "4.1.1",
         "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
         "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==",
         "optional": true
      },
      "http-proxy-agent": {
         "version": "4.0.1",
         "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
         "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
         "optional": true,
         "requires": {
            "@tootallnate/once": "1",
            "agent-base": "6",
            "debug": "4"
         }
      },
      "https-proxy-agent": {
         "version": "5.0.1",
         "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
         "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
         "requires": {
            "agent-base": "6",
            "debug": "4"
         }
      },
      "humanize-ms": {
         "version": "1.2.1",
         "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
         "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
         "optional": true,
         "requires": {
            "ms": "^2.0.0"
         }
      },
      "iconv-lite": {
         "version": "0.6.3",
         "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
         "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
         "optional": true,
         "requires": {
            "safer-buffer": ">= 2.1.2 < 3.0.0"
         }
      },
      "ieee754": {
         "version": "1.2.1",
         "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
         "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
      },
      "imurmurhash": {
         "version": "0.1.4",
         "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
         "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
         "optional": true
      },
      "indent-string": {
         "version": "4.0.0",
         "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
         "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
         "optional": true
      },
      "infer-owner": {
         "version": "1.0.4",
         "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
         "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
         "optional": true
      },
      "inflight": {
         "version": "1.0.6",
         "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
         "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
         "requires": {
            "once": "^1.3.0",
            "wrappy": "1"
         }
      },
      "inherits": {
         "version": "2.0.4",
         "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
         "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
      },
      "ip": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
         "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==",
         "optional": true
      },
      "is-fullwidth-code-point": {
         "version": "3.0.0",
         "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
         "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
      },
      "is-lambda": {
         "version": "1.0.1",
         "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
         "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==",
         "optional": true
      },
      "isexe": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
         "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
         "optional": true
      },
      "lru-cache": {
         "version": "6.0.0",
         "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
         "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
         "requires": {
            "yallist": "^4.0.0"
         }
      },
      "make-dir": {
         "version": "3.1.0",
         "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
         "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
         "requires": {
            "semver": "^6.0.0"
         },
         "dependencies": {
            "semver": {
               "version": "6.3.0",
               "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
               "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
            }
         }
      },
      "make-error": {
         "version": "1.3.6",
         "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
         "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
         "devOptional": true
      },
      "make-fetch-happen": {
         "version": "9.1.0",
         "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz",
         "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==",
         "optional": true,
         "requires": {
            "agentkeepalive": "^4.1.3",
            "cacache": "^15.2.0",
            "http-cache-semantics": "^4.1.0",
            "http-proxy-agent": "^4.0.1",
            "https-proxy-agent": "^5.0.0",
            "is-lambda": "^1.0.1",
            "lru-cache": "^6.0.0",
            "minipass": "^3.1.3",
            "minipass-collect": "^1.0.2",
            "minipass-fetch": "^1.3.2",
            "minipass-flush": "^1.0.5",
            "minipass-pipeline": "^1.2.4",
            "negotiator": "^0.6.2",
            "promise-retry": "^2.0.1",
            "socks-proxy-agent": "^6.0.0",
            "ssri": "^8.0.0"
         }
      },
      "minimatch": {
         "version": "3.1.2",
         "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
         "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
         "requires": {
            "brace-expansion": "^1.1.7"
         }
      },
      "minipass": {
         "version": "3.3.6",
         "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
         "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
         "requires": {
            "yallist": "^4.0.0"
         }
      },
      "minipass-collect": {
         "version": "1.0.2",
         "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
         "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
         "optional": true,
         "requires": {
            "minipass": "^3.0.0"
         }
      },
      "minipass-fetch": {
         "version": "1.4.1",
         "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
         "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
         "optional": true,
         "requires": {
            "encoding": "^0.1.12",
            "minipass": "^3.1.0",
            "minipass-sized": "^1.0.3",
            "minizlib": "^2.0.0"
         }
      },
      "minipass-flush": {
         "version": "1.0.5",
         "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
         "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
         "optional": true,
         "requires": {
            "minipass": "^3.0.0"
         }
      },
      "minipass-pipeline": {
         "version": "1.2.4",
         "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
         "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
         "optional": true,
         "requires": {
            "minipass": "^3.0.0"
         }
      },
      "minipass-sized": {
         "version": "1.0.3",
         "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
         "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
         "optional": true,
         "requires": {
            "minipass": "^3.0.0"
         }
      },
      "minizlib": {
         "version": "2.1.2",
         "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
         "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
         "requires": {
            "minipass": "^3.0.0",
            "yallist": "^4.0.0"
         }
      },
      "mkdirp": {
         "version": "1.0.4",
         "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
         "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
      },
      "ms": {
         "version": "2.1.2",
         "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
         "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
      },
      "mz": {
         "version": "2.7.0",
         "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
         "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
         "requires": {
            "any-promise": "^1.0.0",
            "object-assign": "^4.0.1",
            "thenify-all": "^1.0.0"
         }
      },
      "negotiator": {
         "version": "0.6.3",
         "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
         "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
         "optional": true
      },
      "node-addon-api": {
         "version": "4.3.0",
         "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz",
         "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ=="
      },
      "node-fetch": {
         "version": "2.6.9",
         "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz",
         "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==",
         "requires": {
            "whatwg-url": "^5.0.0"
         }
      },
      "node-gyp": {
         "version": "8.4.1",
         "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz",
         "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==",
         "optional": true,
         "requires": {
            "env-paths": "^2.2.0",
            "glob": "^7.1.4",
            "graceful-fs": "^4.2.6",
            "make-fetch-happen": "^9.1.0",
            "nopt": "^5.0.0",
            "npmlog": "^6.0.0",
            "rimraf": "^3.0.2",
            "semver": "^7.3.5",
            "tar": "^6.1.2",
            "which": "^2.0.2"
         },
         "dependencies": {
            "are-we-there-yet": {
               "version": "3.0.1",
               "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
               "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
               "optional": true,
               "requires": {
                  "delegates": "^1.0.0",
                  "readable-stream": "^3.6.0"
               }
            },
            "gauge": {
               "version": "4.0.4",
               "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
               "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
               "optional": true,
               "requires": {
                  "aproba": "^1.0.3 || ^2.0.0",
                  "color-support": "^1.1.3",
                  "console-control-strings": "^1.1.0",
                  "has-unicode": "^2.0.1",
                  "signal-exit": "^3.0.7",
                  "string-width": "^4.2.3",
                  "strip-ansi": "^6.0.1",
                  "wide-align": "^1.1.5"
               }
            },
            "npmlog": {
               "version": "6.0.2",
               "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
               "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
               "optional": true,
               "requires": {
                  "are-we-there-yet": "^3.0.0",
                  "console-control-strings": "^1.1.0",
                  "gauge": "^4.0.3",
                  "set-blocking": "^2.0.0"
               }
            }
         }
      },
      "nopt": {
         "version": "5.0.0",
         "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
         "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
         "requires": {
            "abbrev": "1"
         }
      },
      "npmlog": {
         "version": "5.0.1",
         "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
         "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
         "requires": {
            "are-we-there-yet": "^2.0.0",
            "console-control-strings": "^1.1.0",
            "gauge": "^3.0.0",
            "set-blocking": "^2.0.0"
         }
      },
      "object-assign": {
         "version": "4.1.1",
         "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
         "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
      },
      "once": {
         "version": "1.4.0",
         "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
         "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
         "requires": {
            "wrappy": "1"
         }
      },
      "p-map": {
         "version": "4.0.0",
         "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
         "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
         "optional": true,
         "requires": {
            "aggregate-error": "^3.0.0"
         }
      },
      "parse5": {
         "version": "5.1.1",
         "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
         "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug=="
      },
      "parse5-htmlparser2-tree-adapter": {
         "version": "6.0.1",
         "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz",
         "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==",
         "requires": {
            "parse5": "^6.0.1"
         },
         "dependencies": {
            "parse5": {
               "version": "6.0.1",
               "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
               "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="
            }
         }
      },
      "path-is-absolute": {
         "version": "1.0.1",
         "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
         "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
      },
      "promise-inflight": {
         "version": "1.0.1",
         "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
         "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==",
         "optional": true
      },
      "promise-retry": {
         "version": "2.0.1",
         "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
         "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
         "optional": true,
         "requires": {
            "err-code": "^2.0.2",
            "retry": "^0.12.0"
         }
      },
      "readable-stream": {
         "version": "3.6.2",
         "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
         "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
         "requires": {
            "inherits": "^2.0.3",
            "string_decoder": "^1.1.1",
            "util-deprecate": "^1.0.1"
         }
      },
      "reflect-metadata": {
         "version": "0.1.13",
         "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz",
         "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg=="
      },
      "require-directory": {
         "version": "2.1.1",
         "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
         "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
      },
      "retry": {
         "version": "0.12.0",
         "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
         "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
         "optional": true
      },
      "rimraf": {
         "version": "3.0.2",
         "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
         "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
         "requires": {
            "glob": "^7.1.3"
         }
      },
      "safe-buffer": {
         "version": "5.2.1",
         "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
         "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
      },
      "safer-buffer": {
         "version": "2.1.2",
         "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
         "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
         "optional": true
      },
      "semver": {
         "version": "7.5.0",
         "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
         "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
         "requires": {
            "lru-cache": "^6.0.0"
         }
      },
      "set-blocking": {
         "version": "2.0.0",
         "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
         "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
      },
      "sha.js": {
         "version": "2.4.11",
         "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
         "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
         "requires": {
            "inherits": "^2.0.1",
            "safe-buffer": "^5.0.1"
         }
      },
      "signal-exit": {
         "version": "3.0.7",
         "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
         "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
      },
      "smart-buffer": {
         "version": "4.2.0",
         "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
         "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
         "optional": true
      },
      "socks": {
         "version": "2.7.1",
         "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz",
         "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==",
         "optional": true,
         "requires": {
            "ip": "^2.0.0",
            "smart-buffer": "^4.2.0"
         }
      },
      "socks-proxy-agent": {
         "version": "6.2.1",
         "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz",
         "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==",
         "optional": true,
         "requires": {
            "agent-base": "^6.0.2",
            "debug": "^4.3.3",
            "socks": "^2.6.2"
         }
      },
      "sqlite3": {
         "version": "5.1.6",
         "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.6.tgz",
         "integrity": "sha512-olYkWoKFVNSSSQNvxVUfjiVbz3YtBwTJj+mfV5zpHmqW3sELx2Cf4QCdirMelhM5Zh+KDVaKgQHqCxrqiWHybw==",
         "requires": {
            "@mapbox/node-pre-gyp": "^1.0.0",
            "node-addon-api": "^4.2.0",
            "node-gyp": "8.x",
            "tar": "^6.1.11"
         }
      },
      "ssri": {
         "version": "8.0.1",
         "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
         "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
         "optional": true,
         "requires": {
            "minipass": "^3.1.1"
         }
      },
      "string_decoder": {
         "version": "1.3.0",
         "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
         "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
         "requires": {
            "safe-buffer": "~5.2.0"
         }
      },
      "string-width": {
         "version": "4.2.3",
         "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
         "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
         "requires": {
            "emoji-regex": "^8.0.0",
            "is-fullwidth-code-point": "^3.0.0",
            "strip-ansi": "^6.0.1"
         }
      },
      "strip-ansi": {
         "version": "6.0.1",
         "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
         "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
         "requires": {
            "ansi-regex": "^5.0.1"
         }
      },
      "supports-color": {
         "version": "7.2.0",
         "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
         "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
         "requires": {
            "has-flag": "^4.0.0"
         }
      },
      "tar": {
         "version": "6.1.13",
         "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz",
         "integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==",
         "requires": {
            "chownr": "^2.0.0",
            "fs-minipass": "^2.0.0",
            "minipass": "^4.0.0",
            "minizlib": "^2.1.1",
            "mkdirp": "^1.0.3",
            "yallist": "^4.0.0"
         },
         "dependencies": {
            "minipass": {
               "version": "4.2.8",
               "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz",
               "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ=="
            }
         }
      },
      "thenify": {
         "version": "3.3.1",
         "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
         "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
         "requires": {
            "any-promise": "^1.0.0"
         }
      },
      "thenify-all": {
         "version": "1.6.0",
         "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
         "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
         "requires": {
            "thenify": ">= 3.1.0 < 4"
         }
      },
      "tr46": {
         "version": "0.0.3",
         "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
         "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
      },
      "ts-node": {
         "version": "10.7.0",
         "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.7.0.tgz",
         "integrity": "sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==",
         "devOptional": true,
         "requires": {
            "@cspotcode/source-map-support": "0.7.0",
            "@tsconfig/node10": "^1.0.7",
            "@tsconfig/node12": "^1.0.7",
            "@tsconfig/node14": "^1.0.0",
            "@tsconfig/node16": "^1.0.2",
            "acorn": "^8.4.1",
            "acorn-walk": "^8.1.1",
            "arg": "^4.1.0",
            "create-require": "^1.1.0",
            "diff": "^4.0.1",
            "make-error": "^1.1.1",
            "v8-compile-cache-lib": "^3.0.0",
            "yn": "3.1.1"
         }
      },
      "tslib": {
         "version": "2.5.0",
         "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
         "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="
      },
      "typeorm": {
         "version": "0.3.15",
         "resolved": "https://registry.npmjs.org/typeorm/-/typeorm-0.3.15.tgz",
         "integrity": "sha512-R4JSw8QjDP1W+ypeRz/XrCXIqubrLSnNAzJAp9EQSQIPHTv+YmUHZis8g08lOwFpuhqL9m8jkPSz8GWEKlU/ow==",
         "requires": {
            "@sqltools/formatter": "^1.2.5",
            "app-root-path": "^3.1.0",
            "buffer": "^6.0.3",
            "chalk": "^4.1.2",
            "cli-highlight": "^2.1.11",
            "debug": "^4.3.4",
            "dotenv": "^16.0.3",
            "glob": "^8.1.0",
            "mkdirp": "^2.1.3",
            "reflect-metadata": "^0.1.13",
            "sha.js": "^2.4.11",
            "tslib": "^2.5.0",
            "uuid": "^9.0.0",
            "yargs": "^17.6.2"
         },
         "dependencies": {
            "brace-expansion": {
               "version": "2.0.1",
               "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
               "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
               "requires": {
                  "balanced-match": "^1.0.0"
               }
            },
            "glob": {
               "version": "8.1.0",
               "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
               "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
               "requires": {
                  "fs.realpath": "^1.0.0",
                  "inflight": "^1.0.4",
                  "inherits": "2",
                  "minimatch": "^5.0.1",
                  "once": "^1.3.0"
               }
            },
            "minimatch": {
               "version": "5.1.6",
               "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
               "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
               "requires": {
                  "brace-expansion": "^2.0.1"
               }
            },
            "mkdirp": {
               "version": "2.1.6",
               "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-2.1.6.tgz",
               "integrity": "sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A=="
            }
         }
      },
      "typescript": {
         "version": "4.5.2",
         "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz",
         "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==",
         "devOptional": true
      },
      "unique-filename": {
         "version": "1.1.1",
         "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
         "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
         "optional": true,
         "requires": {
            "unique-slug": "^2.0.0"
         }
      },
      "unique-slug": {
         "version": "2.0.2",
         "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
         "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
         "optional": true,
         "requires": {
            "imurmurhash": "^0.1.4"
         }
      },
      "util-deprecate": {
         "version": "1.0.2",
         "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
         "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
      },
      "uuid": {
         "version": "9.0.0",
         "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
         "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg=="
      },
      "v8-compile-cache-lib": {
         "version": "3.0.1",
         "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
         "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
         "devOptional": true
      },
      "webidl-conversions": {
         "version": "3.0.1",
         "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
         "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
      },
      "whatwg-url": {
         "version": "5.0.0",
         "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
         "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
         "requires": {
            "tr46": "~0.0.3",
            "webidl-conversions": "^3.0.0"
         }
      },
      "which": {
         "version": "2.0.2",
         "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
         "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
         "optional": true,
         "requires": {
            "isexe": "^2.0.0"
         }
      },
      "wide-align": {
         "version": "1.1.5",
         "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
         "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
         "requires": {
            "string-width": "^1.0.2 || 2 || 3 || 4"
         }
      },
      "wrap-ansi": {
         "version": "7.0.0",
         "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
         "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
         "requires": {
            "ansi-styles": "^4.0.0",
            "string-width": "^4.1.0",
            "strip-ansi": "^6.0.0"
         }
      },
      "wrappy": {
         "version": "1.0.2",
         "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
         "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
      },
      "y18n": {
         "version": "5.0.8",
         "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
         "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
      },
      "yallist": {
         "version": "4.0.0",
         "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
         "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
      },
      "yargs": {
         "version": "17.7.1",
         "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz",
         "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==",
         "requires": {
            "cliui": "^8.0.1",
            "escalade": "^3.1.1",
            "get-caller-file": "^2.0.5",
            "require-directory": "^2.1.1",
            "string-width": "^4.2.3",
            "y18n": "^5.0.5",
            "yargs-parser": "^21.1.1"
         }
      },
      "yargs-parser": {
         "version": "21.1.1",
         "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
         "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="
      },
      "yn": {
         "version": "3.1.1",
         "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
         "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
         "devOptional": true
      }
   }
}