-
Notifications
You must be signed in to change notification settings - Fork 10
/
package-lock.json
11798 lines (11798 loc) · 416 KB
/
package-lock.json
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
{
"name": "quark-design-docs",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ampproject/remapping": {
"version": "2.2.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@ampproject%2fremapping/-/remapping-2.2.0.tgz",
"integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
"dev": true,
"requires": {
"@jridgewell/gen-mapping": "^0.1.0",
"@jridgewell/trace-mapping": "^0.3.9"
}
},
"@antfu/utils": {
"version": "0.5.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@antfu%2futils/-/utils-0.5.2.tgz",
"integrity": "sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==",
"dev": true
},
"@babel/code-frame": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fcode-frame/-/code-frame-7.18.6.tgz",
"integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
"dev": true,
"requires": {
"@babel/highlight": "^7.18.6"
}
},
"@babel/compat-data": {
"version": "7.18.8",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fcompat-data/-/compat-data-7.18.8.tgz",
"integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==",
"dev": true
},
"@babel/core": {
"version": "7.18.10",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fcore/-/core-7.18.10.tgz",
"integrity": "sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==",
"dev": true,
"requires": {
"@ampproject/remapping": "^2.1.0",
"@babel/code-frame": "^7.18.6",
"@babel/generator": "^7.18.10",
"@babel/helper-compilation-targets": "^7.18.9",
"@babel/helper-module-transforms": "^7.18.9",
"@babel/helpers": "^7.18.9",
"@babel/parser": "^7.18.10",
"@babel/template": "^7.18.10",
"@babel/traverse": "^7.18.10",
"@babel/types": "^7.18.10",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.1",
"semver": "^6.3.0"
},
"dependencies": {
"semver": {
"version": "6.3.0",
"resolved": "http://nodepackages.hellobike.cn:4873/semver/-/semver-6.3.0.tgz",
"integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=",
"dev": true
}
}
},
"@babel/generator": {
"version": "7.18.12",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fgenerator/-/generator-7.18.12.tgz",
"integrity": "sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==",
"dev": true,
"requires": {
"@babel/types": "^7.18.10",
"@jridgewell/gen-mapping": "^0.3.2",
"jsesc": "^2.5.1"
},
"dependencies": {
"@jridgewell/gen-mapping": {
"version": "0.3.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@jridgewell%2fgen-mapping/-/gen-mapping-0.3.2.tgz",
"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
"dev": true,
"requires": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
}
}
}
},
"@babel/helper-compilation-targets": {
"version": "7.18.9",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz",
"integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==",
"dev": true,
"requires": {
"@babel/compat-data": "^7.18.8",
"@babel/helper-validator-option": "^7.18.6",
"browserslist": "^4.20.2",
"semver": "^6.3.0"
},
"dependencies": {
"semver": {
"version": "6.3.0",
"resolved": "http://nodepackages.hellobike.cn:4873/semver/-/semver-6.3.0.tgz",
"integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=",
"dev": true
}
}
},
"@babel/helper-environment-visitor": {
"version": "7.18.9",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
"integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==",
"dev": true
},
"@babel/helper-function-name": {
"version": "7.18.9",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-function-name/-/helper-function-name-7.18.9.tgz",
"integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==",
"dev": true,
"requires": {
"@babel/template": "^7.18.6",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-hoist-variables": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
"integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
"dev": true,
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-module-imports": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-module-imports/-/helper-module-imports-7.18.6.tgz",
"integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
"dev": true,
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-module-transforms": {
"version": "7.18.9",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-module-transforms/-/helper-module-transforms-7.18.9.tgz",
"integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==",
"dev": true,
"requires": {
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-module-imports": "^7.18.6",
"@babel/helper-simple-access": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
"@babel/helper-validator-identifier": "^7.18.6",
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-plugin-utils": {
"version": "7.18.9",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz",
"integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==",
"dev": true
},
"@babel/helper-simple-access": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-simple-access/-/helper-simple-access-7.18.6.tgz",
"integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==",
"dev": true,
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
"integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
"dev": true,
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-string-parser": {
"version": "7.18.10",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-string-parser/-/helper-string-parser-7.18.10.tgz",
"integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==",
"dev": true
},
"@babel/helper-validator-identifier": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
"integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==",
"dev": true
},
"@babel/helper-validator-option": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelper-validator-option/-/helper-validator-option-7.18.6.tgz",
"integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==",
"dev": true
},
"@babel/helpers": {
"version": "7.18.9",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhelpers/-/helpers-7.18.9.tgz",
"integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==",
"dev": true,
"requires": {
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/highlight": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fhighlight/-/highlight-7.18.6.tgz",
"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "http://nodepackages.hellobike.cn:4873/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "http://nodepackages.hellobike.cn:4873/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "http://nodepackages.hellobike.cn:4873/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=",
"dev": true,
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "http://nodepackages.hellobike.cn:4873/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"dev": true
},
"has-flag": {
"version": "3.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"dev": true
},
"supports-color": {
"version": "5.5.0",
"resolved": "http://nodepackages.hellobike.cn:4873/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=",
"dev": true,
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@babel/parser": {
"version": "7.18.11",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fparser/-/parser-7.18.11.tgz",
"integrity": "sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==",
"dev": true
},
"@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
"integrity": "sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-bigint": {
"version": "7.8.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
"integrity": "sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-class-properties": {
"version": "7.12.13",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
"integrity": "sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.12.13"
}
},
"@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
"integrity": "sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-syntax-json-strings": {
"version": "7.8.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
"integrity": "sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-logical-assignment-operators": {
"version": "7.10.4",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
"integrity": "sha1-ypHvRjA1MESLkGZSusLp/plB9pk=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-syntax-nullish-coalescing-operator": {
"version": "7.8.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
"integrity": "sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-numeric-separator": {
"version": "7.10.4",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
"integrity": "sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-syntax-object-rest-spread": {
"version": "7.8.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
"integrity": "sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-optional-catch-binding": {
"version": "7.8.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
"integrity": "sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-optional-chaining": {
"version": "7.8.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
"integrity": "sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-top-level-await": {
"version": "7.14.5",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
"integrity": "sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.14.5"
}
},
"@babel/plugin-transform-modules-commonjs": {
"version": "7.18.6",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fplugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz",
"integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==",
"dev": true,
"requires": {
"@babel/helper-module-transforms": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6",
"@babel/helper-simple-access": "^7.18.6",
"babel-plugin-dynamic-import-node": "^2.3.3"
}
},
"@babel/runtime": {
"version": "7.18.9",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fruntime/-/runtime-7.18.9.tgz",
"integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==",
"dev": true,
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
"version": "7.18.12",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2fstandalone/-/standalone-7.18.12.tgz",
"integrity": "sha512-wDh3K5IUJiSMAY0MLYBFoCaj2RCZwvDz5BHn2uHat9KOsGWEVDFgFQFIOO+81Js2phFKNppLC45iOCsZVfJniw==",
"dev": true
},
"@babel/template": {
"version": "7.18.10",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2ftemplate/-/template-7.18.10.tgz",
"integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.18.6",
"@babel/parser": "^7.18.10",
"@babel/types": "^7.18.10"
}
},
"@babel/traverse": {
"version": "7.18.11",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2ftraverse/-/traverse-7.18.11.tgz",
"integrity": "sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.18.6",
"@babel/generator": "^7.18.10",
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-function-name": "^7.18.9",
"@babel/helper-hoist-variables": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
"@babel/parser": "^7.18.11",
"@babel/types": "^7.18.10",
"debug": "^4.1.0",
"globals": "^11.1.0"
},
"dependencies": {
"globals": {
"version": "11.12.0",
"resolved": "http://nodepackages.hellobike.cn:4873/globals/-/globals-11.12.0.tgz",
"integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=",
"dev": true
}
}
},
"@babel/types": {
"version": "7.18.10",
"resolved": "http://nodepackages.hellobike.cn:4873/@babel%2ftypes/-/types-7.18.10.tgz",
"integrity": "sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==",
"dev": true,
"requires": {
"@babel/helper-string-parser": "^7.18.10",
"@babel/helper-validator-identifier": "^7.18.6",
"to-fast-properties": "^2.0.0"
}
},
"@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@bcoe%2fv8-coverage/-/v8-coverage-0.2.3.tgz",
"integrity": "sha1-daLotRy3WKdVPWgEpZMteqznXDk=",
"dev": true
},
"@better-scroll/core": {
"version": "2.4.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@better-scroll%2fcore/-/core-2.4.2.tgz",
"integrity": "sha1-5pRwAS15kjoYA0w+STFyD7sG6uU=",
"requires": {
"@better-scroll/shared-utils": "^2.4.2"
}
},
"@better-scroll/shared-utils": {
"version": "2.4.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@better-scroll%2fshared-utils/-/shared-utils-2.4.2.tgz",
"integrity": "sha1-GsXJdJVycJOiKoAJVgeV3V48GNo="
},
"@better-scroll/slide": {
"version": "2.4.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@better-scroll%2fslide/-/slide-2.4.2.tgz",
"integrity": "sha1-AkUorldRai7pm+o0Y4FYnk5qA5w=",
"requires": {
"@better-scroll/core": "^2.4.2"
}
},
"@better-scroll/wheel": {
"version": "2.4.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@better-scroll%2fwheel/-/wheel-2.4.2.tgz",
"integrity": "sha1-DddLA1meAagtVdKfbcrXqKUDvXU=",
"requires": {
"@better-scroll/core": "^2.4.2"
}
},
"@cnakazawa/watch": {
"version": "1.0.4",
"resolved": "http://nodepackages.hellobike.cn:4873/@cnakazawa%2fwatch/-/watch-1.0.4.tgz",
"integrity": "sha1-+GSuhQBND8q29QvpFBxNo2jRZWo=",
"dev": true,
"requires": {
"exec-sh": "^0.3.2",
"minimist": "^1.2.0"
}
},
"@codemirror/autocomplete": {
"version": "6.1.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2fautocomplete/-/autocomplete-6.1.0.tgz",
"integrity": "sha512-wtO4O5WDyXhhCd4q4utDIDZxnQfmJ++3dGBCG9LMtI79+92OcA1DVk/n7BEupKmjIr8AzvptDz7YQ9ud6OkU+A==",
"requires": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0"
}
},
"@codemirror/commands": {
"version": "6.1.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2fcommands/-/commands-6.1.0.tgz",
"integrity": "sha512-qCj2YqmbBjj0P1iumnlL5lBqZvJPzT+t2UvgjcaXErp5ZvMqFRVgQyrEfdXX6SX5UcvcHKBjXqno+MkUp0aYvQ==",
"requires": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0"
}
},
"@codemirror/lang-css": {
"version": "6.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2flang-css/-/lang-css-6.0.0.tgz",
"integrity": "sha512-jBqc+BTuwhNOTlrimFghLlSrN6iFuE44HULKWoR4qKYObhOIl9Lci1iYj6zMIte1XTQmZguNvjXMyr43LUKwSw==",
"requires": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@lezer/css": "^1.0.0"
}
},
"@codemirror/lang-html": {
"version": "6.1.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2flang-html/-/lang-html-6.1.0.tgz",
"integrity": "sha512-gA7NmJxqvnhwza05CvR7W/39Ap9r/4Vs9uiC0IeFYo1hSlJzc/8N6Evviz6vTW1x8SpHcRYyqKOf6rpl6LfWtg==",
"requires": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/lang-css": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/html": "^1.0.0"
}
},
"@codemirror/lang-javascript": {
"version": "6.0.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2flang-javascript/-/lang-javascript-6.0.2.tgz",
"integrity": "sha512-BZRJ9u/zl16hLkSpDAWm73mrfIR7HJrr0lvnhoSOCQVea5BglguWI/slxexhvUb0CB5cXgKWuo2bM+N9EhIaZw==",
"requires": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/javascript": "^1.0.0"
}
},
"@codemirror/language": {
"version": "6.2.1",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2flanguage/-/language-6.2.1.tgz",
"integrity": "sha512-MC3svxuvIj0MRpFlGHxLS6vPyIdbTr2KKPEW46kCoCXw2ktb4NTkpkPBI/lSP/FoNXLCBJ0mrnUi1OoZxtpW1Q==",
"requires": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0",
"style-mod": "^4.0.0"
}
},
"@codemirror/lint": {
"version": "6.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2flint/-/lint-6.0.0.tgz",
"integrity": "sha512-nUUXcJW1Xp54kNs+a1ToPLK8MadO0rMTnJB8Zk4Z8gBdrN0kqV7uvUraU/T2yqg+grDNR38Vmy/MrhQN/RgwiA==",
"requires": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"@codemirror/search": {
"version": "6.1.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2fsearch/-/search-6.1.0.tgz",
"integrity": "sha512-ye6m0jFHSgQ4qnfWVwArvm7XrCMNppMYnL5f4M0WdBScslnckomf5eVacYCw8P0UBWeq72lCSXA0/eo1piZxLA==",
"requires": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"@codemirror/state": {
"version": "6.1.1",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2fstate/-/state-6.1.1.tgz",
"integrity": "sha512-2s+aXsxmAwnR3Rd+JDHPG/1lw0YsA9PEwl7Re88gHJHGfxyfEzKBmsN4rr53RyPIR4lzbbhJX0DCq0WlqlBIRw=="
},
"@codemirror/theme-one-dark": {
"version": "6.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2ftheme-one-dark/-/theme-one-dark-6.0.0.tgz",
"integrity": "sha512-jTCfi1I8QT++3m21Ui6sU8qwu3F/hLv161KLxfvkV1cYWSBwyUanmQFs89ChobQjBHi2x7s2k71wF9WYvE8fdw==",
"requires": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/highlight": "^1.0.0"
}
},
"@codemirror/view": {
"version": "6.2.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@codemirror%2fview/-/view-6.2.0.tgz",
"integrity": "sha512-3emW1symh+GoteFMBPsltjmF790U/trouLILATh3JodbF/z98HvcQh2g3+H6dfNIHx16uNonsAF4mNzVr1TJNA==",
"requires": {
"@codemirror/state": "^6.0.0",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
},
"@commitlint/cli": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fcli/-/cli-10.0.0.tgz",
"integrity": "sha1-HJ+s62fnTtcdqgUoM77il+fnXZM=",
"dev": true,
"requires": {
"@babel/runtime": "^7.9.6",
"@commitlint/format": "^10.0.0",
"@commitlint/lint": "^10.0.0",
"@commitlint/load": "^10.0.0",
"@commitlint/read": "^10.0.0",
"chalk": "4.1.0",
"core-js": "^3.6.1",
"get-stdin": "8.0.0",
"lodash": "^4.17.19",
"resolve-from": "5.0.0",
"resolve-global": "1.0.0",
"yargs": "^15.1.0"
}
},
"@commitlint/config-conventional": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fconfig-conventional/-/config-conventional-10.0.0.tgz",
"integrity": "sha1-L1VGOUwuWArcI3cOLxzPz0iH7dw=",
"dev": true,
"requires": {
"conventional-changelog-conventionalcommits": "^4.3.1"
}
},
"@commitlint/ensure": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fensure/-/ensure-10.0.0.tgz",
"integrity": "sha1-snuOgoGEMen6AoDf3EKTGniR4XY=",
"dev": true,
"requires": {
"@commitlint/types": "^10.0.0",
"lodash": "^4.17.19"
}
},
"@commitlint/execute-rule": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fexecute-rule/-/execute-rule-10.0.0.tgz",
"integrity": "sha1-ABrT+D9LbNkbhbMQv9iWy1fT/A4=",
"dev": true
},
"@commitlint/format": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fformat/-/format-10.0.0.tgz",
"integrity": "sha1-tIveiXPR4ixe9EBCtjG61nyJUAs=",
"dev": true,
"requires": {
"@commitlint/types": "^10.0.0",
"chalk": "^4.0.0"
}
},
"@commitlint/is-ignored": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fis-ignored/-/is-ignored-10.0.0.tgz",
"integrity": "sha1-L8ZQ2sMKrZYfOxZRCqOFaJMEoK4=",
"dev": true,
"requires": {
"@commitlint/types": "^10.0.0",
"semver": "7.3.2"
}
},
"@commitlint/lint": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2flint/-/lint-10.0.0.tgz",
"integrity": "sha1-4jXVAuCfDHbt5Go/m/sCxKzveRE=",
"dev": true,
"requires": {
"@commitlint/is-ignored": "^10.0.0",
"@commitlint/parse": "^10.0.0",
"@commitlint/rules": "^10.0.0",
"@commitlint/types": "^10.0.0"
}
},
"@commitlint/load": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fload/-/load-10.0.0.tgz",
"integrity": "sha1-MpOJjXzJG+KGj9WBVPIOcn+EhvE=",
"dev": true,
"requires": {
"@commitlint/execute-rule": "^10.0.0",
"@commitlint/resolve-extends": "^10.0.0",
"@commitlint/types": "^10.0.0",
"chalk": "4.1.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0"
}
},
"@commitlint/message": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fmessage/-/message-10.0.0.tgz",
"integrity": "sha1-pB42veSZNRaTUXbMw1Ul7Nrzd/8=",
"dev": true
},
"@commitlint/parse": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fparse/-/parse-10.0.0.tgz",
"integrity": "sha1-otrYsRFEQmfe/V01wS7XoyYgF9Q=",
"dev": true,
"requires": {
"conventional-changelog-angular": "^5.0.0",
"conventional-commits-parser": "^3.0.0"
}
},
"@commitlint/read": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fread/-/read-10.0.0.tgz",
"integrity": "sha1-sycvapAsCXnwn4jLyiIYoDsiLZk=",
"dev": true,
"requires": {
"@commitlint/top-level": "^10.0.0",
"fs-extra": "^9.0.0",
"git-raw-commits": "^2.0.0"
}
},
"@commitlint/resolve-extends": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fresolve-extends/-/resolve-extends-10.0.0.tgz",
"integrity": "sha1-B2be99Z/+0RsaoFJtXrULNfNvFE=",
"dev": true,
"requires": {
"import-fresh": "^3.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"resolve-global": "^1.0.0"
}
},
"@commitlint/rules": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2frules/-/rules-10.0.0.tgz",
"integrity": "sha1-1v4qeIQX+GNvlfBYHtEleVLJH44=",
"dev": true,
"requires": {
"@commitlint/ensure": "^10.0.0",
"@commitlint/message": "^10.0.0",
"@commitlint/to-lines": "^10.0.0",
"@commitlint/types": "^10.0.0"
}
},
"@commitlint/to-lines": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2fto-lines/-/to-lines-10.0.0.tgz",
"integrity": "sha1-4N/d+Oai5rcknOmk9IkLIcAAbkw=",
"dev": true
},
"@commitlint/top-level": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2ftop-level/-/top-level-10.0.0.tgz",
"integrity": "sha1-Qt4BdK/oFSbxTBS6pkGoaoQWhik=",
"dev": true,
"requires": {
"find-up": "^5.0.0"
},
"dependencies": {
"find-up": {
"version": "5.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=",
"dev": true,
"requires": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
}
},
"locate-path": {
"version": "6.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha1-VTIeswn+u8WcSAHZMackUqaB0oY=",
"dev": true,
"requires": {
"p-locate": "^5.0.0"
}
},
"p-limit": {
"version": "3.1.0",
"resolved": "http://nodepackages.hellobike.cn:4873/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=",
"dev": true,
"requires": {
"yocto-queue": "^0.1.0"
}
},
"p-locate": {
"version": "5.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=",
"dev": true,
"requires": {
"p-limit": "^3.0.2"
}
}
}
},
"@commitlint/types": {
"version": "10.0.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@commitlint%2ftypes/-/types-10.0.0.tgz",
"integrity": "sha1-TAX1lWLmYgmm8GPqYLkxBjvBfAk=",
"dev": true
},
"@esbuild/linux-loong64": {
"version": "0.14.54",
"resolved": "http://nodepackages.hellobike.cn:4873/@esbuild%2flinux-loong64/-/linux-loong64-0.14.54.tgz",
"integrity": "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==",
"dev": true,
"optional": true
},
"@eslint/eslintrc": {
"version": "0.4.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@eslint%2feslintrc/-/eslintrc-0.4.3.tgz",
"integrity": "sha1-nkKYHvA1vrPdSa3ResuW6P9vOUw=",
"dev": true,
"requires": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^13.9.0",
"ignore": "^4.0.6",
"import-fresh": "^3.2.1",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"strip-json-comments": "^3.1.1"
},
"dependencies": {
"eslint-visitor-keys": {
"version": "1.3.0",
"resolved": "http://nodepackages.hellobike.cn:4873/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
"integrity": "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=",
"dev": true
},
"espree": {
"version": "7.3.1",
"resolved": "http://nodepackages.hellobike.cn:4873/espree/-/espree-7.3.1.tgz",
"integrity": "sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=",
"dev": true,
"requires": {
"acorn": "^7.4.0",
"acorn-jsx": "^5.3.1",
"eslint-visitor-keys": "^1.3.0"
}
},
"ignore": {
"version": "4.0.6",
"resolved": "http://nodepackages.hellobike.cn:4873/ignore/-/ignore-4.0.6.tgz",
"integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=",
"dev": true
}
}
},
"@humanwhocodes/config-array": {
"version": "0.5.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@humanwhocodes%2fconfig-array/-/config-array-0.5.0.tgz",
"integrity": "sha1-FAeWfUxu7Nc4j4Os8er00Mbljvk=",
"dev": true,
"requires": {
"@humanwhocodes/object-schema": "^1.2.0",
"debug": "^4.1.1",
"minimatch": "^3.0.4"
}
},
"@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "http://nodepackages.hellobike.cn:4873/@humanwhocodes%2fobject-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha1-tSBSnsIdjllFoYUd/Rwy6U45/0U=",
"dev": true
},
"@hutson/parse-repository-url": {
"version": "3.0.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@hutson%2fparse-repository-url/-/parse-repository-url-3.0.2.tgz",
"integrity": "sha1-mMI8lQo9m2yPDa7QbabDrwaYE0A=",
"dev": true
},
"@intlify/core-base": {
"version": "9.2.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@intlify%2fcore-base/-/core-base-9.2.2.tgz",
"integrity": "sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA==",
"requires": {
"@intlify/devtools-if": "9.2.2",
"@intlify/message-compiler": "9.2.2",
"@intlify/shared": "9.2.2",
"@intlify/vue-devtools": "9.2.2"
}
},
"@intlify/devtools-if": {
"version": "9.2.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@intlify%2fdevtools-if/-/devtools-if-9.2.2.tgz",
"integrity": "sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg==",
"requires": {
"@intlify/shared": "9.2.2"
}
},
"@intlify/message-compiler": {
"version": "9.2.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@intlify%2fmessage-compiler/-/message-compiler-9.2.2.tgz",
"integrity": "sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA==",
"requires": {
"@intlify/shared": "9.2.2",
"source-map": "0.6.1"
}
},
"@intlify/shared": {
"version": "9.2.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@intlify%2fshared/-/shared-9.2.2.tgz",
"integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q=="
},
"@intlify/vue-devtools": {
"version": "9.2.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@intlify%2fvue-devtools/-/vue-devtools-9.2.2.tgz",
"integrity": "sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg==",
"requires": {
"@intlify/core-base": "9.2.2",
"@intlify/shared": "9.2.2"
}
},
"@istanbuljs/load-nyc-config": {
"version": "1.1.0",
"resolved": "http://nodepackages.hellobike.cn:4873/@istanbuljs%2fload-nyc-config/-/load-nyc-config-1.1.0.tgz",
"integrity": "sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0=",
"dev": true,
"requires": {
"camelcase": "^5.3.1",
"find-up": "^4.1.0",
"get-package-type": "^0.1.0",
"js-yaml": "^3.13.1",
"resolve-from": "^5.0.0"
}
},
"@istanbuljs/schema": {
"version": "0.1.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@istanbuljs%2fschema/-/schema-0.1.3.tgz",
"integrity": "sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg=",
"dev": true
},
"@jest/console": {
"version": "26.6.2",
"resolved": "http://nodepackages.hellobike.cn:4873/@jest%2fconsole/-/console-26.6.2.tgz",
"integrity": "sha1-TgS8RkAUNYsDq0k3gF7jagrrmPI=",
"dev": true,
"requires": {
"@jest/types": "^26.6.2",
"@types/node": "*",
"chalk": "^4.0.0",
"jest-message-util": "^26.6.2",
"jest-util": "^26.6.2",
"slash": "^3.0.0"
}
},
"@jest/core": {
"version": "26.6.3",
"resolved": "http://nodepackages.hellobike.cn:4873/@jest%2fcore/-/core-26.6.3.tgz",
"integrity": "sha1-djn8s4M9dIpGVq2lS94ZMFHkX60=",
"dev": true,
"requires": {
"@jest/console": "^26.6.2",
"@jest/reporters": "^26.6.2",
"@jest/test-result": "^26.6.2",
"@jest/transform": "^26.6.2",
"@jest/types": "^26.6.2",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"exit": "^0.1.2",
"graceful-fs": "^4.2.4",
"jest-changed-files": "^26.6.2",
"jest-config": "^26.6.3",