-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage-lock.json
14892 lines (14892 loc) · 546 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": "cdc-indicator",
"version": "0.3.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/code-frame/-/code-frame-7.12.13.tgz",
"integrity": "sha1-3PyCa+72XnXFDiHTg319lXmN1lg=",
"dev": true,
"requires": {
"@babel/highlight": "^7.12.13"
}
},
"@babel/compat-data": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/compat-data/-/compat-data-7.13.12.tgz",
"integrity": "sha1-qKXMrBnCAPndSWJMrG4Z174SNqE=",
"dev": true
},
"@babel/core": {
"version": "7.13.10",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/core/-/core-7.13.10.tgz",
"integrity": "sha1-B94FC72Bk/zYo8J5GMCJBhOpRVk=",
"dev": true,
"requires": {
"@babel/code-frame": "^7.12.13",
"@babel/generator": "^7.13.9",
"@babel/helper-compilation-targets": "^7.13.10",
"@babel/helper-module-transforms": "^7.13.0",
"@babel/helpers": "^7.13.10",
"@babel/parser": "^7.13.10",
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.13.0",
"@babel/types": "^7.13.0",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.1.2",
"lodash": "^4.17.19",
"semver": "^6.3.0",
"source-map": "^0.5.0"
},
"dependencies": {
"debug": {
"version": "4.3.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/debug/-/debug-4.3.1.tgz",
"integrity": "sha1-8NIpxQXgxtjEmsVT0bE9wYP2su4=",
"dev": true,
"requires": {
"ms": "2.1.2"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ms/-/ms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
}
}
},
"@babel/generator": {
"version": "7.13.9",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/generator/-/generator-7.13.9.tgz",
"integrity": "sha1-Onqpb577jivkLTjYDizrTGTY3jk=",
"dev": true,
"requires": {
"@babel/types": "^7.13.0",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-compilation-targets": {
"version": "7.13.10",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz",
"integrity": "sha1-ExChZ4y4QnwHp1N1DaT4zkQr3Qw=",
"dev": true,
"requires": {
"@babel/compat-data": "^7.13.8",
"@babel/helper-validator-option": "^7.12.17",
"browserslist": "^4.14.5",
"semver": "^6.3.0"
}
},
"@babel/helper-create-class-features-plugin": {
"version": "7.13.11",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz",
"integrity": "sha1-MNMKAFvKLJU/VlP8JQkaSSF39PY=",
"dev": true,
"requires": {
"@babel/helper-function-name": "^7.12.13",
"@babel/helper-member-expression-to-functions": "^7.13.0",
"@babel/helper-optimise-call-expression": "^7.12.13",
"@babel/helper-replace-supers": "^7.13.0",
"@babel/helper-split-export-declaration": "^7.12.13"
}
},
"@babel/helper-function-name": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz",
"integrity": "sha1-k61lbbPDwiMlWf17LD29y+DrN3o=",
"dev": true,
"requires": {
"@babel/helper-get-function-arity": "^7.12.13",
"@babel/template": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"@babel/helper-get-function-arity": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz",
"integrity": "sha1-vGNFHUA6OzCCuX4diz/lvUCR5YM=",
"dev": true,
"requires": {
"@babel/types": "^7.12.13"
}
},
"@babel/helper-member-expression-to-functions": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz",
"integrity": "sha1-3+No8m1CagcpnY1lE4IXaCFubXI=",
"dev": true,
"requires": {
"@babel/types": "^7.13.12"
}
},
"@babel/helper-module-imports": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz",
"integrity": "sha1-xqNppvNiHLJdoBQHhoTakZa2GXc=",
"dev": true,
"requires": {
"@babel/types": "^7.13.12"
}
},
"@babel/helper-module-transforms": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-module-transforms/-/helper-module-transforms-7.13.12.tgz",
"integrity": "sha1-YA5YNQSQgo2CKCYxoUIiaOmCupY=",
"dev": true,
"requires": {
"@babel/helper-module-imports": "^7.13.12",
"@babel/helper-replace-supers": "^7.13.12",
"@babel/helper-simple-access": "^7.13.12",
"@babel/helper-split-export-declaration": "^7.12.13",
"@babel/helper-validator-identifier": "^7.12.11",
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.13.0",
"@babel/types": "^7.13.12"
}
},
"@babel/helper-optimise-call-expression": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz",
"integrity": "sha1-XALRcbTIYVsecWP4iMHIHDCiquo=",
"dev": true,
"requires": {
"@babel/types": "^7.12.13"
}
},
"@babel/helper-plugin-utils": {
"version": "7.13.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz",
"integrity": "sha1-gGUmzhJa7QM3O8QWqCgyHjpqM68=",
"dev": true
},
"@babel/helper-replace-supers": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz",
"integrity": "sha1-ZEL0wa2RJQJIGlZKc4beDHf/OAQ=",
"dev": true,
"requires": {
"@babel/helper-member-expression-to-functions": "^7.13.12",
"@babel/helper-optimise-call-expression": "^7.12.13",
"@babel/traverse": "^7.13.0",
"@babel/types": "^7.13.12"
}
},
"@babel/helper-simple-access": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz",
"integrity": "sha1-3WxTivthgZ0gWgEsMXkqOcel6vY=",
"dev": true,
"requires": {
"@babel/types": "^7.13.12"
}
},
"@babel/helper-skip-transparent-expression-wrappers": {
"version": "7.12.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
"integrity": "sha1-Ri3GOn5DWt6EaDhcY9K4TM5LPL8=",
"dev": true,
"requires": {
"@babel/types": "^7.12.1"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz",
"integrity": "sha1-6UML4AuvPoiw4T5vnU6vITY3KwU=",
"dev": true,
"requires": {
"@babel/types": "^7.12.13"
}
},
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha1-yaHwIZF9y1zPDU5FPjmQIpgfye0=",
"dev": true
},
"@babel/helper-validator-option": {
"version": "7.12.17",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz",
"integrity": "sha1-0fvwEuGnm37rv9xtJwuq+NnrmDE=",
"dev": true
},
"@babel/helpers": {
"version": "7.13.10",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/helpers/-/helpers-7.13.10.tgz",
"integrity": "sha1-/Y4rp0iFM83qxFzBWOnryl48ffg=",
"dev": true,
"requires": {
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.13.0",
"@babel/types": "^7.13.0"
}
},
"@babel/highlight": {
"version": "7.13.10",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/highlight/-/highlight-7.13.10.tgz",
"integrity": "sha1-qLKmYUj1sn1maxXYF3Q0enMdUtE=",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/parser/-/parser-7.13.12.tgz",
"integrity": "sha1-ujIAWUIHdDlNOwwCM7pA5CULgdE=",
"dev": true
},
"@babel/plugin-proposal-class-properties": {
"version": "7.13.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz",
"integrity": "sha1-FGN2AAuU79AB5XpAqIpSWvqrnzc=",
"dev": true,
"requires": {
"@babel/helper-create-class-features-plugin": "^7.13.0",
"@babel/helper-plugin-utils": "^7.13.0"
}
},
"@babel/plugin-proposal-nullish-coalescing-operator": {
"version": "7.13.8",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz",
"integrity": "sha1-NzCjHa/TwQ2MzRBkjtgKKsVHLvM=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
}
},
"@babel/plugin-proposal-optional-chaining": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz",
"integrity": "sha1-up/rYB1CLgrepnYMK9a7t7/sSGY=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
}
},
"@babel/plugin-syntax-flow": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz",
"integrity": "sha1-XfmWJQPAqckYOBySnVHU1pSefoY=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.12.13"
}
},
"@babel/plugin-syntax-nullish-coalescing-operator": {
"version": "7.8.3",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-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-optional-chaining": {
"version": "7.8.3",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-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-typescript": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz",
"integrity": "sha1-nf8RHKZBVM7w9NxSz4Q9nxLORHQ=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.12.13"
}
},
"@babel/plugin-transform-flow-strip-types": {
"version": "7.13.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.13.0.tgz",
"integrity": "sha1-WBd6SMIJlx6CNOmZBstr0RIq3dM=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/plugin-syntax-flow": "^7.12.13"
}
},
"@babel/plugin-transform-modules-commonjs": {
"version": "7.13.8",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz",
"integrity": "sha1-ewGtfC3PInWwb6F4HgDRPUILPhs=",
"dev": true,
"requires": {
"@babel/helper-module-transforms": "^7.13.0",
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/helper-simple-access": "^7.12.13",
"babel-plugin-dynamic-import-node": "^2.3.3"
}
},
"@babel/plugin-transform-typescript": {
"version": "7.13.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz",
"integrity": "sha1-SkmOHzYANC0qnmH2ATEBj1V3SFM=",
"dev": true,
"requires": {
"@babel/helper-create-class-features-plugin": "^7.13.0",
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/plugin-syntax-typescript": "^7.12.13"
}
},
"@babel/preset-flow": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/preset-flow/-/preset-flow-7.12.13.tgz",
"integrity": "sha1-ce5/5lqVtQesErytZaTO0n2N/D4=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.12.13",
"@babel/plugin-transform-flow-strip-types": "^7.12.13"
}
},
"@babel/preset-typescript": {
"version": "7.13.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/preset-typescript/-/preset-typescript-7.13.0.tgz",
"integrity": "sha1-qxB+XwUGCdgG+7A5vsVTszRixgo=",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/helper-validator-option": "^7.12.17",
"@babel/plugin-transform-typescript": "^7.13.0"
}
},
"@babel/register": {
"version": "7.13.8",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/register/-/register-7.13.8.tgz",
"integrity": "sha1-2QUdxoIMtOhjdcwOLVWkhisxGE8=",
"dev": true,
"requires": {
"find-cache-dir": "^2.0.0",
"lodash": "^4.17.19",
"make-dir": "^2.1.0",
"pirates": "^4.0.0",
"source-map-support": "^0.5.16"
}
},
"@babel/runtime": {
"version": "7.13.10",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/runtime/-/runtime-7.13.10.tgz",
"integrity": "sha1-R9QqV7YJX0Ro2kQDiP262L6/DX0=",
"requires": {
"regenerator-runtime": "^0.13.4"
},
"dependencies": {
"regenerator-runtime": {
"version": "0.13.7",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
"integrity": "sha1-ysLazIoepnX+qrrriugziYrkb1U="
}
}
},
"@babel/runtime-corejs3": {
"version": "7.13.10",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz",
"integrity": "sha1-FMP0yF3iK6iOjoZoXRPohhqC/oY=",
"dev": true,
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
},
"dependencies": {
"regenerator-runtime": {
"version": "0.13.7",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
"integrity": "sha1-ysLazIoepnX+qrrriugziYrkb1U=",
"dev": true
}
}
},
"@babel/template": {
"version": "7.12.13",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/template/-/template-7.12.13.tgz",
"integrity": "sha1-UwJlvooliduzdSOETFvLVZR/syc=",
"dev": true,
"requires": {
"@babel/code-frame": "^7.12.13",
"@babel/parser": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"@babel/traverse": {
"version": "7.13.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/traverse/-/traverse-7.13.0.tgz",
"integrity": "sha1-bZV1JHX4bufe0GU23jCaZfyJZsw=",
"dev": true,
"requires": {
"@babel/code-frame": "^7.12.13",
"@babel/generator": "^7.13.0",
"@babel/helper-function-name": "^7.12.13",
"@babel/helper-split-export-declaration": "^7.12.13",
"@babel/parser": "^7.13.0",
"@babel/types": "^7.13.0",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
},
"dependencies": {
"debug": {
"version": "4.3.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/debug/-/debug-4.3.1.tgz",
"integrity": "sha1-8NIpxQXgxtjEmsVT0bE9wYP2su4=",
"dev": true,
"requires": {
"ms": "2.1.2"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ms/-/ms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
}
}
},
"@babel/types": {
"version": "7.13.12",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@babel/types/-/types-7.13.12.tgz",
"integrity": "sha1-7b+ZII70iFKs3/HIpoGh5K3lgM0=",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"@discoveryjs/json-ext": {
"version": "0.5.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz",
"integrity": "sha1-jwOiKgTeQ3JU6M6MyEujlokoh1I=",
"dev": true
},
"@eslint/eslintrc": {
"version": "0.4.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@eslint/eslintrc/-/eslintrc-0.4.0.tgz",
"integrity": "sha1-mcwKBYTXLx3zi5APsGK6mV85VUc=",
"dev": true,
"requires": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^12.1.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": {
"debug": {
"version": "4.3.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/debug/-/debug-4.3.1.tgz",
"integrity": "sha1-8NIpxQXgxtjEmsVT0bE9wYP2su4=",
"dev": true,
"requires": {
"ms": "2.1.2"
}
},
"globals": {
"version": "12.4.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/globals/-/globals-12.4.0.tgz",
"integrity": "sha1-oYgTV2pBsAokqX5/gVkYwuGZJfg=",
"dev": true,
"requires": {
"type-fest": "^0.8.1"
}
},
"ignore": {
"version": "4.0.6",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ignore/-/ignore-4.0.6.tgz",
"integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=",
"dev": true
},
"ms": {
"version": "2.1.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ms/-/ms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
},
"type-fest": {
"version": "0.8.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/type-fest/-/type-fest-0.8.1.tgz",
"integrity": "sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=",
"dev": true
}
}
},
"@mrmlnc/readdir-enhanced": {
"version": "2.2.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
"integrity": "sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=",
"dev": true,
"requires": {
"call-me-maybe": "^1.0.1",
"glob-to-regexp": "^0.3.0"
}
},
"@nodelib/fs.stat": {
"version": "1.1.3",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
"integrity": "sha1-K1o6s/kYzKSKjHVMCBaOPwPrphs=",
"dev": true
},
"@samverschueren/stream-to-observable": {
"version": "0.3.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz",
"integrity": "sha1-ohEXsZ7pvnDDeewYd1N+8uHGMwE=",
"dev": true,
"requires": {
"any-observable": "^0.3.0"
}
},
"@sindresorhus/is": {
"version": "4.0.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@sindresorhus/is/-/is-4.0.0.tgz",
"integrity": "sha1-L/Z06WEbRbUoiW2CDT16gS3i8OQ=",
"dev": true
},
"@szmarczak/http-timer": {
"version": "4.0.5",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@szmarczak/http-timer/-/http-timer-4.0.5.tgz",
"integrity": "sha1-v71QIR6d+lG6B9pYoUzf0zMgUVI=",
"dev": true,
"requires": {
"defer-to-connect": "^2.0.0"
}
},
"@types/cacheable-request": {
"version": "6.0.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/cacheable-request/-/cacheable-request-6.0.1.tgz",
"integrity": "sha1-XSLz3e0f06hMC761A5p0GcLJGXY=",
"dev": true,
"requires": {
"@types/http-cache-semantics": "*",
"@types/keyv": "*",
"@types/node": "*",
"@types/responselike": "*"
}
},
"@types/glob": {
"version": "7.1.3",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/glob/-/glob-7.1.3.tgz",
"integrity": "sha1-5rqA82t9qtLGhazZJmOC5omFwYM=",
"dev": true,
"requires": {
"@types/minimatch": "*",
"@types/node": "*"
}
},
"@types/http-cache-semantics": {
"version": "4.0.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz",
"integrity": "sha1-kUB3lzaqJlVjXudW4kZ9eHz+iio=",
"dev": true
},
"@types/json-schema": {
"version": "7.0.7",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/json-schema/-/json-schema-7.0.7.tgz",
"integrity": "sha1-mKmTUWyFnrDVxMjwmDF6nqaNua0=",
"dev": true
},
"@types/json5": {
"version": "0.0.29",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/json5/-/json5-0.0.29.tgz",
"integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=",
"dev": true
},
"@types/keyv": {
"version": "3.1.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/keyv/-/keyv-3.1.1.tgz",
"integrity": "sha1-5FpFMk/KnatxarEjDuJJyftSz6c=",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@types/minimatch": {
"version": "3.0.3",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/minimatch/-/minimatch-3.0.3.tgz",
"integrity": "sha1-PcoOPzOyAPx9ETnAzZbBJoyt/Z0=",
"dev": true
},
"@types/node": {
"version": "14.14.35",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/node/-/node-14.14.35.tgz",
"integrity": "sha1-QslTpOKxirkx9yR35wEhcvT/oxM=",
"dev": true
},
"@types/normalize-package-data": {
"version": "2.4.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
"integrity": "sha1-5IbQ2XOW15vu3QpuM/RTT/a0lz4=",
"dev": true
},
"@types/responselike": {
"version": "1.0.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@types/responselike/-/responselike-1.0.0.tgz",
"integrity": "sha1-JR9P59FU0rrRJavhtCmyOv0mLik=",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@webassemblyjs/ast": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/ast/-/ast-1.9.0.tgz",
"integrity": "sha1-vYUGBLQEJFmlpBzX0zjL7Wle2WQ=",
"dev": true,
"requires": {
"@webassemblyjs/helper-module-context": "1.9.0",
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
"@webassemblyjs/wast-parser": "1.9.0"
}
},
"@webassemblyjs/floating-point-hex-parser": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
"integrity": "sha1-PD07Jxvd/ITesA9xNEQ4MR1S/7Q=",
"dev": true
},
"@webassemblyjs/helper-api-error": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
"integrity": "sha1-ID9nbjM7lsnaLuqzzO8zxFkotqI=",
"dev": true
},
"@webassemblyjs/helper-buffer": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
"integrity": "sha1-oUQtJpxf6yP8vJ73WdrDVH8p3gA=",
"dev": true
},
"@webassemblyjs/helper-code-frame": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
"integrity": "sha1-ZH+Iks0gQ6gqwMjF51w28dkVnyc=",
"dev": true,
"requires": {
"@webassemblyjs/wast-printer": "1.9.0"
}
},
"@webassemblyjs/helper-fsm": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
"integrity": "sha1-wFJWtxJEIUZx9LCOwQitY7cO3bg=",
"dev": true
},
"@webassemblyjs/helper-module-context": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
"integrity": "sha1-JdiIS3aDmHGgimxvgGw5ee9xLwc=",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.9.0"
}
},
"@webassemblyjs/helper-wasm-bytecode": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
"integrity": "sha1-T+2L6sm4wU+MWLcNEk1UndH+V5A=",
"dev": true
},
"@webassemblyjs/helper-wasm-section": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
"integrity": "sha1-WkE41aYpK6GLBMWuSXF+QWeWU0Y=",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.9.0",
"@webassemblyjs/helper-buffer": "1.9.0",
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
"@webassemblyjs/wasm-gen": "1.9.0"
}
},
"@webassemblyjs/ieee754": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
"integrity": "sha1-Fceg+6roP7JhQ7us9tbfFwKtOeQ=",
"dev": true,
"requires": {
"@xtuc/ieee754": "^1.2.0"
}
},
"@webassemblyjs/leb128": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
"integrity": "sha1-8Zygt2ptxVYjoJz/p2noOPoeHJU=",
"dev": true,
"requires": {
"@xtuc/long": "4.2.2"
}
},
"@webassemblyjs/utf8": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
"integrity": "sha1-BNM7Y2945qaBMifoJAL3Y3tiKas=",
"dev": true
},
"@webassemblyjs/wasm-edit": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
"integrity": "sha1-P+bXnT8PkiGDqoYALELdJWz+6c8=",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.9.0",
"@webassemblyjs/helper-buffer": "1.9.0",
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
"@webassemblyjs/helper-wasm-section": "1.9.0",
"@webassemblyjs/wasm-gen": "1.9.0",
"@webassemblyjs/wasm-opt": "1.9.0",
"@webassemblyjs/wasm-parser": "1.9.0",
"@webassemblyjs/wast-printer": "1.9.0"
}
},
"@webassemblyjs/wasm-gen": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
"integrity": "sha1-ULxw7Gje2OJ2OwGhQYv0NJGnpJw=",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.9.0",
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
"@webassemblyjs/ieee754": "1.9.0",
"@webassemblyjs/leb128": "1.9.0",
"@webassemblyjs/utf8": "1.9.0"
}
},
"@webassemblyjs/wasm-opt": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
"integrity": "sha1-IhEYHlsxMmRDzIES658LkChyGmE=",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.9.0",
"@webassemblyjs/helper-buffer": "1.9.0",
"@webassemblyjs/wasm-gen": "1.9.0",
"@webassemblyjs/wasm-parser": "1.9.0"
}
},
"@webassemblyjs/wasm-parser": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
"integrity": "sha1-nUjkSCbfSmWYKUqmyHRp1kL/9l4=",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.9.0",
"@webassemblyjs/helper-api-error": "1.9.0",
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
"@webassemblyjs/ieee754": "1.9.0",
"@webassemblyjs/leb128": "1.9.0",
"@webassemblyjs/utf8": "1.9.0"
}
},
"@webassemblyjs/wast-parser": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
"integrity": "sha1-MDERXXmsW9JhVWzsw/qQo+9FGRQ=",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.9.0",
"@webassemblyjs/floating-point-hex-parser": "1.9.0",
"@webassemblyjs/helper-api-error": "1.9.0",
"@webassemblyjs/helper-code-frame": "1.9.0",
"@webassemblyjs/helper-fsm": "1.9.0",
"@xtuc/long": "4.2.2"
}
},
"@webassemblyjs/wast-printer": {
"version": "1.9.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
"integrity": "sha1-STXVTIX+9jewDOn1I3dFHQDUeJk=",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.9.0",
"@webassemblyjs/wast-parser": "1.9.0",
"@xtuc/long": "4.2.2"
}
},
"@webpack-cli/configtest": {
"version": "1.0.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webpack-cli/configtest/-/configtest-1.0.1.tgz",
"integrity": "sha1-JBrs+9xxXu6WvtRH7UAuEuwXGTU=",
"dev": true
},
"@webpack-cli/info": {
"version": "1.2.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webpack-cli/info/-/info-1.2.2.tgz",
"integrity": "sha1-7zwM2Ueh+gg+F0pZy3TgthlcI2w=",
"dev": true,
"requires": {
"envinfo": "^7.7.3"
}
},
"@webpack-cli/migrate": {
"version": "1.1.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webpack-cli/migrate/-/migrate-1.1.2.tgz",
"integrity": "sha1-e6woJDxjqZ9vyAnP9FhaWqnJuQc=",
"dev": true,
"requires": {
"@webpack-cli/utils": "^1.2.1",
"colorette": "^1.2.1",
"diff": "^4.0.2",
"inquirer": "^7.3.3",
"jscodeshift": "^0.11.0",
"listr": "^0.14.3",
"p-each-series": "^2.1.0",
"p-lazy": "^3.0.0"
}
},
"@webpack-cli/serve": {
"version": "1.3.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webpack-cli/serve/-/serve-1.3.0.tgz",
"integrity": "sha1-JzDHcPXx8TJ2fGPcqqTsKPjFamw=",
"dev": true
},
"@webpack-cli/utils": {
"version": "1.2.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@webpack-cli/utils/-/utils-1.2.1.tgz",
"integrity": "sha1-s6hH/IA+D/ZhgzsUewL5+IalTYc=",
"dev": true,
"requires": {
"colorette": "^1.2.1",
"execa": "^5.0.0",
"findup-sync": "^4.0.0",
"global-modules": "^2.0.0",
"got": "^11.8.0",
"jscodeshift": "^0.11.0",
"p-each-series": "^2.1.0",
"yeoman-environment": "^2.10.3",
"yeoman-generator": "^4.12.0"
}
},
"@xtuc/ieee754": {
"version": "1.2.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
"integrity": "sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=",
"dev": true
},
"@xtuc/long": {
"version": "4.2.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/@xtuc/long/-/long-4.2.2.tgz",
"integrity": "sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=",
"dev": true
},
"JSONStream": {
"version": "1.3.5",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/JSONStream/-/JSONStream-1.3.5.tgz",
"integrity": "sha1-MgjB8I06TZkmGrZPkjArwV4RHKA=",
"dev": true,
"requires": {
"jsonparse": "^1.2.0",
"through": ">=2.2.7 <3"
}
},
"abbrev": {
"version": "1.1.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=",
"dev": true
},
"accepts": {
"version": "1.3.7",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/accepts/-/accepts-1.3.7.tgz",
"integrity": "sha1-UxvHJlF6OytB+FACHGzBXqq1B80=",
"dev": true,
"requires": {
"mime-types": "~2.1.24",
"negotiator": "0.6.2"
}
},
"acorn": {
"version": "7.4.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/acorn/-/acorn-7.4.1.tgz",
"integrity": "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=",
"dev": true
},
"acorn-jsx": {
"version": "5.3.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/acorn-jsx/-/acorn-jsx-5.3.1.tgz",
"integrity": "sha1-/IZh4Rt6wVOcR9v+oucrOvNNJns=",
"dev": true
},
"ajv": {
"version": "6.12.6",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"ajv-errors": {
"version": "1.0.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ajv-errors/-/ajv-errors-1.0.1.tgz",
"integrity": "sha1-81mGrOuRr63sQQL72FAUlQzvpk0=",
"dev": true
},
"ajv-keywords": {
"version": "3.5.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
"integrity": "sha1-MfKdpatuANHC0yms97WSlhTVAU0=",
"dev": true
},
"amdefine": {
"version": "1.0.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
"dev": true
},
"ansi-colors": {
"version": "4.1.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ansi-colors/-/ansi-colors-4.1.1.tgz",
"integrity": "sha1-y7muJWv3UK8eqzRPIpqif+lLo0g=",
"dev": true
},
"ansi-escapes": {
"version": "4.3.2",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
"integrity": "sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=",
"dev": true,
"requires": {
"type-fest": "^0.21.3"
}
},
"ansi-html": {
"version": "0.0.7",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ansi-html/-/ansi-html-0.0.7.tgz",
"integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=",
"dev": true
},
"ansi-regex": {
"version": "5.0.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U=",
"dev": true
},
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
}
},
"any-observable": {
"version": "0.3.0",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/any-observable/-/any-observable-0.3.0.tgz",
"integrity": "sha1-r5M0deWAamfQ198JDdXovvZdEZs=",
"dev": true
},
"anymatch": {
"version": "3.1.1",
"resolved": "https://repo.socrata.com:443/artifactory/api/npm/npm-virtual/anymatch/-/anymatch-3.1.1.tgz",