forked from AMPATH/ng2-amrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8403 lines (7093 loc) · 282 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@angular-devkit/architect@0.6.8":
version "0.6.8"
resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.6.8.tgz#977acc605aba45d21b95ca704cc99492e14299dd"
dependencies:
"@angular-devkit/core" "0.6.8"
rxjs "^6.0.0"
"@angular-devkit/architect@0.7.5":
version "0.7.5"
resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.7.5.tgz#e2d856b671fe8b0615db1efc144a7f75b55fb6e1"
dependencies:
"@angular-devkit/core" "0.7.5"
rxjs "^6.0.0"
"@angular-devkit/build-angular@^0.7.2":
version "0.7.5"
resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.7.5.tgz#1ae50c1c57e10919fc631da462037e63e19ea543"
dependencies:
"@angular-devkit/architect" "0.7.5"
"@angular-devkit/build-optimizer" "0.7.5"
"@angular-devkit/build-webpack" "0.7.5"
"@angular-devkit/core" "0.7.5"
"@ngtools/webpack" "6.1.5"
ajv "~6.4.0"
autoprefixer "^8.4.1"
circular-dependency-plugin "^5.0.2"
clean-css "^4.1.11"
copy-webpack-plugin "^4.5.2"
file-loader "^1.1.11"
glob "^7.0.3"
html-webpack-plugin "^3.0.6"
istanbul "^0.4.5"
istanbul-instrumenter-loader "^3.0.1"
karma-source-map-support "^1.2.0"
less "^3.7.1"
less-loader "^4.1.0"
license-webpack-plugin "^1.3.1"
loader-utils "^1.1.0"
mini-css-extract-plugin "~0.4.0"
minimatch "^3.0.4"
opn "^5.1.0"
parse5 "^4.0.0"
portfinder "^1.0.13"
postcss "^6.0.22"
postcss-import "^11.1.0"
postcss-loader "^2.1.5"
postcss-url "^7.3.2"
raw-loader "^0.5.1"
rxjs "^6.0.0"
sass-loader "~6.0.7"
semver "^5.5.0"
source-map-loader "^0.2.3"
source-map-support "^0.5.0"
stats-webpack-plugin "^0.6.2"
style-loader "^0.21.0"
stylus "^0.54.5"
stylus-loader "^3.0.2"
tree-kill "^1.2.0"
uglifyjs-webpack-plugin "^1.2.5"
url-loader "^1.0.1"
webpack "~4.9.2"
webpack-dev-middleware "^3.1.3"
webpack-dev-server "^3.1.4"
webpack-merge "^4.1.2"
webpack-sources "^1.1.0"
webpack-subresource-integrity "^1.1.0-rc.4"
optionalDependencies:
node-sass "^4.9.3"
"@angular-devkit/build-optimizer@0.7.5":
version "0.7.5"
resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.7.5.tgz#ded26831a68b94d3292a8d0036331331e3f27bfe"
dependencies:
loader-utils "^1.1.0"
source-map "^0.5.6"
typescript "~2.9.1"
webpack-sources "^1.1.0"
"@angular-devkit/build-webpack@0.7.5":
version "0.7.5"
resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.7.5.tgz#94d34d6bfdd7082793a6abea32319684e94a7068"
dependencies:
"@angular-devkit/architect" "0.7.5"
"@angular-devkit/core" "0.7.5"
rxjs "^6.0.0"
"@angular-devkit/core@0.6.8":
version "0.6.8"
resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-0.6.8.tgz#3b09d97bd2588f0091df11921f7ed772431806aa"
dependencies:
ajv "~6.4.0"
chokidar "^2.0.3"
rxjs "^6.0.0"
source-map "^0.5.6"
"@angular-devkit/core@0.7.5":
version "0.7.5"
resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-0.7.5.tgz#49f7854ccadf3ddda8d0ea4359543a1cbdc6854d"
dependencies:
ajv "~6.4.0"
chokidar "^2.0.3"
rxjs "^6.0.0"
source-map "^0.5.6"
"@angular-devkit/schematics@0.6.8":
version "0.6.8"
resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-0.6.8.tgz#6360a0271f1f422862bf932a03b3741e76ac5ff0"
dependencies:
"@angular-devkit/core" "0.6.8"
rxjs "^6.0.0"
"@angular/animations@>=4.2.4", "@angular/animations@^6.0.2", "@angular/animations@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-6.1.6.tgz#25a9cd87303aec5556c20631d087447de2330e87"
dependencies:
tslib "^1.9.0"
"@angular/cdk@^6.0.0":
version "6.3.0"
resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-6.3.0.tgz#fd914e4e145e48db1d51f38012178b97ddb78772"
dependencies:
tslib "^1.7.1"
"@angular/cdk@^6.1.0":
version "6.4.7"
resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-6.4.7.tgz#1549b304dd412e82bd854cc55a7d5c6772ee0411"
dependencies:
tslib "^1.7.1"
"@angular/cli@~6.0.3":
version "6.0.8"
resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-6.0.8.tgz#65070958b944be30053232c51f8449b7ddd4d92a"
dependencies:
"@angular-devkit/architect" "0.6.8"
"@angular-devkit/core" "0.6.8"
"@angular-devkit/schematics" "0.6.8"
"@schematics/angular" "0.6.8"
"@schematics/update" "0.6.8"
opn "~5.3.0"
resolve "^1.1.7"
rxjs "^6.0.0"
semver "^5.1.0"
silent-error "^1.0.0"
symbol-observable "^1.2.0"
yargs-parser "^10.0.0"
"@angular/common@>=2.4.5", "@angular/common@^6.0.2", "@angular/common@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/common/-/common-6.1.6.tgz#16597d89dddd72a606d3cc7125ffa30a87f5ee09"
dependencies:
tslib "^1.9.0"
"@angular/compiler-cli@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-6.1.6.tgz#cccebfaf66af3b7c19dd528732b945ce378bd65f"
dependencies:
chokidar "^1.4.2"
minimist "^1.2.0"
reflect-metadata "^0.1.2"
tsickle "^0.32.1"
"@angular/compiler@>=2.4.5", "@angular/compiler@^6.0.2", "@angular/compiler@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-6.1.6.tgz#2c858fe78ad1ca5bb3c886bd638bbb144af36e06"
dependencies:
tslib "^1.9.0"
"@angular/core@>=2.4.5", "@angular/core@^6.0.2", "@angular/core@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/core/-/core-6.1.6.tgz#130758ad49cad5f6f075693f6496bbc7d510db3b"
dependencies:
tslib "^1.9.0"
"@angular/forms@>=2.4.5", "@angular/forms@^6.0.2", "@angular/forms@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-6.1.6.tgz#1c4936993f2dbcee516cb547a534da3c70f84b76"
dependencies:
tslib "^1.9.0"
"@angular/forms@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-0.3.0.tgz#d76218bb22b74d5ac3878915d377de0487c34069"
"@angular/http@>=2.4.5", "@angular/http@^6.0.2", "@angular/http@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/http/-/http-6.1.6.tgz#4e4b74a9746b14ebd5fd0071a5a3299e945ba2ad"
dependencies:
tslib "^1.9.0"
"@angular/language-service@^6.0.0":
version "6.0.6"
resolved "https://registry.yarnpkg.com/@angular/language-service/-/language-service-6.0.6.tgz#270db3e6ff3eda2c1e828af7ea2fe2e16a8e17cb"
"@angular/material-moment-adapter@^6.3.0":
version "6.4.7"
resolved "https://registry.yarnpkg.com/@angular/material-moment-adapter/-/material-moment-adapter-6.4.7.tgz#1c047d76cbc396816ea588133ec499712242c228"
dependencies:
tslib "^1.7.1"
"@angular/material@^6.0.0":
version "6.3.0"
resolved "https://registry.yarnpkg.com/@angular/material/-/material-6.3.0.tgz#c78ca3c0d9651d4d8786b9693a83dca0916cfe01"
dependencies:
tslib "^1.7.1"
"@angular/material@^6.4.3":
version "6.4.7"
resolved "https://registry.yarnpkg.com/@angular/material/-/material-6.4.7.tgz#3c8f2d6a6a7904d97be29e06a84ffb62a8da6c16"
dependencies:
tslib "^1.7.1"
optionalDependencies:
parse5 "^5.0.0"
"@angular/platform-browser-dynamic@>=2.4.5", "@angular/platform-browser-dynamic@^6.0.2", "@angular/platform-browser-dynamic@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-6.1.6.tgz#49c2048d61b6d0958b2f0deb68cebe638b2f7f63"
dependencies:
tslib "^1.9.0"
"@angular/platform-browser@>=2.4.5", "@angular/platform-browser@^6.0.2", "@angular/platform-browser@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-6.1.6.tgz#9a9498aa455978e974436000ddde8af9f64eef13"
dependencies:
tslib "^1.9.0"
"@angular/pwa@^0.6.8":
version "0.6.8"
resolved "https://registry.yarnpkg.com/@angular/pwa/-/pwa-0.6.8.tgz#2bc0d8e64e997bdfb39bbd2301322c0d2163851a"
dependencies:
"@angular-devkit/core" "0.6.8"
"@angular-devkit/schematics" "0.6.8"
"@schematics/angular" "0.6.8"
typescript "~2.6.2"
"@angular/router@>=2.4.5", "@angular/router@^6.0.2", "@angular/router@^6.1.0":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/router/-/router-6.1.6.tgz#d280e014e5b4399d9631ac9cfd3dfde0cf3f76ed"
dependencies:
tslib "^1.9.0"
"@angular/service-worker@^6.1.2":
version "6.1.6"
resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-6.1.6.tgz#90e677fe96105e7e089a676c1fc244ffc07fcfe0"
dependencies:
tslib "^1.9.0"
"@ionic/storage@^2.0.1":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@ionic/storage/-/storage-2.1.3.tgz#05dcf396a759879bf7aea42cfed61519562a13c7"
dependencies:
"@types/localforage" "0.0.30"
localforage "~1.4.2"
localforage-cordovasqlitedriver "~1.5.0"
"@ng-bootstrap/ng-bootstrap@^1.0.0-alpha.0":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@ng-bootstrap/ng-bootstrap/-/ng-bootstrap-1.1.2.tgz#276b1c488687ca3e53d1694b63835fd57ca552ca"
"@ng-select/ng-select@^1.5.0":
version "1.5.2"
resolved "https://registry.yarnpkg.com/@ng-select/ng-select/-/ng-select-1.5.2.tgz#e67115705f991cb44d85983f0fb3b3c6f709c2ee"
dependencies:
tslib "^1.7.1"
"@ngtools/webpack@6.1.5":
version "6.1.5"
resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-6.1.5.tgz#134639686eb4519885ed27665babdf80ce098263"
dependencies:
"@angular-devkit/core" "0.7.5"
rxjs "^6.0.0"
tree-kill "^1.0.0"
webpack-sources "^1.1.0"
"@schematics/angular@0.6.8":
version "0.6.8"
resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-0.6.8.tgz#a8d1afc33e77160296b0a8b3d02f0ee4dfe9d1d2"
dependencies:
"@angular-devkit/core" "0.6.8"
"@angular-devkit/schematics" "0.6.8"
typescript ">=2.6.2 <2.8"
"@schematics/update@0.6.8":
version "0.6.8"
resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.6.8.tgz#3b4f897dd3b28335acc53a49d9f0dc10ebd934a7"
dependencies:
"@angular-devkit/core" "0.6.8"
"@angular-devkit/schematics" "0.6.8"
npm-registry-client "^8.5.1"
rxjs "^6.0.0"
semver "^5.3.0"
semver-intersect "^1.1.2"
"@types/date-fns@0.0.2":
version "0.0.2"
resolved "https://registry.yarnpkg.com/@types/date-fns/-/date-fns-0.0.2.tgz#a71d2e0b2ab57bb8de81c843e5ecf6e161779b8c"
"@types/debug@*":
version "0.0.30"
resolved "https://registry.yarnpkg.com/@types/debug/-/debug-0.0.30.tgz#dc1e40f7af3b9c815013a7860e6252f6352a84df"
"@types/geojson@*":
version "7946.0.3"
resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.3.tgz#e5791534ab0acfb2b3a39b713966cfcee85d469f"
"@types/hammerjs@^2.0.34":
version "2.0.35"
resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.35.tgz#7b7c950c7d54593e23bffc8d2b4feba9866a7277"
"@types/highcharts@^4.2.47":
version "4.2.57"
resolved "https://registry.yarnpkg.com/@types/highcharts/-/highcharts-4.2.57.tgz#f756907fc1756c3148a6226efabd3520a8929db9"
dependencies:
"@types/geojson" "*"
"@types/jasmine@*", "@types/jasmine@^2.5.53":
version "2.8.8"
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.8.8.tgz#bf53a7d193ea8b03867a38bfdb4fbb0e0bf066c9"
"@types/jasminewd2@~2.0.3":
version "2.0.3"
resolved "https://registry.yarnpkg.com/@types/jasminewd2/-/jasminewd2-2.0.3.tgz#0d2886b0cbdae4c0eeba55e30792f584bf040a95"
dependencies:
"@types/jasmine" "*"
"@types/jquery@^3.3.4":
version "3.3.4"
resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.3.4.tgz#f1850fb9a70041a14ace4f81a7ed782db8548317"
"@types/localforage@0.0.30":
version "0.0.30"
resolved "https://registry.yarnpkg.com/@types/localforage/-/localforage-0.0.30.tgz#3d60a6bf6dda38e3f8a469611598379f1f649509"
"@types/lodash@^4.14.50":
version "4.14.110"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.110.tgz#fb07498f84152947f30ea09d89207ca07123461e"
"@types/node@^6.0.46":
version "6.0.113"
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.113.tgz#4b41f38ad03e4b41f9dc259b3b58aecb22c9aebc"
"@types/node@~8.9.4":
version "8.9.5"
resolved "https://registry.yarnpkg.com/@types/node/-/node-8.9.5.tgz#162b864bc70be077e6db212b322754917929e976"
"@types/pdf@0.0.31":
version "0.0.31"
resolved "https://registry.yarnpkg.com/@types/pdf/-/pdf-0.0.31.tgz#c0b210ce752fd59ad8331be5d4b55cf369141b93"
"@types/pouchdb-adapter-fruitdown@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-adapter-fruitdown/-/pouchdb-adapter-fruitdown-6.1.2.tgz#9cd8b8d40f8a50ab1f4ad60fa1646d7cbba4213f"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-adapter-http@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-adapter-http/-/pouchdb-adapter-http-6.1.2.tgz#185c543d49479b12299cba3bce88b4b5abe16b3d"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-adapter-idb@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-adapter-idb/-/pouchdb-adapter-idb-6.1.2.tgz#cef0e8025d02586771558f6b188517e5d65800b8"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-adapter-leveldb@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-adapter-leveldb/-/pouchdb-adapter-leveldb-6.1.2.tgz#94b4949bc7954318451c4da3fc07f6b91004a398"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-adapter-localstorage@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-adapter-localstorage/-/pouchdb-adapter-localstorage-6.1.2.tgz#3156b6e53131816b565a648ffb44cbbc4ae236af"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-adapter-memory@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-adapter-memory/-/pouchdb-adapter-memory-6.1.2.tgz#93eca978b1aa0f96a020b4a92b43efb7e6a70a09"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-adapter-node-websql@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-adapter-node-websql/-/pouchdb-adapter-node-websql-6.1.2.tgz#a0ca40ac19c9c66d9b381f68c90b57bbb3a21fbc"
dependencies:
"@types/pouchdb-adapter-websql" "*"
"@types/pouchdb-core" "*"
"@types/pouchdb-adapter-websql@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-adapter-websql/-/pouchdb-adapter-websql-6.1.2.tgz#54ba7ce20dee3426fa13cf2ab3e3d2d143243a95"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-browser@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-browser/-/pouchdb-browser-6.1.2.tgz#57e645318dc90acb6a6620d5a700c41e7ec9cccd"
dependencies:
"@types/pouchdb-adapter-http" "*"
"@types/pouchdb-adapter-idb" "*"
"@types/pouchdb-adapter-websql" "*"
"@types/pouchdb-core" "*"
"@types/pouchdb-mapreduce" "*"
"@types/pouchdb-replication" "*"
"@types/pouchdb-core@*":
version "6.4.0"
resolved "https://registry.yarnpkg.com/@types/pouchdb-core/-/pouchdb-core-6.4.0.tgz#28dc49c071f11e7b4762c7cf1c4294c11807c8d1"
dependencies:
"@types/debug" "*"
"@types/pouchdb-find" "*"
"@types/pouchdb-find@*":
version "6.3.3"
resolved "https://registry.yarnpkg.com/@types/pouchdb-find/-/pouchdb-find-6.3.3.tgz#dbad75ba362677d03027ac3e2e5d1361ff296152"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-http@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-http/-/pouchdb-http-6.1.2.tgz#5875290f7cc502c35c015ed62ad2006c9edb8b57"
dependencies:
"@types/pouchdb-adapter-http" "*"
"@types/pouchdb-core" "*"
"@types/pouchdb-mapreduce@*":
version "6.1.3"
resolved "https://registry.yarnpkg.com/@types/pouchdb-mapreduce/-/pouchdb-mapreduce-6.1.3.tgz#6db81f82567e5cdbf7c9d98a271296206f63b862"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-node@*":
version "6.1.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb-node/-/pouchdb-node-6.1.2.tgz#476a98c6b09f17c69a1af173b826cb4b55de17ea"
dependencies:
"@types/pouchdb-adapter-http" "*"
"@types/pouchdb-adapter-leveldb" "*"
"@types/pouchdb-core" "*"
"@types/pouchdb-mapreduce" "*"
"@types/pouchdb-replication" "*"
"@types/pouchdb-replication@*":
version "6.4.0"
resolved "https://registry.yarnpkg.com/@types/pouchdb-replication/-/pouchdb-replication-6.4.0.tgz#94c54e9a0e22643681958859050a98298be8663a"
dependencies:
"@types/pouchdb-core" "*"
"@types/pouchdb-find" "*"
"@types/pouchdb@^6.3.0":
version "6.3.2"
resolved "https://registry.yarnpkg.com/@types/pouchdb/-/pouchdb-6.3.2.tgz#fa6f70b98c55c7685867887350e44421d5446592"
dependencies:
"@types/pouchdb-adapter-fruitdown" "*"
"@types/pouchdb-adapter-http" "*"
"@types/pouchdb-adapter-idb" "*"
"@types/pouchdb-adapter-leveldb" "*"
"@types/pouchdb-adapter-localstorage" "*"
"@types/pouchdb-adapter-memory" "*"
"@types/pouchdb-adapter-node-websql" "*"
"@types/pouchdb-adapter-websql" "*"
"@types/pouchdb-browser" "*"
"@types/pouchdb-core" "*"
"@types/pouchdb-http" "*"
"@types/pouchdb-mapreduce" "*"
"@types/pouchdb-node" "*"
"@types/pouchdb-replication" "*"
"@types/q@^0.0.32":
version "0.0.32"
resolved "https://registry.yarnpkg.com/@types/q/-/q-0.0.32.tgz#bd284e57c84f1325da702babfc82a5328190c0c5"
"@types/selenium-webdriver@^3.0.0":
version "3.0.10"
resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-3.0.10.tgz#e98cc6f05b4b436277671c784ee2f9d05a634f9b"
"@types/source-map@^0.5.0":
version "0.5.7"
resolved "https://registry.yarnpkg.com/@types/source-map/-/source-map-0.5.7.tgz#165eeb583c1ef00196fe4ef4da5d7832b03b275b"
dependencies:
source-map "*"
"@types/uglify-js@^2.6.28":
version "2.6.31"
resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-2.6.31.tgz#c694755eeb6a1bb9f8f321f3ec37cc22ca4c4f6b"
dependencies:
source-map "^0.6.1"
"@webassemblyjs/ast@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.4.3.tgz#3b3f6fced944d8660273347533e6d4d315b5934a"
dependencies:
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
"@webassemblyjs/wast-parser" "1.4.3"
debug "^3.1.0"
webassemblyjs "1.4.3"
"@webassemblyjs/floating-point-hex-parser@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.4.3.tgz#f5aee4c376a717c74264d7bacada981e7e44faad"
"@webassemblyjs/helper-buffer@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.4.3.tgz#0434b55958519bf503697d3824857b1dea80b729"
dependencies:
debug "^3.1.0"
"@webassemblyjs/helper-code-frame@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.4.3.tgz#f1349ca3e01a8e29ee2098c770773ef97af43641"
dependencies:
"@webassemblyjs/wast-printer" "1.4.3"
"@webassemblyjs/helper-fsm@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.4.3.tgz#65a921db48fb43e868f17b27497870bdcae22b79"
"@webassemblyjs/helper-wasm-bytecode@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.4.3.tgz#0e5b4b5418e33f8a26e940b7809862828c3721a5"
"@webassemblyjs/helper-wasm-section@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.4.3.tgz#9ceedd53a3f152c3412e072887ade668d0b1acbf"
dependencies:
"@webassemblyjs/ast" "1.4.3"
"@webassemblyjs/helper-buffer" "1.4.3"
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
"@webassemblyjs/wasm-gen" "1.4.3"
debug "^3.1.0"
"@webassemblyjs/leb128@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.4.3.tgz#5a5e5949dbb5adfe3ae95664d0439927ac557fb8"
dependencies:
leb "^0.3.0"
"@webassemblyjs/validation@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/validation/-/validation-1.4.3.tgz#9e66c9b3079d7bbcf2070c1bf52a54af2a09aac9"
dependencies:
"@webassemblyjs/ast" "1.4.3"
"@webassemblyjs/wasm-edit@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.4.3.tgz#87febd565e0ffb5ae25f6495bb3958d17aa0a779"
dependencies:
"@webassemblyjs/ast" "1.4.3"
"@webassemblyjs/helper-buffer" "1.4.3"
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
"@webassemblyjs/helper-wasm-section" "1.4.3"
"@webassemblyjs/wasm-gen" "1.4.3"
"@webassemblyjs/wasm-opt" "1.4.3"
"@webassemblyjs/wasm-parser" "1.4.3"
"@webassemblyjs/wast-printer" "1.4.3"
debug "^3.1.0"
"@webassemblyjs/wasm-gen@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.4.3.tgz#8553164d0154a6be8f74d653d7ab355f73240aa4"
dependencies:
"@webassemblyjs/ast" "1.4.3"
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
"@webassemblyjs/leb128" "1.4.3"
"@webassemblyjs/wasm-opt@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.4.3.tgz#26c7a23bfb136aa405b1d3410e63408ec60894b8"
dependencies:
"@webassemblyjs/ast" "1.4.3"
"@webassemblyjs/helper-buffer" "1.4.3"
"@webassemblyjs/wasm-gen" "1.4.3"
"@webassemblyjs/wasm-parser" "1.4.3"
debug "^3.1.0"
"@webassemblyjs/wasm-parser@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.4.3.tgz#7ddd3e408f8542647ed612019cfb780830993698"
dependencies:
"@webassemblyjs/ast" "1.4.3"
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
"@webassemblyjs/leb128" "1.4.3"
"@webassemblyjs/wasm-parser" "1.4.3"
webassemblyjs "1.4.3"
"@webassemblyjs/wast-parser@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.4.3.tgz#3250402e2c5ed53dbe2233c9de1fe1f9f0d51745"
dependencies:
"@webassemblyjs/ast" "1.4.3"
"@webassemblyjs/floating-point-hex-parser" "1.4.3"
"@webassemblyjs/helper-code-frame" "1.4.3"
"@webassemblyjs/helper-fsm" "1.4.3"
long "^3.2.0"
webassemblyjs "1.4.3"
"@webassemblyjs/wast-printer@1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.4.3.tgz#3d59aa8d0252d6814a3ef4e6d2a34c9ded3904e0"
dependencies:
"@webassemblyjs/ast" "1.4.3"
"@webassemblyjs/wast-parser" "1.4.3"
long "^3.2.0"
JSONStream@^1.0.3:
version "1.3.3"
resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.3.tgz#27b4b8fbbfeab4e71bcf551e7f27be8d952239bf"
dependencies:
jsonparse "^1.2.0"
through ">=2.2.7 <3"
abbrev@1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
abbrev@1.0.x:
version "1.0.9"
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
abstract-leveldown@^4.0.0, abstract-leveldown@~4.0.0:
version "4.0.3"
resolved "https://registry.yarnpkg.com/abstract-leveldown/-/abstract-leveldown-4.0.3.tgz#cb636f4965fbe117f5c8b76a7d51dd42aaed0580"
dependencies:
xtend "~4.0.0"
abstract-leveldown@~5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/abstract-leveldown/-/abstract-leveldown-5.0.0.tgz#f7128e1f86ccabf7d2893077ce5d06d798e386c6"
dependencies:
xtend "~4.0.0"
accepts@~1.3.4, accepts@~1.3.5:
version "1.3.5"
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
dependencies:
mime-types "~2.1.18"
negotiator "0.6.1"
acorn-dynamic-import@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz#901ceee4c7faaef7e07ad2a47e890675da50a278"
dependencies:
acorn "^5.0.0"
acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2:
version "1.5.2"
resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.5.2.tgz#2ca723df19d997b05824b69f6c7fb091fc42c322"
dependencies:
acorn "^5.7.1"
acorn-dynamic-import "^3.0.0"
xtend "^4.0.1"
acorn@^1.0.3:
version "1.2.2"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014"
acorn@^5.0.0, acorn@^5.7.1:
version "5.7.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8"
adm-zip@^0.4.7:
version "0.4.11"
resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.4.11.tgz#2aa54c84c4b01a9d0fb89bb11982a51f13e3d62a"
after@0.8.2:
version "0.8.2"
resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f"
ag-grid-angular@17.0.0:
version "17.0.0"
resolved "https://registry.yarnpkg.com/ag-grid-angular/-/ag-grid-angular-17.0.0.tgz#59e3ff0f1e62cb8c61ddc0397326cd0202148904"
ag-grid-enterprise@17.0.0:
version "17.0.0"
resolved "https://registry.yarnpkg.com/ag-grid-enterprise/-/ag-grid-enterprise-17.0.0.tgz#760769c9400f6eb60213a06ca2c5fe91c92d9fd4"
ag-grid@17.0.0:
version "17.0.0"
resolved "https://registry.yarnpkg.com/ag-grid/-/ag-grid-17.0.0.tgz#b8c82268c1785e04425a3149ca53cc526376029b"
agent-base@^4.1.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.0.tgz#9838b5c3392b962bad031e6a4c5e1024abec45ce"
dependencies:
es6-promisify "^5.0.0"
ajv-keywords@^3.1.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a"
ajv@^5.0.0, ajv@^5.1.0, ajv@^5.3.0:
version "5.5.2"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
dependencies:
co "^4.6.0"
fast-deep-equal "^1.0.0"
fast-json-stable-stringify "^2.0.0"
json-schema-traverse "^0.3.0"
ajv@^6.1.0:
version "6.5.1"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.1.tgz#88ebc1263c7133937d108b80c5572e64e1d9322d"
dependencies:
fast-deep-equal "^2.0.1"
fast-json-stable-stringify "^2.0.0"
json-schema-traverse "^0.4.1"
uri-js "^4.2.1"
ajv@~6.4.0:
version "6.4.0"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.4.0.tgz#d3aff78e9277549771daf0164cff48482b754fc6"
dependencies:
fast-deep-equal "^1.0.0"
fast-json-stable-stringify "^2.0.0"
json-schema-traverse "^0.3.0"
uri-js "^3.0.2"
align-text@^0.1.1, align-text@^0.1.3:
version "0.1.4"
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
dependencies:
kind-of "^3.0.2"
longest "^1.0.1"
repeat-string "^1.5.2"
amazing-time-picker@^1.5.3:
version "1.5.3"
resolved "https://registry.yarnpkg.com/amazing-time-picker/-/amazing-time-picker-1.5.3.tgz#b1450f72441330650009cb2898fbebb0bc3fd54d"
dependencies:
"@angular/animations" ">=4.2.4"
"@angular/common" ">=2.4.5"
"@angular/compiler" ">=2.4.5"
"@angular/core" ">=2.4.5"
"@angular/forms" ">=2.4.5"
"@angular/http" ">=2.4.5"
"@angular/platform-browser" ">=2.4.5"
"@angular/platform-browser-dynamic" ">=2.4.5"
"@angular/router" ">=2.4.5"
core-js "^2.4.1"
intl "^1.2.5"
rxjs "^5.4.2"
zone.js "^0.8.14"
amdefine@>=0.0.4:
version "1.0.1"
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
angular-calendar@^0.25.1:
version "0.25.2"
resolved "https://registry.yarnpkg.com/angular-calendar/-/angular-calendar-0.25.2.tgz#2655dfa6108cd1a35d4429907ff4ab804c135df9"
dependencies:
angular-draggable-droppable "^3.0.0"
angular-resizable-element "^3.0.0"
calendar-utils "^0.1.2"
date-fns "^1.28.5"
positioning "^1.3.1"
tslib "^1.9.0"
angular-draggable-droppable@^3.0.0, angular-draggable-droppable@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/angular-draggable-droppable/-/angular-draggable-droppable-3.0.1.tgz#72df5dab23b0932cdcd57264194cbba1f045dbab"
dependencies:
tslib "^1.9.0"
angular-resizable-element@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/angular-resizable-element/-/angular-resizable-element-3.0.0.tgz#4a9d554e679eb607b7caa8dcc391a6401a127d86"
dependencies:
tslib "^1.9.0"
angular-resizable-element@^3.2.0:
version "3.2.2"
resolved "https://registry.yarnpkg.com/angular-resizable-element/-/angular-resizable-element-3.2.2.tgz#3135083c9cc695d0f6d5fa22d3e014f68c3d8254"
dependencies:
tslib "^1.9.0"
angular2-calendar@^0.3.7:
version "0.3.7"
resolved "https://registry.yarnpkg.com/angular2-calendar/-/angular2-calendar-0.3.7.tgz#d61ad9a1058d6e376ba4e5ace42dd00daa0d55be"
dependencies:
"@ng-bootstrap/ng-bootstrap" "^1.0.0-alpha.0"
"@types/date-fns" "0.0.2"
calendar-utils "0.0.35"
date-fns "^1.3.0"
angular2-cookie@^1.2.6:
version "1.2.6"
resolved "https://registry.yarnpkg.com/angular2-cookie/-/angular2-cookie-1.2.6.tgz#8fa845531e777adb042fe2f339c0040f6ddbf09d"
angular2-highcharts@^0.5.5:
version "0.5.5"
resolved "https://registry.yarnpkg.com/angular2-highcharts/-/angular2-highcharts-0.5.5.tgz#f4a19ea96d63524420fd5c65136ac027b05266fd"
dependencies:
"@types/highcharts" "^4.2.47"
highcharts "^5.0.7"
angular2-ladda@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/angular2-ladda/-/angular2-ladda-2.0.0.tgz#464dc8a0134748c3fd847af9f8e41171c52eb83a"
dependencies:
ladda "^2.0.0"
angular2-materialize@^5.2.1:
version "5.2.1"
resolved "https://registry.yarnpkg.com/angular2-materialize/-/angular2-materialize-5.2.1.tgz#0787719b7c7da8567b677e524d4136b707d1b5af"
dependencies:
"@angular/forms" "^0.3.0"
angular2-multiselect-dropdown@^1.2.6:
version "1.3.6"
resolved "https://registry.yarnpkg.com/angular2-multiselect-dropdown/-/angular2-multiselect-dropdown-1.3.6.tgz#9b49b39791b9afdf9985c5cdc65d9623bdea4757"
dependencies:
bootstrap "*"
font-awesome "*"
angular2-select@^1.0.0-beta.3:
version "1.0.0-beta.3"
resolved "https://registry.yarnpkg.com/angular2-select/-/angular2-select-1.0.0-beta.3.tgz#9010e9683f2563a493acca1cd11658bbe0c28b98"
angulartics2@^4.0.1:
version "4.6.3"
resolved "https://registry.yarnpkg.com/angulartics2/-/angulartics2-4.6.3.tgz#ec627ef69072cc2ddf5655ae943e96f7d0f8af41"
dependencies:
tslib "^1.7.1"
ansi-html@0.0.7:
version "0.0.7"
resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
ansi-regex@^2.0.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
ansi-regex@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
ansi-styles@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
ansi-styles@^3.2.1:
version "3.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
dependencies:
color-convert "^1.9.0"
anymatch@^1.3.0:
version "1.3.2"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
dependencies:
micromatch "^2.1.5"
normalize-path "^2.0.0"
anymatch@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
dependencies:
micromatch "^3.1.4"
normalize-path "^2.1.1"
app-root-path@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46"
append-transform@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab"
dependencies:
default-require-extensions "^2.0.0"
aproba@^1.0.3, aproba@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
are-we-there-yet@~1.1.2:
version "1.1.5"
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
dependencies:
delegates "^1.0.0"
readable-stream "^2.0.6"
argparse@^1.0.7:
version "1.0.10"
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
dependencies:
sprintf-js "~1.0.2"
argsarray@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/argsarray/-/argsarray-0.0.1.tgz#6e7207b4ecdb39b0af88303fa5ae22bda8df61cb"
arr-diff@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
dependencies:
arr-flatten "^1.0.1"
arr-diff@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
arr-flatten@^1.0.1, arr-flatten@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
arr-union@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
array-filter@~0.0.0:
version "0.0.1"
resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
array-find-index@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
array-flatten@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
array-flatten@^2.1.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296"
array-includes@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
dependencies:
define-properties "^1.1.2"
es-abstract "^1.7.0"
array-map@~0.0.0:
version "0.0.0"
resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
array-reduce@~0.0.0:
version "0.0.0"
resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
array-slice@^0.2.3:
version "0.2.3"
resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5"
array-union@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
dependencies:
array-uniq "^1.0.1"
array-uniq@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
array-unique@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
array-unique@^0.3.2:
version "0.3.2"
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
arraybuffer.slice@~0.0.7:
version "0.0.7"
resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675"
arrify@^1.0.0, arrify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
asap@~2.0.3:
version "2.0.6"
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
asn1.js@^4.0.0:
version "4.10.1"
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
dependencies:
bn.js "^4.0.0"
inherits "^2.0.1"
minimalistic-assert "^1.0.0"
asn1@~0.2.3:
version "0.2.3"
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
assert-plus@1.0.0, assert-plus@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
assert@^1.1.1, assert@^1.4.0:
version "1.4.1"
resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"