aboutsummaryrefslogtreecommitdiffstats
path: root/package-lock.json
blob: f5a41d4f38cf5c186e0556f990eb8bf9e756923a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
{
  "name": "muttagen",
  "version": "0.0.1",
  "lockfileVersion": 1,
  "requires": true,
  "dependencies": {
    "JSONStream": {
      "version": "1.3.5",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/JSONStream/-/JSONStream-1.3.5.tgz",
      "integrity": "sha1-MgjB8I06TZkmGrZPkjArwV4RHKA=",
      "requires": {
        "jsonparse": "^1.2.0",
        "through": ">=2.2.7 <3"
      }
    },
    "acorn": {
      "version": "6.4.1",
      "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz",
      "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA=="
    },
    "acorn-dynamic-import": {
      "version": "4.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz",
      "integrity": "sha1-SCIQFAWCo2uDw+NC4c/ryqkkCUg="
    },
    "acorn-node": {
      "version": "1.6.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/acorn-node/-/acorn-node-1.6.2.tgz",
      "integrity": "sha1-t9fOym8i5kF6+TOmLK1N4BBI1dI=",
      "requires": {
        "acorn": "^6.0.2",
        "acorn-dynamic-import": "^4.0.0",
        "acorn-walk": "^6.1.0",
        "xtend": "^4.0.1"
      }
    },
    "acorn-walk": {
      "version": "6.1.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/acorn-walk/-/acorn-walk-6.1.1.tgz",
      "integrity": "sha1-02O2b1+sXwGP+cOh57b44xDMORM="
    },
    "array-filter": {
      "version": "0.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/array-filter/-/array-filter-0.0.1.tgz",
      "integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw="
    },
    "array-map": {
      "version": "0.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/array-map/-/array-map-0.0.0.tgz",
      "integrity": "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI="
    },
    "array-reduce": {
      "version": "0.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/array-reduce/-/array-reduce-0.0.0.tgz",
      "integrity": "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys="
    },
    "asn1.js": {
      "version": "4.10.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/asn1.js/-/asn1.js-4.10.1.tgz",
      "integrity": "sha1-ucK/WAXx5kqt7tbfOiv6+1pz9aA=",
      "requires": {
        "bn.js": "^4.0.0",
        "inherits": "^2.0.1",
        "minimalistic-assert": "^1.0.0"
      }
    },
    "assert": {
      "version": "1.4.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/assert/-/assert-1.4.1.tgz",
      "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=",
      "requires": {
        "util": "0.10.3"
      },
      "dependencies": {
        "inherits": {
          "version": "2.0.1",
          "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/inherits/-/inherits-2.0.1.tgz",
          "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
        },
        "util": {
          "version": "0.10.3",
          "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/util/-/util-0.10.3.tgz",
          "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
          "requires": {
            "inherits": "2.0.1"
          }
        }
      }
    },
    "balanced-match": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/balanced-match/-/balanced-match-1.0.0.tgz",
      "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
    },
    "base64-js": {
      "version": "1.3.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/base64-js/-/base64-js-1.3.0.tgz",
      "integrity": "sha1-yrHmEY8FEJXli1KBrqjBzSK/wOM="
    },
    "bn.js": {
      "version": "4.11.8",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/bn.js/-/bn.js-4.11.8.tgz",
      "integrity": "sha1-LN4J617jQfSEdGuwMJsyU7GxRC8="
    },
    "brace-expansion": {
      "version": "1.1.11",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/brace-expansion/-/brace-expansion-1.1.11.tgz",
      "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=",
      "requires": {
        "balanced-match": "^1.0.0",
        "concat-map": "0.0.1"
      }
    },
    "brorand": {
      "version": "1.1.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/brorand/-/brorand-1.1.0.tgz",
      "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
    },
    "browser-pack": {
      "version": "6.1.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browser-pack/-/browser-pack-6.1.0.tgz",
      "integrity": "sha1-w0uhDQuc4WK1ryJ8cTHJLC7NV3Q=",
      "requires": {
        "JSONStream": "^1.0.3",
        "combine-source-map": "~0.8.0",
        "defined": "^1.0.0",
        "safe-buffer": "^5.1.1",
        "through2": "^2.0.0",
        "umd": "^3.0.0"
      }
    },
    "browser-resolve": {
      "version": "1.11.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browser-resolve/-/browser-resolve-1.11.3.tgz",
      "integrity": "sha1-m3y7PQ9RDky4a9vXlhJNKLWJCvY=",
      "requires": {
        "resolve": "1.1.7"
      },
      "dependencies": {
        "resolve": {
          "version": "1.1.7",
          "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/resolve/-/resolve-1.1.7.tgz",
          "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs="
        }
      }
    },
    "browserify": {
      "version": "16.2.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browserify/-/browserify-16.2.3.tgz",
      "integrity": "sha1-fubmVLpPkrzmqzWZw0hbHMegrQs=",
      "requires": {
        "JSONStream": "^1.0.3",
        "assert": "^1.4.0",
        "browser-pack": "^6.0.1",
        "browser-resolve": "^1.11.0",
        "browserify-zlib": "~0.2.0",
        "buffer": "^5.0.2",
        "cached-path-relative": "^1.0.0",
        "concat-stream": "^1.6.0",
        "console-browserify": "^1.1.0",
        "constants-browserify": "~1.0.0",
        "crypto-browserify": "^3.0.0",
        "defined": "^1.0.0",
        "deps-sort": "^2.0.0",
        "domain-browser": "^1.2.0",
        "duplexer2": "~0.1.2",
        "events": "^2.0.0",
        "glob": "^7.1.0",
        "has": "^1.0.0",
        "htmlescape": "^1.1.0",
        "https-browserify": "^1.0.0",
        "inherits": "~2.0.1",
        "insert-module-globals": "^7.0.0",
        "labeled-stream-splicer": "^2.0.0",
        "mkdirp": "^0.5.0",
        "module-deps": "^6.0.0",
        "os-browserify": "~0.3.0",
        "parents": "^1.0.1",
        "path-browserify": "~0.0.0",
        "process": "~0.11.0",
        "punycode": "^1.3.2",
        "querystring-es3": "~0.2.0",
        "read-only-stream": "^2.0.0",
        "readable-stream": "^2.0.2",
        "resolve": "^1.1.4",
        "shasum": "^1.0.0",
        "shell-quote": "^1.6.1",
        "stream-browserify": "^2.0.0",
        "stream-http": "^2.0.0",
        "string_decoder": "^1.1.1",
        "subarg": "^1.0.0",
        "syntax-error": "^1.1.1",
        "through2": "^2.0.0",
        "timers-browserify": "^1.0.1",
        "tty-browserify": "0.0.1",
        "url": "~0.11.0",
        "util": "~0.10.1",
        "vm-browserify": "^1.0.0",
        "xtend": "^4.0.0"
      }
    },
    "browserify-aes": {
      "version": "1.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browserify-aes/-/browserify-aes-1.2.0.tgz",
      "integrity": "sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=",
      "requires": {
        "buffer-xor": "^1.0.3",
        "cipher-base": "^1.0.0",
        "create-hash": "^1.1.0",
        "evp_bytestokey": "^1.0.3",
        "inherits": "^2.0.1",
        "safe-buffer": "^5.0.1"
      }
    },
    "browserify-cipher": {
      "version": "1.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
      "integrity": "sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=",
      "requires": {
        "browserify-aes": "^1.0.4",
        "browserify-des": "^1.0.0",
        "evp_bytestokey": "^1.0.0"
      }
    },
    "browserify-des": {
      "version": "1.0.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browserify-des/-/browserify-des-1.0.2.tgz",
      "integrity": "sha1-OvTx9Zg5QDVy8cZiBDdfen9wPpw=",
      "requires": {
        "cipher-base": "^1.0.1",
        "des.js": "^1.0.0",
        "inherits": "^2.0.1",
        "safe-buffer": "^5.1.2"
      }
    },
    "browserify-rsa": {
      "version": "4.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
      "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
      "requires": {
        "bn.js": "^4.1.0",
        "randombytes": "^2.0.1"
      }
    },
    "browserify-sign": {
      "version": "4.0.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browserify-sign/-/browserify-sign-4.0.4.tgz",
      "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=",
      "requires": {
        "bn.js": "^4.1.1",
        "browserify-rsa": "^4.0.0",
        "create-hash": "^1.1.0",
        "create-hmac": "^1.1.2",
        "elliptic": "^6.0.0",
        "inherits": "^2.0.1",
        "parse-asn1": "^5.0.0"
      }
    },
    "browserify-zlib": {
      "version": "0.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
      "integrity": "sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=",
      "requires": {
        "pako": "~1.0.5"
      }
    },
    "buffer": {
      "version": "5.2.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/buffer/-/buffer-5.2.1.tgz",
      "integrity": "sha1-3Vf6DxCaxZxgJHkETcp7iz0LcdY=",
      "requires": {
        "base64-js": "^1.0.2",
        "ieee754": "^1.1.4"
      }
    },
    "buffer-from": {
      "version": "1.1.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/buffer-from/-/buffer-from-1.1.1.tgz",
      "integrity": "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8="
    },
    "buffer-xor": {
      "version": "1.0.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/buffer-xor/-/buffer-xor-1.0.3.tgz",
      "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk="
    },
    "builtin-status-codes": {
      "version": "3.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
      "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
    },
    "cached-path-relative": {
      "version": "1.0.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/cached-path-relative/-/cached-path-relative-1.0.2.tgz",
      "integrity": "sha1-oT30GW0md2IgzDNW6xR6Utuixts="
    },
    "cipher-base": {
      "version": "1.0.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/cipher-base/-/cipher-base-1.0.4.tgz",
      "integrity": "sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=",
      "requires": {
        "inherits": "^2.0.1",
        "safe-buffer": "^5.0.1"
      }
    },
    "combine-source-map": {
      "version": "0.8.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/combine-source-map/-/combine-source-map-0.8.0.tgz",
      "integrity": "sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos=",
      "requires": {
        "convert-source-map": "~1.1.0",
        "inline-source-map": "~0.6.0",
        "lodash.memoize": "~3.0.3",
        "source-map": "~0.5.3"
      }
    },
    "concat-map": {
      "version": "0.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/concat-map/-/concat-map-0.0.1.tgz",
      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
    },
    "concat-stream": {
      "version": "1.6.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/concat-stream/-/concat-stream-1.6.2.tgz",
      "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=",
      "requires": {
        "buffer-from": "^1.0.0",
        "inherits": "^2.0.3",
        "readable-stream": "^2.2.2",
        "typedarray": "^0.0.6"
      }
    },
    "console-browserify": {
      "version": "1.1.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/console-browserify/-/console-browserify-1.1.0.tgz",
      "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=",
      "requires": {
        "date-now": "^0.1.4"
      }
    },
    "constants-browserify": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/constants-browserify/-/constants-browserify-1.0.0.tgz",
      "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U="
    },
    "convert-source-map": {
      "version": "1.1.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/convert-source-map/-/convert-source-map-1.1.3.tgz",
      "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA="
    },
    "core-util-is": {
      "version": "1.0.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/core-util-is/-/core-util-is-1.0.2.tgz",
      "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
    },
    "create-ecdh": {
      "version": "4.0.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/create-ecdh/-/create-ecdh-4.0.3.tgz",
      "integrity": "sha1-yREbbzMEXEaX8UR4f5JUzcd8Rf8=",
      "requires": {
        "bn.js": "^4.1.0",
        "elliptic": "^6.0.0"
      }
    },
    "create-hash": {
      "version": "1.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/create-hash/-/create-hash-1.2.0.tgz",
      "integrity": "sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY=",
      "requires": {
        "cipher-base": "^1.0.1",
        "inherits": "^2.0.1",
        "md5.js": "^1.3.4",
        "ripemd160": "^2.0.1",
        "sha.js": "^2.4.0"
      }
    },
    "create-hmac": {
      "version": "1.1.7",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/create-hmac/-/create-hmac-1.1.7.tgz",
      "integrity": "sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8=",
      "requires": {
        "cipher-base": "^1.0.3",
        "create-hash": "^1.1.0",
        "inherits": "^2.0.1",
        "ripemd160": "^2.0.0",
        "safe-buffer": "^5.0.1",
        "sha.js": "^2.4.8"
      }
    },
    "crypto-browserify": {
      "version": "3.12.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
      "integrity": "sha1-OWz58xN/A+S45TLFj2mCVOAPgOw=",
      "requires": {
        "browserify-cipher": "^1.0.0",
        "browserify-sign": "^4.0.0",
        "create-ecdh": "^4.0.0",
        "create-hash": "^1.1.0",
        "create-hmac": "^1.1.0",
        "diffie-hellman": "^5.0.0",
        "inherits": "^2.0.1",
        "pbkdf2": "^3.0.3",
        "public-encrypt": "^4.0.0",
        "randombytes": "^2.0.0",
        "randomfill": "^1.0.3"
      }
    },
    "dash-ast": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/dash-ast/-/dash-ast-1.0.0.tgz",
      "integrity": "sha1-EgKbpfsviqbwqGF5WyPBtLbCfTc="
    },
    "date-now": {
      "version": "0.1.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/date-now/-/date-now-0.1.4.tgz",
      "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs="
    },
    "defined": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/defined/-/defined-1.0.0.tgz",
      "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM="
    },
    "deps-sort": {
      "version": "2.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/deps-sort/-/deps-sort-2.0.0.tgz",
      "integrity": "sha1-CRckkC6EZYJg65EHSMzNGvbiH7U=",
      "requires": {
        "JSONStream": "^1.0.3",
        "shasum": "^1.0.0",
        "subarg": "^1.0.0",
        "through2": "^2.0.0"
      }
    },
    "des.js": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/des.js/-/des.js-1.0.0.tgz",
      "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=",
      "requires": {
        "inherits": "^2.0.1",
        "minimalistic-assert": "^1.0.0"
      }
    },
    "detective": {
      "version": "5.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/detective/-/detective-5.2.0.tgz",
      "integrity": "sha1-/rKnfoW5BOzepFmtiXzJCpm9Kns=",
      "requires": {
        "acorn-node": "^1.6.1",
        "defined": "^1.0.0",
        "minimist": "^1.1.1"
      }
    },
    "diffie-hellman": {
      "version": "5.0.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
      "integrity": "sha1-QOjumPVaIUlgcUaSHGPhrl89KHU=",
      "requires": {
        "bn.js": "^4.1.0",
        "miller-rabin": "^4.0.0",
        "randombytes": "^2.0.0"
      }
    },
    "domain-browser": {
      "version": "1.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/domain-browser/-/domain-browser-1.2.0.tgz",
      "integrity": "sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto="
    },
    "duplexer2": {
      "version": "0.1.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/duplexer2/-/duplexer2-0.1.4.tgz",
      "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=",
      "requires": {
        "readable-stream": "^2.0.2"
      }
    },
    "elliptic": {
      "version": "6.4.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/elliptic/-/elliptic-6.4.1.tgz",
      "integrity": "sha1-wtC3d2kRuGcixjLDwGxg8vgZk5o=",
      "requires": {
        "bn.js": "^4.4.0",
        "brorand": "^1.0.1",
        "hash.js": "^1.0.0",
        "hmac-drbg": "^1.0.0",
        "inherits": "^2.0.1",
        "minimalistic-assert": "^1.0.0",
        "minimalistic-crypto-utils": "^1.0.0"
      }
    },
    "events": {
      "version": "2.1.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/events/-/events-2.1.0.tgz",
      "integrity": "sha1-KpoeGOYQbg6BKqnr1KgZs8KcC6U="
    },
    "evp_bytestokey": {
      "version": "1.0.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
      "integrity": "sha1-f8vbGY3HGVlDLv4ThCaE4FJaywI=",
      "requires": {
        "md5.js": "^1.3.4",
        "safe-buffer": "^5.1.1"
      }
    },
    "fs.realpath": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/fs.realpath/-/fs.realpath-1.0.0.tgz",
      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
    },
    "function-bind": {
      "version": "1.1.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/function-bind/-/function-bind-1.1.1.tgz",
      "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0="
    },
    "get-assigned-identifiers": {
      "version": "1.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz",
      "integrity": "sha1-bb9BHeZIy6+NkWnrsNLVdhkeL/E="
    },
    "glob": {
      "version": "7.1.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/glob/-/glob-7.1.3.tgz",
      "integrity": "sha1-OWCDLT8VdBCDQtr9OmezMsCWnfE=",
      "requires": {
        "fs.realpath": "^1.0.0",
        "inflight": "^1.0.4",
        "inherits": "2",
        "minimatch": "^3.0.4",
        "once": "^1.3.0",
        "path-is-absolute": "^1.0.0"
      }
    },
    "has": {
      "version": "1.0.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/has/-/has-1.0.3.tgz",
      "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=",
      "requires": {
        "function-bind": "^1.1.1"
      }
    },
    "hash-base": {
      "version": "3.0.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/hash-base/-/hash-base-3.0.4.tgz",
      "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=",
      "requires": {
        "inherits": "^2.0.1",
        "safe-buffer": "^5.0.1"
      }
    },
    "hash.js": {
      "version": "1.1.7",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/hash.js/-/hash.js-1.1.7.tgz",
      "integrity": "sha1-C6vKU46NTuSg+JiNaIZlN6ADz0I=",
      "requires": {
        "inherits": "^2.0.3",
        "minimalistic-assert": "^1.0.1"
      }
    },
    "hmac-drbg": {
      "version": "1.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
      "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
      "requires": {
        "hash.js": "^1.0.3",
        "minimalistic-assert": "^1.0.0",
        "minimalistic-crypto-utils": "^1.0.1"
      }
    },
    "htmlescape": {
      "version": "1.1.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/htmlescape/-/htmlescape-1.1.1.tgz",
      "integrity": "sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E="
    },
    "https-browserify": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/https-browserify/-/https-browserify-1.0.0.tgz",
      "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM="
    },
    "ieee754": {
      "version": "1.1.13",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/ieee754/-/ieee754-1.1.13.tgz",
      "integrity": "sha1-7BaFWOlaoYH9h9N/VcMrvLZwi4Q="
    },
    "inflight": {
      "version": "1.0.6",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/inflight/-/inflight-1.0.6.tgz",
      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
      "requires": {
        "once": "^1.3.0",
        "wrappy": "1"
      }
    },
    "inherits": {
      "version": "2.0.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/inherits/-/inherits-2.0.3.tgz",
      "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
    },
    "inline-source-map": {
      "version": "0.6.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/inline-source-map/-/inline-source-map-0.6.2.tgz",
      "integrity": "sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU=",
      "requires": {
        "source-map": "~0.5.3"
      }
    },
    "insert-module-globals": {
      "version": "7.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/insert-module-globals/-/insert-module-globals-7.2.0.tgz",
      "integrity": "sha1-7IfltCcoR54ye9XFxxYR3ftHUro=",
      "requires": {
        "JSONStream": "^1.0.3",
        "acorn-node": "^1.5.2",
        "combine-source-map": "^0.8.0",
        "concat-stream": "^1.6.1",
        "is-buffer": "^1.1.0",
        "path-is-absolute": "^1.0.1",
        "process": "~0.11.0",
        "through2": "^2.0.0",
        "undeclared-identifiers": "^1.1.2",
        "xtend": "^4.0.0"
      }
    },
    "is-buffer": {
      "version": "1.1.6",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/is-buffer/-/is-buffer-1.1.6.tgz",
      "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4="
    },
    "isarray": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/isarray/-/isarray-1.0.0.tgz",
      "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
    },
    "json-stable-stringify": {
      "version": "0.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz",
      "integrity": "sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U=",
      "requires": {
        "jsonify": "~0.0.0"
      }
    },
    "jsonify": {
      "version": "0.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/jsonify/-/jsonify-0.0.0.tgz",
      "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM="
    },
    "jsonparse": {
      "version": "1.3.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/jsonparse/-/jsonparse-1.3.1.tgz",
      "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA="
    },
    "labeled-stream-splicer": {
      "version": "2.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz",
      "integrity": "sha1-nP+jL9meFhL9HYao25YkFtUpKSY=",
      "requires": {
        "inherits": "^2.0.1",
        "isarray": "^2.0.4",
        "stream-splicer": "^2.0.0"
      },
      "dependencies": {
        "isarray": {
          "version": "2.0.4",
          "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/isarray/-/isarray-2.0.4.tgz",
          "integrity": "sha1-OOe8uw87obeTPIa6GJTd/DeBu7c="
        }
      }
    },
    "lodash.memoize": {
      "version": "3.0.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/lodash.memoize/-/lodash.memoize-3.0.4.tgz",
      "integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8="
    },
    "md5.js": {
      "version": "1.3.5",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/md5.js/-/md5.js-1.3.5.tgz",
      "integrity": "sha1-tdB7jjIW4+J81yjXL3DR5qNCAF8=",
      "requires": {
        "hash-base": "^3.0.0",
        "inherits": "^2.0.1",
        "safe-buffer": "^5.1.2"
      }
    },
    "miller-rabin": {
      "version": "4.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/miller-rabin/-/miller-rabin-4.0.1.tgz",
      "integrity": "sha1-8IA1HIZbDcViqEYpZtqlNUPHik0=",
      "requires": {
        "bn.js": "^4.0.0",
        "brorand": "^1.0.1"
      }
    },
    "minimalistic-assert": {
      "version": "1.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
      "integrity": "sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc="
    },
    "minimalistic-crypto-utils": {
      "version": "1.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
      "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo="
    },
    "minimatch": {
      "version": "3.0.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/minimatch/-/minimatch-3.0.4.tgz",
      "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
      "requires": {
        "brace-expansion": "^1.1.7"
      }
    },
    "minimist": {
      "version": "1.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/minimist/-/minimist-1.2.0.tgz",
      "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
    },
    "mkdirp": {
      "version": "0.5.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/mkdirp/-/mkdirp-0.5.1.tgz",
      "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
      "requires": {
        "minimist": "0.0.8"
      },
      "dependencies": {
        "minimist": {
          "version": "0.0.8",
          "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/minimist/-/minimist-0.0.8.tgz",
          "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
        }
      }
    },
    "module-deps": {
      "version": "6.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/module-deps/-/module-deps-6.2.0.tgz",
      "integrity": "sha1-1BoueQJFzjGRceTnxNjHOZO6PNU=",
      "requires": {
        "JSONStream": "^1.0.3",
        "browser-resolve": "^1.7.0",
        "cached-path-relative": "^1.0.0",
        "concat-stream": "~1.6.0",
        "defined": "^1.0.0",
        "detective": "^5.0.2",
        "duplexer2": "^0.1.2",
        "inherits": "^2.0.1",
        "parents": "^1.0.0",
        "readable-stream": "^2.0.2",
        "resolve": "^1.4.0",
        "stream-combiner2": "^1.1.1",
        "subarg": "^1.0.0",
        "through2": "^2.0.0",
        "xtend": "^4.0.0"
      }
    },
    "once": {
      "version": "1.4.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/once/-/once-1.4.0.tgz",
      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
      "requires": {
        "wrappy": "1"
      }
    },
    "os-browserify": {
      "version": "0.3.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/os-browserify/-/os-browserify-0.3.0.tgz",
      "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc="
    },
    "pako": {
      "version": "1.0.10",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/pako/-/pako-1.0.10.tgz",
      "integrity": "sha1-Qyi621CGpCaqkPVBl31JVdpclzI="
    },
    "parents": {
      "version": "1.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/parents/-/parents-1.0.1.tgz",
      "integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=",
      "requires": {
        "path-platform": "~0.11.15"
      }
    },
    "parse-asn1": {
      "version": "5.1.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/parse-asn1/-/parse-asn1-5.1.4.tgz",
      "integrity": "sha1-N/Zij4I/vesic7TVQENKIvPvH8w=",
      "requires": {
        "asn1.js": "^4.0.0",
        "browserify-aes": "^1.0.0",
        "create-hash": "^1.1.0",
        "evp_bytestokey": "^1.0.0",
        "pbkdf2": "^3.0.3",
        "safe-buffer": "^5.1.1"
      }
    },
    "path-browserify": {
      "version": "0.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/path-browserify/-/path-browserify-0.0.1.tgz",
      "integrity": "sha1-5sTd1+06onxoogzE5Q4aTug7vEo="
    },
    "path-is-absolute": {
      "version": "1.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
      "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
    },
    "path-parse": {
      "version": "1.0.6",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/path-parse/-/path-parse-1.0.6.tgz",
      "integrity": "sha1-1i27VnlAXXLEc37FhgDp3c8G0kw="
    },
    "path-platform": {
      "version": "0.11.15",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/path-platform/-/path-platform-0.11.15.tgz",
      "integrity": "sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I="
    },
    "pbkdf2": {
      "version": "3.0.17",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/pbkdf2/-/pbkdf2-3.0.17.tgz",
      "integrity": "sha1-l2wgZTBhexTrsyEUI597CTNuk6Y=",
      "requires": {
        "create-hash": "^1.1.2",
        "create-hmac": "^1.1.4",
        "ripemd160": "^2.0.1",
        "safe-buffer": "^5.0.1",
        "sha.js": "^2.4.8"
      }
    },
    "process": {
      "version": "0.11.10",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/process/-/process-0.11.10.tgz",
      "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
    },
    "process-nextick-args": {
      "version": "2.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
      "integrity": "sha1-o31zL0JxtKsa0HDTVQjoKQeI/6o="
    },
    "public-encrypt": {
      "version": "4.0.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/public-encrypt/-/public-encrypt-4.0.3.tgz",
      "integrity": "sha1-T8ydd6B+SLp1J+fL4N4z0HATMeA=",
      "requires": {
        "bn.js": "^4.1.0",
        "browserify-rsa": "^4.0.0",
        "create-hash": "^1.1.0",
        "parse-asn1": "^5.0.0",
        "randombytes": "^2.0.1",
        "safe-buffer": "^5.1.2"
      }
    },
    "punycode": {
      "version": "1.4.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/punycode/-/punycode-1.4.1.tgz",
      "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
    },
    "querystring": {
      "version": "0.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/querystring/-/querystring-0.2.0.tgz",
      "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
    },
    "querystring-es3": {
      "version": "0.2.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/querystring-es3/-/querystring-es3-0.2.1.tgz",
      "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM="
    },
    "randombytes": {
      "version": "2.1.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/randombytes/-/randombytes-2.1.0.tgz",
      "integrity": "sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=",
      "requires": {
        "safe-buffer": "^5.1.0"
      }
    },
    "randomfill": {
      "version": "1.0.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/randomfill/-/randomfill-1.0.4.tgz",
      "integrity": "sha1-ySGW/IarQr6YPxvzF3giSTHWFFg=",
      "requires": {
        "randombytes": "^2.0.5",
        "safe-buffer": "^5.1.0"
      }
    },
    "read-only-stream": {
      "version": "2.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/read-only-stream/-/read-only-stream-2.0.0.tgz",
      "integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=",
      "requires": {
        "readable-stream": "^2.0.2"
      }
    },
    "readable-stream": {
      "version": "2.3.6",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/readable-stream/-/readable-stream-2.3.6.tgz",
      "integrity": "sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8=",
      "requires": {
        "core-util-is": "~1.0.0",
        "inherits": "~2.0.3",
        "isarray": "~1.0.0",
        "process-nextick-args": "~2.0.0",
        "safe-buffer": "~5.1.1",
        "string_decoder": "~1.1.1",
        "util-deprecate": "~1.0.1"
      },
      "dependencies": {
        "string_decoder": {
          "version": "1.1.1",
          "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/string_decoder/-/string_decoder-1.1.1.tgz",
          "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=",
          "requires": {
            "safe-buffer": "~5.1.0"
          }
        }
      }
    },
    "resolve": {
      "version": "1.10.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/resolve/-/resolve-1.10.1.tgz",
      "integrity": "sha1-ZkhCrJYHlbvnWCIc3M2mH7ZLXxg=",
      "requires": {
        "path-parse": "^1.0.6"
      }
    },
    "ripemd160": {
      "version": "2.0.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/ripemd160/-/ripemd160-2.0.2.tgz",
      "integrity": "sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=",
      "requires": {
        "hash-base": "^3.0.0",
        "inherits": "^2.0.1"
      }
    },
    "safe-buffer": {
      "version": "5.1.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/safe-buffer/-/safe-buffer-5.1.2.tgz",
      "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0="
    },
    "sha.js": {
      "version": "2.4.11",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/sha.js/-/sha.js-2.4.11.tgz",
      "integrity": "sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=",
      "requires": {
        "inherits": "^2.0.1",
        "safe-buffer": "^5.0.1"
      }
    },
    "shasum": {
      "version": "1.0.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/shasum/-/shasum-1.0.2.tgz",
      "integrity": "sha1-5wEjENj0F/TetXEhUOVni4euVl8=",
      "requires": {
        "json-stable-stringify": "~0.0.0",
        "sha.js": "~2.4.4"
      }
    },
    "shell-quote": {
      "version": "1.6.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/shell-quote/-/shell-quote-1.6.1.tgz",
      "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=",
      "requires": {
        "array-filter": "~0.0.0",
        "array-map": "~0.0.0",
        "array-reduce": "~0.0.0",
        "jsonify": "~0.0.0"
      }
    },
    "simple-concat": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/simple-concat/-/simple-concat-1.0.0.tgz",
      "integrity": "sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY="
    },
    "source-map": {
      "version": "0.5.7",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/source-map/-/source-map-0.5.7.tgz",
      "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
    },
    "stream-browserify": {
      "version": "2.0.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/stream-browserify/-/stream-browserify-2.0.2.tgz",
      "integrity": "sha1-h1IdOKRKp+6RzhzSpH3wy0ndZgs=",
      "requires": {
        "inherits": "~2.0.1",
        "readable-stream": "^2.0.2"
      }
    },
    "stream-combiner2": {
      "version": "1.1.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/stream-combiner2/-/stream-combiner2-1.1.1.tgz",
      "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=",
      "requires": {
        "duplexer2": "~0.1.0",
        "readable-stream": "^2.0.2"
      }
    },
    "stream-http": {
      "version": "2.8.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/stream-http/-/stream-http-2.8.3.tgz",
      "integrity": "sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw=",
      "requires": {
        "builtin-status-codes": "^3.0.0",
        "inherits": "^2.0.1",
        "readable-stream": "^2.3.6",
        "to-arraybuffer": "^1.0.0",
        "xtend": "^4.0.0"
      }
    },
    "stream-splicer": {
      "version": "2.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/stream-splicer/-/stream-splicer-2.0.0.tgz",
      "integrity": "sha1-G2O+Q4oTPktnHMGTUZdgAXWRDYM=",
      "requires": {
        "inherits": "^2.0.1",
        "readable-stream": "^2.0.2"
      }
    },
    "string_decoder": {
      "version": "1.2.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/string_decoder/-/string_decoder-1.2.0.tgz",
      "integrity": "sha1-/obnOLGVRK/nBGkkOyoe6SQOro0=",
      "requires": {
        "safe-buffer": "~5.1.0"
      }
    },
    "subarg": {
      "version": "1.0.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/subarg/-/subarg-1.0.0.tgz",
      "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=",
      "requires": {
        "minimist": "^1.1.0"
      }
    },
    "syntax-error": {
      "version": "1.4.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/syntax-error/-/syntax-error-1.4.0.tgz",
      "integrity": "sha1-LZ1P9cBkrLcRWUo+O5UFStUdkHw=",
      "requires": {
        "acorn-node": "^1.2.0"
      }
    },
    "through": {
      "version": "2.3.8",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/through/-/through-2.3.8.tgz",
      "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="
    },
    "through2": {
      "version": "2.0.5",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/through2/-/through2-2.0.5.tgz",
      "integrity": "sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=",
      "requires": {
        "readable-stream": "~2.3.6",
        "xtend": "~4.0.1"
      }
    },
    "timers-browserify": {
      "version": "1.4.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/timers-browserify/-/timers-browserify-1.4.2.tgz",
      "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=",
      "requires": {
        "process": "~0.11.0"
      }
    },
    "to-arraybuffer": {
      "version": "1.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
      "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M="
    },
    "tty-browserify": {
      "version": "0.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/tty-browserify/-/tty-browserify-0.0.1.tgz",
      "integrity": "sha1-PwUlHuF5BN/QZ3VGZw25ZRaCuBE="
    },
    "typedarray": {
      "version": "0.0.6",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/typedarray/-/typedarray-0.0.6.tgz",
      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
    },
    "typescript": {
      "version": "3.4.5",
      "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.4.5.tgz",
      "integrity": "sha512-YycBxUb49UUhdNMU5aJ7z5Ej2XGmaIBL0x34vZ82fn3hGvD+bgrMrVDpatgz2f7YxUMJxMkbWxJZeAvDxVe7Vw=="
    },
    "umd": {
      "version": "3.0.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/umd/-/umd-3.0.3.tgz",
      "integrity": "sha1-qp/mU8QrkJdnhInAEACstp8LJs8="
    },
    "undeclared-identifiers": {
      "version": "1.1.3",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz",
      "integrity": "sha1-klTB03vawKwrUt5LZyJ5LSqR4w8=",
      "requires": {
        "acorn-node": "^1.3.0",
        "dash-ast": "^1.0.0",
        "get-assigned-identifiers": "^1.2.0",
        "simple-concat": "^1.0.0",
        "xtend": "^4.0.1"
      }
    },
    "url": {
      "version": "0.11.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/url/-/url-0.11.0.tgz",
      "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
      "requires": {
        "punycode": "1.3.2",
        "querystring": "0.2.0"
      },
      "dependencies": {
        "punycode": {
          "version": "1.3.2",
          "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/punycode/-/punycode-1.3.2.tgz",
          "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
        }
      }
    },
    "util": {
      "version": "0.10.4",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/util/-/util-0.10.4.tgz",
      "integrity": "sha1-OqASW/5mikZy3liFfTrOJ+y3aQE=",
      "requires": {
        "inherits": "2.0.3"
      }
    },
    "util-deprecate": {
      "version": "1.0.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/util-deprecate/-/util-deprecate-1.0.2.tgz",
      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
    },
    "vm-browserify": {
      "version": "1.1.0",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/vm-browserify/-/vm-browserify-1.1.0.tgz",
      "integrity": "sha1-vXbWojMj4sqP+hICjcBFWcdfkBk="
    },
    "wrappy": {
      "version": "1.0.2",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/wrappy/-/wrappy-1.0.2.tgz",
      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
    },
    "xtend": {
      "version": "4.0.1",
      "resolved": "https://aodocs.jfrog.io/aodocs/api/npm/aodocs-npm/xtend/-/xtend-4.0.1.tgz",
      "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68="
    }
  }
}