-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
1290 lines (1290 loc) · 50.5 KB
/
package-lock.json
File metadata and controls
1290 lines (1290 loc) · 50.5 KB
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": "jlr",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@microsoft/recognizers-text": {
"version": "1.1.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@microsoft/recognizers-text/-/recognizers-text-1.1.4.tgz",
"integrity": "sha1-JkUw90iyytP6xU1TU4+IrSv5m34="
},
"@microsoft/recognizers-text-choice": {
"version": "1.1.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@microsoft/recognizers-text-choice/-/recognizers-text-choice-1.1.4.tgz",
"integrity": "sha1-jpro+ASuSb1X3Wu/InoqsOFKkEE=",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"grapheme-splitter": "^1.0.2"
}
},
"@microsoft/recognizers-text-date-time": {
"version": "1.1.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@microsoft/recognizers-text-date-time/-/recognizers-text-date-time-1.1.4.tgz",
"integrity": "sha1-08zdvJufgb+lZN9blX2910ADZCU=",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"@microsoft/recognizers-text-number": "~1.1.4",
"@microsoft/recognizers-text-number-with-unit": "~1.1.4",
"lodash.isequal": "^4.5.0",
"lodash.tonumber": "^4.0.3"
}
},
"@microsoft/recognizers-text-number": {
"version": "1.1.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@microsoft/recognizers-text-number/-/recognizers-text-number-1.1.4.tgz",
"integrity": "sha1-H74EczIuYpK7k/mvhsbKXOBSEtk=",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"bignumber.js": "^7.2.1",
"lodash.escaperegexp": "^4.1.2",
"lodash.sortby": "^4.7.0",
"lodash.trimend": "^4.5.1"
}
},
"@microsoft/recognizers-text-number-with-unit": {
"version": "1.1.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@microsoft/recognizers-text-number-with-unit/-/recognizers-text-number-with-unit-1.1.4.tgz",
"integrity": "sha1-p/JhTUGa2y/qmeXDJBUepFUmKqg=",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"@microsoft/recognizers-text-number": "~1.1.4",
"lodash.escaperegexp": "^4.1.2",
"lodash.last": "^3.0.0",
"lodash.max": "^4.0.1"
}
},
"@microsoft/recognizers-text-sequence": {
"version": "1.1.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@microsoft/recognizers-text-sequence/-/recognizers-text-sequence-1.1.4.tgz",
"integrity": "sha1-M584KSuiB8147ife/uoat5IG+l0=",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"grapheme-splitter": "^1.0.2"
}
},
"@microsoft/recognizers-text-suite": {
"version": "1.1.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@microsoft/recognizers-text-suite/-/recognizers-text-suite-1.1.4.tgz",
"integrity": "sha1-itshKO06pgoEK+AI1ONEnXEo8d8=",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"@microsoft/recognizers-text-choice": "~1.1.4",
"@microsoft/recognizers-text-date-time": "~1.1.4",
"@microsoft/recognizers-text-number": "~1.1.4",
"@microsoft/recognizers-text-number-with-unit": "~1.1.4",
"@microsoft/recognizers-text-sequence": "~1.1.4"
}
},
"@nodelib/fs.scandir": {
"version": "2.1.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@nodelib/fs.scandir/-/fs.scandir-2.1.1.tgz",
"integrity": "sha1-f6j+1lSTnho5dT0oa0i0g20A4Os=",
"requires": {
"@nodelib/fs.stat": "2.0.1",
"run-parallel": "^1.1.9"
}
},
"@nodelib/fs.stat": {
"version": "2.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@nodelib/fs.stat/-/fs.stat-2.0.1.tgz",
"integrity": "sha1-gU9xsRZzkM/Lams9nN6wlRoZLBQ="
},
"@nodelib/fs.walk": {
"version": "1.2.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@nodelib/fs.walk/-/fs.walk-1.2.2.tgz",
"integrity": "sha1-amRQxeFwEqvYFFDrdJSaTZcNKAc=",
"requires": {
"@nodelib/fs.scandir": "2.1.1",
"fastq": "^1.6.0"
}
},
"@novel-segment/util": {
"version": "1.0.6",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@novel-segment/util/-/util-1.0.6.tgz",
"integrity": "sha1-Zcho6Wsrh2V6tCgQVpzaMKE525k="
},
"@types/lodash": {
"version": "4.14.134",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@types/lodash/-/lodash-4.14.134.tgz",
"integrity": "sha1-kDK0QBIts6KlYgDpEZGZYWHd5bk="
},
"@types/node": {
"version": "12.0.10",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/@types/node/-/node-12.0.10.tgz",
"integrity": "sha1-Ubq/nH3q3VNDYgBV/Ir/eZXIsDE="
},
"adler-32": {
"version": "1.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/adler-32/-/adler-32-1.2.0.tgz",
"integrity": "sha1-aj5r8KY5ALoVZSgIyxXGgT0aXyU=",
"requires": {
"exit-on-epipe": "~1.0.1",
"printj": "~1.1.0"
}
},
"ansi-regex": {
"version": "4.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc="
},
"array-find-index": {
"version": "1.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/array-find-index/-/array-find-index-1.0.2.tgz",
"integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E="
},
"array-hyper-unique": {
"version": "1.0.7",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/array-hyper-unique/-/array-hyper-unique-1.0.7.tgz",
"integrity": "sha1-oyVZ57yFFUY5WGq/qPuOn2wbvgw=",
"requires": {
"deep-eql": "^3.0.1"
}
},
"async": {
"version": "2.6.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/async/-/async-2.6.2.tgz",
"integrity": "sha1-GDMOp+bjE4h/XS8qkEusb+TdU4E=",
"requires": {
"lodash": "^4.17.11"
}
},
"big.js": {
"version": "3.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/big.js/-/big.js-3.2.0.tgz",
"integrity": "sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4="
},
"bignumber.js": {
"version": "7.2.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/bignumber.js/-/bignumber.js-7.2.1.tgz",
"integrity": "sha1-gMBIdZ2CaACAfEv9Uh5Q7bulel8="
},
"bluebird": {
"version": "3.5.5",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/bluebird/-/bluebird-3.5.5.tgz",
"integrity": "sha1-qNCv1zJR7/u9X+OEp31zADwXpx8="
},
"braces": {
"version": "3.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/braces/-/braces-3.0.2.tgz",
"integrity": "sha1-NFThpGLujVmeI23zNs2epPiv4Qc=",
"requires": {
"fill-range": "^7.0.1"
}
},
"camelcase": {
"version": "2.1.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/camelcase/-/camelcase-2.1.1.tgz",
"integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8="
},
"camelcase-keys": {
"version": "2.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
"integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
"requires": {
"camelcase": "^2.0.0",
"map-obj": "^1.0.0"
}
},
"cfb": {
"version": "1.1.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/cfb/-/cfb-1.1.1.tgz",
"integrity": "sha1-fzmfTFQZVHFdDO2bHN7MUrVUKQo=",
"requires": {
"adler-32": "~1.2.0",
"commander": "^2.16.0",
"crc-32": "~1.2.0",
"printj": "~1.1.2"
}
},
"chinese-parseint": {
"version": "1.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/chinese-parseint/-/chinese-parseint-1.1.0.tgz",
"integrity": "sha1-wDX/drTxJgfAyVUkIj+MxzQXXGk="
},
"chinese_convert": {
"version": "1.0.8",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/chinese_convert/-/chinese_convert-1.0.8.tgz",
"integrity": "sha1-JaxM3WVlwVzrRkJvGlTZKAB6f3A="
},
"cjk-conv": {
"version": "1.1.63",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/cjk-conv/-/cjk-conv-1.1.63.tgz",
"integrity": "sha1-nNJMrVcE8EHL6/0rYqn/E8DHmEg=",
"requires": {
"array-hyper-unique": "^1.0.7",
"chinese_convert": "1.0.8",
"deepmerge-plus": "^2.1.3",
"japanese": "^1.2.0",
"regexp-helper": "^1.0.8",
"uni-string": "^1.1.2"
}
},
"class-proxy": {
"version": "1.1.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/class-proxy/-/class-proxy-1.1.2.tgz",
"integrity": "sha1-69OMmSfcFGkmhz2GaSQY/QV6MiA="
},
"codepage": {
"version": "1.14.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/codepage/-/codepage-1.14.0.tgz",
"integrity": "sha1-jL4lSBMjVZ19MHVxsP/5HnodL5k=",
"requires": {
"commander": "~2.14.1",
"exit-on-epipe": "~1.0.1"
},
"dependencies": {
"commander": {
"version": "2.14.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/commander/-/commander-2.14.1.tgz",
"integrity": "sha1-IjUSPjevjKPGXfRbAm29NXsBuao="
}
}
},
"commander": {
"version": "2.20.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/commander/-/commander-2.20.0.tgz",
"integrity": "sha1-1YuytcHuj4ew00ACfp6U4iLFpCI="
},
"core-decorators": {
"version": "0.20.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/core-decorators/-/core-decorators-0.20.0.tgz",
"integrity": "sha1-YFiWYkBTr4wo775zXCWjAaYcZcU="
},
"crc-32": {
"version": "1.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/crc-32/-/crc-32-1.2.0.tgz",
"integrity": "sha1-yy224puIUI4y2d0OwWk+e0Ghggg=",
"requires": {
"exit-on-epipe": "~1.0.1",
"printj": "~1.1.0"
}
},
"crlf-normalize": {
"version": "1.0.3",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/crlf-normalize/-/crlf-normalize-1.0.3.tgz",
"integrity": "sha1-RLZ23yPalos4BZ2VizTrcHm28y8="
},
"currently-unhandled": {
"version": "0.4.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
"integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
"requires": {
"array-find-index": "^1.0.1"
}
},
"decamelize": {
"version": "1.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
},
"deep-eql": {
"version": "3.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/deep-eql/-/deep-eql-3.0.1.tgz",
"integrity": "sha1-38lARACtHI/gI+faHfHBR8S0RN8=",
"requires": {
"type-detect": "^4.0.0"
}
},
"deep-is": {
"version": "0.1.3",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/deep-is/-/deep-is-0.1.3.tgz",
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
},
"deepmerge": {
"version": "3.3.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/deepmerge/-/deepmerge-3.3.0.tgz",
"integrity": "sha1-08R/1vOpPVF7FEJrBiihewEl9fc="
},
"deepmerge-plus": {
"version": "2.1.3",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/deepmerge-plus/-/deepmerge-plus-2.1.3.tgz",
"integrity": "sha1-hP4SwHFyxdDq/S1M+//gaxfQqdQ=",
"requires": {
"is-mergeable-object": "1.1.0"
}
},
"doublearray": {
"version": "0.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/doublearray/-/doublearray-0.0.2.tgz",
"integrity": "sha1-Yxhv6NNEEydtNiH2qg7F954ifvk="
},
"emoji-regex": {
"version": "8.0.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/emoji-regex/-/emoji-regex-8.0.0.tgz",
"integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc="
},
"error-ex": {
"version": "1.3.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/error-ex/-/error-ex-1.3.2.tgz",
"integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=",
"requires": {
"is-arrayish": "^0.2.1"
}
},
"es6-class-prototype": {
"version": "1.0.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/es6-class-prototype/-/es6-class-prototype-1.0.4.tgz",
"integrity": "sha1-Y1s+AWGSmJua1MYbUnWLYIe4kMg=",
"requires": {
"class-proxy": "^1.1.2"
}
},
"escodegen": {
"version": "1.11.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/escodegen/-/escodegen-1.11.1.tgz",
"integrity": "sha1-xIX/jWtM24nif0qFbpHxGEAcpRA=",
"requires": {
"esprima": "^3.1.3",
"estraverse": "^4.2.0",
"esutils": "^2.0.2",
"optionator": "^0.8.1",
"source-map": "~0.6.1"
},
"dependencies": {
"esprima": {
"version": "3.1.3",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/esprima/-/esprima-3.1.3.tgz",
"integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM="
}
}
},
"esprima": {
"version": "4.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/esprima/-/esprima-4.0.1.tgz",
"integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
},
"estraverse": {
"version": "4.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/estraverse/-/estraverse-4.2.0.tgz",
"integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM="
},
"esutils": {
"version": "2.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/esutils/-/esutils-2.0.2.tgz",
"integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs="
},
"exit-on-epipe": {
"version": "1.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz",
"integrity": "sha1-C92S6H1ShdJn2qgXHQ6wYVlolpI="
},
"extend": {
"version": "3.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/extend/-/extend-3.0.2.tgz",
"integrity": "sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo="
},
"fast-csv": {
"version": "3.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/fast-csv/-/fast-csv-3.0.1.tgz",
"integrity": "sha1-0g4Nfo8mJryJ9wV+SEHE9LRNMFQ=",
"requires": {
"@types/lodash": "^4.14.132",
"@types/node": "^12.0.2",
"lodash": "^4.17.11"
}
},
"fast-glob": {
"version": "3.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/fast-glob/-/fast-glob-3.0.2.tgz",
"integrity": "sha1-yreupctDhle727EYoz5pIaePDX8=",
"requires": {
"@nodelib/fs.stat": "^2.0.1",
"@nodelib/fs.walk": "^1.2.1",
"glob-parent": "^5.0.0",
"is-glob": "^4.0.1",
"merge2": "^1.2.3",
"micromatch": "^4.0.2"
}
},
"fast-levenshtein": {
"version": "2.0.6",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
},
"fastq": {
"version": "1.6.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/fastq/-/fastq-1.6.0.tgz",
"integrity": "sha1-Tsijj0rCXyFJJnOtt+rpz+9H0cI=",
"requires": {
"reusify": "^1.0.0"
}
},
"fill-range": {
"version": "7.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/fill-range/-/fill-range-7.0.1.tgz",
"integrity": "sha1-GRmmp8df44ssfHflGYU12prN2kA=",
"requires": {
"to-regex-range": "^5.0.1"
}
},
"find-up": {
"version": "1.1.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/find-up/-/find-up-1.1.2.tgz",
"integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
"requires": {
"path-exists": "^2.0.0",
"pinkie-promise": "^2.0.0"
}
},
"frac": {
"version": "1.1.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/frac/-/frac-1.1.2.tgz",
"integrity": "sha1-PXT39keMiKG1AgMG10fcYxPHTQs="
},
"fs-extra": {
"version": "8.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/fs-extra/-/fs-extra-8.0.1.tgz",
"integrity": "sha1-kClAgfl4sfGC80ekQKIJFUNEKFs=",
"requires": {
"graceful-fs": "^4.1.2",
"jsonfile": "^4.0.0",
"universalify": "^0.1.0"
}
},
"get-stdin": {
"version": "4.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/get-stdin/-/get-stdin-4.0.1.tgz",
"integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4="
},
"glob-parent": {
"version": "5.0.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/glob-parent/-/glob-parent-5.0.0.tgz",
"integrity": "sha1-HcmfDzmwBtPpLCwoQGg4Lwwg6VQ=",
"requires": {
"is-glob": "^4.0.1"
}
},
"graceful-fs": {
"version": "4.1.15",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/graceful-fs/-/graceful-fs-4.1.15.tgz",
"integrity": "sha1-/7cD4QZuig7qpMi4C6klPu77+wA="
},
"grapheme-splitter": {
"version": "1.0.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
"integrity": "sha1-nPOmZcYkdHmJaDSvNc8du0QAdn4="
},
"handlebars": {
"version": "4.1.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/handlebars/-/handlebars-4.1.2.tgz",
"integrity": "sha1-trN8HO0DBrIh4JT8eso+wjsTG2c=",
"requires": {
"neo-async": "^2.6.0",
"optimist": "^0.6.1",
"source-map": "^0.6.1",
"uglify-js": "^3.1.4"
}
},
"hex-lib": {
"version": "1.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/hex-lib/-/hex-lib-1.0.2.tgz",
"integrity": "sha1-LhKdqgRKLnaFW2LEeSkVjP4THAc="
},
"hosted-git-info": {
"version": "2.7.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/hosted-git-info/-/hosted-git-info-2.7.1.tgz",
"integrity": "sha1-l/I2l3vW4SVAiTD/bePuxigewEc="
},
"indent-string": {
"version": "2.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/indent-string/-/indent-string-2.1.0.tgz",
"integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=",
"requires": {
"repeating": "^2.0.0"
}
},
"inherits": {
"version": "2.0.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/inherits/-/inherits-2.0.4.tgz",
"integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w="
},
"is-arrayish": {
"version": "0.2.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/is-arrayish/-/is-arrayish-0.2.1.tgz",
"integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
},
"is-extglob": {
"version": "2.1.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/is-extglob/-/is-extglob-2.1.1.tgz",
"integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
},
"is-finite": {
"version": "1.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/is-finite/-/is-finite-1.0.2.tgz",
"integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
"requires": {
"number-is-nan": "^1.0.0"
}
},
"is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
"integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0="
},
"is-glob": {
"version": "4.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/is-glob/-/is-glob-4.0.1.tgz",
"integrity": "sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=",
"requires": {
"is-extglob": "^2.1.1"
}
},
"is-mergeable-object": {
"version": "1.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/is-mergeable-object/-/is-mergeable-object-1.1.0.tgz",
"integrity": "sha1-qEbozw4rrWqM+LJDtjtMQ7mQeZA="
},
"is-number": {
"version": "7.0.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/is-number/-/is-number-7.0.0.tgz",
"integrity": "sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss="
},
"is-utf8": {
"version": "0.2.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/is-utf8/-/is-utf8-0.2.1.tgz",
"integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI="
},
"japanese": {
"version": "1.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/japanese/-/japanese-1.2.0.tgz",
"integrity": "sha1-tyGAamsaVR4V+sTj11TfZSC9u0Y=",
"requires": {
"big.js": "^3.1.3",
"extend": "^3.0.0",
"meow": "~3.7.0"
}
},
"jsonfile": {
"version": "4.0.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/jsonfile/-/jsonfile-4.0.0.tgz",
"integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
"requires": {
"graceful-fs": "^4.1.6"
}
},
"kuromoji": {
"version": "0.1.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/kuromoji/-/kuromoji-0.1.2.tgz",
"integrity": "sha1-KT8NZwbfAGESE3mAWI1dqsJtB5A=",
"requires": {
"async": "^2.0.1",
"doublearray": "0.0.2",
"zlibjs": "^0.3.1"
}
},
"levn": {
"version": "0.3.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/levn/-/levn-0.3.0.tgz",
"integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
"requires": {
"prelude-ls": "~1.1.2",
"type-check": "~0.3.2"
}
},
"load-json-file": {
"version": "1.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/load-json-file/-/load-json-file-1.1.0.tgz",
"integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
"requires": {
"graceful-fs": "^4.1.2",
"parse-json": "^2.2.0",
"pify": "^2.0.0",
"pinkie-promise": "^2.0.0",
"strip-bom": "^2.0.0"
}
},
"lodash": {
"version": "4.17.11",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash/-/lodash-4.17.11.tgz",
"integrity": "sha1-s56mIp72B+zYniyN8SU2iRysm40="
},
"lodash.clonedeep": {
"version": "4.5.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
"integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8="
},
"lodash.escaperegexp": {
"version": "4.1.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz",
"integrity": "sha1-ZHYsSGGAglGKw99Mz11YhtriA0c="
},
"lodash.isequal": {
"version": "4.5.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
"integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA="
},
"lodash.last": {
"version": "3.0.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash.last/-/lodash.last-3.0.0.tgz",
"integrity": "sha1-JC9mMRLdTG5jcoxgo8kJ0b2tvUw="
},
"lodash.max": {
"version": "4.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash.max/-/lodash.max-4.0.1.tgz",
"integrity": "sha1-hzVWbGGLNan3YFILSHrnllivE2o="
},
"lodash.sortby": {
"version": "4.7.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
"integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg="
},
"lodash.tonumber": {
"version": "4.0.3",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash.tonumber/-/lodash.tonumber-4.0.3.tgz",
"integrity": "sha1-C5azGzVnJ5Prf1pj7nkfG56QJdk="
},
"lodash.trimend": {
"version": "4.5.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/lodash.trimend/-/lodash.trimend-4.5.1.tgz",
"integrity": "sha1-EoBENyhrmMrYmWt5QU4RMAEUCC8="
},
"loud-rejection": {
"version": "1.6.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/loud-rejection/-/loud-rejection-1.6.0.tgz",
"integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=",
"requires": {
"currently-unhandled": "^0.4.1",
"signal-exit": "^3.0.0"
}
},
"map-obj": {
"version": "1.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/map-obj/-/map-obj-1.0.1.tgz",
"integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0="
},
"meow": {
"version": "3.7.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/meow/-/meow-3.7.0.tgz",
"integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=",
"requires": {
"camelcase-keys": "^2.0.0",
"decamelize": "^1.1.2",
"loud-rejection": "^1.0.0",
"map-obj": "^1.0.1",
"minimist": "^1.1.3",
"normalize-package-data": "^2.3.4",
"object-assign": "^4.0.1",
"read-pkg-up": "^1.0.1",
"redent": "^1.0.0",
"trim-newlines": "^1.0.0"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
}
}
},
"merge2": {
"version": "1.2.3",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/merge2/-/merge2-1.2.3.tgz",
"integrity": "sha1-fumdvWm7ZIFoklPwGEiKG5ArDtU="
},
"micromatch": {
"version": "4.0.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/micromatch/-/micromatch-4.0.2.tgz",
"integrity": "sha1-T8sJmb+fvC/L3SEvbWKbmlbDklk=",
"requires": {
"braces": "^3.0.1",
"picomatch": "^2.0.5"
}
},
"minimist": {
"version": "0.0.10",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/minimist/-/minimist-0.0.10.tgz",
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8="
},
"neo-async": {
"version": "2.6.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/neo-async/-/neo-async-2.6.1.tgz",
"integrity": "sha1-rCetpmFn+ohJpq3dg39rGJrSCBw="
},
"node-nlp": {
"version": "3.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/node-nlp/-/node-nlp-3.2.0.tgz",
"integrity": "sha1-JF8cwVUP6vdyby+Ak7z3ibLDMDI=",
"requires": {
"@microsoft/recognizers-text-suite": "1.1.4",
"escodegen": "^1.11.1",
"esprima": "^4.0.1",
"handlebars": "^4.1.2",
"kuromoji": "^0.1.2",
"novel-segment": "^2.2.32",
"xlsx": "^0.14.3"
}
},
"normalize-package-data": {
"version": "2.5.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
"integrity": "sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=",
"requires": {
"hosted-git-info": "^2.1.4",
"resolve": "^1.10.0",
"semver": "2 || 3 || 4 || 5",
"validate-npm-package-license": "^3.0.1"
}
},
"novel-segment": {
"version": "2.3.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/novel-segment/-/novel-segment-2.3.0.tgz",
"integrity": "sha1-JyUvoEMA6vmZQAnL6AGBMlRuQzA=",
"requires": {
"@novel-segment/util": "^1.0.6",
"array-hyper-unique": "^1.0.7",
"bluebird": "^3.5.5",
"cjk-conv": "^1.1.63",
"core-decorators": "^0.20.0",
"crlf-normalize": "^1.0.3",
"deepmerge-plus": "^2.1.3",
"fast-glob": "^3.0.2",
"fs-extra": "^8.0.1",
"hex-lib": "^1.0.2",
"lodash.clonedeep": "^4.5.0",
"regexp-cjk": "^3.3.4",
"segment-dict": "^2.2.121",
"sort-object-keys2": "^1.1.0",
"str-util": "^2.3.21",
"string-natural-compare": "^2.0.3",
"ts-enum-util": "4.0.1",
"ts-type": "^1.2.9",
"uni-string": "^1.1.2"
}
},
"number-is-nan": {
"version": "1.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/number-is-nan/-/number-is-nan-1.0.1.tgz",
"integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0="
},
"object-assign": {
"version": "4.1.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/object-assign/-/object-assign-4.1.1.tgz",
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
},
"optimist": {
"version": "0.6.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/optimist/-/optimist-0.6.1.tgz",
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
"requires": {
"minimist": "~0.0.1",
"wordwrap": "~0.0.2"
},
"dependencies": {
"wordwrap": {
"version": "0.0.3",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/wordwrap/-/wordwrap-0.0.3.tgz",
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
}
}
},
"optionator": {
"version": "0.8.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/optionator/-/optionator-0.8.2.tgz",
"integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=",
"requires": {
"deep-is": "~0.1.3",
"fast-levenshtein": "~2.0.4",
"levn": "~0.3.0",
"prelude-ls": "~1.1.2",
"type-check": "~0.3.2",
"wordwrap": "~1.0.0"
}
},
"parse-json": {
"version": "2.2.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/parse-json/-/parse-json-2.2.0.tgz",
"integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
"requires": {
"error-ex": "^1.2.0"
}
},
"path-exists": {
"version": "2.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/path-exists/-/path-exists-2.1.0.tgz",
"integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
"requires": {
"pinkie-promise": "^2.0.0"
}
},
"path-parse": {
"version": "1.0.6",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/path-parse/-/path-parse-1.0.6.tgz",
"integrity": "sha1-1i27VnlAXXLEc37FhgDp3c8G0kw="
},
"path-type": {
"version": "1.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/path-type/-/path-type-1.1.0.tgz",
"integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
"requires": {
"graceful-fs": "^4.1.2",
"pify": "^2.0.0",
"pinkie-promise": "^2.0.0"
}
},
"picomatch": {
"version": "2.0.7",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/picomatch/-/picomatch-2.0.7.tgz",
"integrity": "sha1-UUFp2MfNC9vuzIomCeNKcWPeafY="
},
"pify": {
"version": "2.3.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/pify/-/pify-2.3.0.tgz",
"integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
},
"pinkie": {
"version": "2.0.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/pinkie/-/pinkie-2.0.4.tgz",
"integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA="
},
"pinkie-promise": {
"version": "2.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
"integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
"requires": {
"pinkie": "^2.0.0"
}
},
"prelude-ls": {
"version": "1.1.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/prelude-ls/-/prelude-ls-1.1.2.tgz",
"integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="
},
"printj": {
"version": "1.1.2",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/printj/-/printj-1.1.2.tgz",
"integrity": "sha1-2Q3rKXWoufYA+zoclOP0xTx4oiI="
},
"read-pkg": {
"version": "1.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/read-pkg/-/read-pkg-1.1.0.tgz",
"integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
"requires": {
"load-json-file": "^1.0.0",
"normalize-package-data": "^2.3.2",
"path-type": "^1.0.0"
}
},
"read-pkg-up": {
"version": "1.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
"integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
"requires": {
"find-up": "^1.0.0",
"read-pkg": "^1.0.0"
}
},
"readable-stream": {
"version": "3.4.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/readable-stream/-/readable-stream-3.4.0.tgz",
"integrity": "sha1-pRwmdUZY4KPCHb9ZFjvUW6b0R/w=",
"requires": {
"inherits": "^2.0.3",
"string_decoder": "^1.1.1",
"util-deprecate": "^1.0.1"
}
},
"redent": {
"version": "1.0.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/redent/-/redent-1.0.0.tgz",
"integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=",
"requires": {
"indent-string": "^2.1.0",
"strip-indent": "^1.0.1"
}
},
"regexp-cjk": {
"version": "3.3.4",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/regexp-cjk/-/regexp-cjk-3.3.4.tgz",
"integrity": "sha1-TD4oyfif5Ot0Hxa9ItipyZtpw9k=",
"requires": {
"array-hyper-unique": "^1.0.7",
"cjk-conv": "^1.1.61",
"lodash": "^4.17.11",
"regexp-helper": "^1.0.8",
"regexp-parser-event": "^1.1.5",
"regexp-parser-literal": "^1.1.0",
"regexp-range": "^1.0.7",
"regexp-support": "^1.0.25"
}
},
"regexp-helper": {
"version": "1.0.8",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/regexp-helper/-/regexp-helper-1.0.8.tgz",
"integrity": "sha1-E8joS67j1gSYXkxb9QXMniJRaEA=",
"requires": {
"regexp-helper-core": "^1.0.6",
"regexp-support": "^1.0.24"
}
},
"regexp-helper-core": {
"version": "1.0.6",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/regexp-helper-core/-/regexp-helper-core-1.0.6.tgz",
"integrity": "sha1-A18vEIp24xhWon9VPtGDJ7gVx7o="
},
"regexp-parser-event": {
"version": "1.1.5",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/regexp-parser-event/-/regexp-parser-event-1.1.5.tgz",
"integrity": "sha1-0gkojmec6EaFeitHOgls3T8UJMk=",
"requires": {
"array-hyper-unique": "^1.0.7",
"regexp-parser-literal": "^1.1.0",
"regexpp2": "^1.3.0",
"ts-type": "^1.2.9"
}
},
"regexp-parser-literal": {
"version": "1.1.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/regexp-parser-literal/-/regexp-parser-literal-1.1.0.tgz",
"integrity": "sha1-MCi8SD2tBz8M93/7cCPpAhfNV7k=",
"requires": {
"array-hyper-unique": "^1.0.7",
"emoji-regex": "^8.0.0",
"regexpp2": "^1.3.0",
"uni-string": "^1.1.0"
}
},
"regexp-range": {
"version": "1.0.7",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/regexp-range/-/regexp-range-1.0.7.tgz",
"integrity": "sha1-vSKy6HGkjLYoScRtwxovAKqaLZQ=",
"requires": {
"array-hyper-unique": "^1.0.7",
"fill-range": "^6.0.0",
"japanese": "^1.2.0"
},
"dependencies": {
"fill-range": {
"version": "6.0.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/fill-range/-/fill-range-6.0.0.tgz",
"integrity": "sha1-Mio8i0WZHRjTigOoSWYbzEoy6mM=",
"requires": {
"is-number": "^7.0.0",
"to-regex-range": "^4.0.1"
}
},
"to-regex-range": {
"version": "4.0.3",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/to-regex-range/-/to-regex-range-4.0.3.tgz",
"integrity": "sha1-ZNz7M2OOyGFg6xqP5pN9cWD81Jo=",
"requires": {
"is-number": "^7.0.0"
}
}
}
},
"regexp-support": {
"version": "1.0.25",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/regexp-support/-/regexp-support-1.0.25.tgz",
"integrity": "sha1-R34jP5Kfa/gruAcIzwZoJdhBmo0=",
"requires": {
"sort-object-keys2": "^1.1.0"
}
},
"regexpp2": {
"version": "1.3.0",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/regexpp2/-/regexpp2-1.3.0.tgz",
"integrity": "sha1-0IRh676tfQTG85vF+n8giSk5R+c="
},
"repeating": {
"version": "2.0.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/repeating/-/repeating-2.0.1.tgz",
"integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
"requires": {
"is-finite": "^1.0.0"
}
},
"resolve": {
"version": "1.11.1",
"resolved": "https://axags.artifactoryonline.com/axags/api/npm/virtual-bcn-node/resolve/-/resolve-1.11.1.tgz",
"integrity": "sha1-6hDYEQN2mC/vV434/DC5rDCgej4=",