-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage-lock.json
More file actions
9287 lines (9287 loc) · 387 KB
/
Copy pathpackage-lock.json
File metadata and controls
9287 lines (9287 loc) · 387 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": "confusion",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"abbrev": {
"version": "1.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/abbrev/-/abbrev-1.1.1.tgz?dl=https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg="
},
"accepts": {
"version": "1.3.7",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/accepts/-/accepts-1.3.7.tgz?dl=https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
"integrity": "sha1-UxvHJlF6OytB+FACHGzBXqq1B80=",
"dev": true,
"requires": {
"mime-types": "~2.1.24",
"negotiator": "0.6.2"
}
},
"after": {
"version": "0.8.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/after/-/after-0.8.2.tgz?dl=https://registry.npmjs.org/after/-/after-0.8.2.tgz",
"integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
"dev": true
},
"ajv": {
"version": "6.10.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/ajv/-/ajv-6.10.2.tgz?dl=https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz",
"integrity": "sha1-086gTWsBeyiUrWkED+yLYj60vVI=",
"requires": {
"fast-deep-equal": "^2.0.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"align-text": {
"version": "0.1.4",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/align-text/-/align-text-0.1.4.tgz?dl=https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"dev": true,
"requires": {
"kind-of": "^3.0.2",
"longest": "^1.0.1",
"repeat-string": "^1.5.2"
},
"dependencies": {
"kind-of": {
"version": "3.2.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/kind-of/-/kind-of-3.2.2.tgz?dl=https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
"dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
}
}
},
"amdefine": {
"version": "1.0.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/amdefine/-/amdefine-1.0.1.tgz?dl=https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
"dev": true
},
"ansi-colors": {
"version": "1.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/ansi-colors/-/ansi-colors-1.1.0.tgz?dl=https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz",
"integrity": "sha1-Y3S03V1HGP884npnGjscrQdxMqk=",
"requires": {
"ansi-wrap": "^0.1.0"
}
},
"ansi-gray": {
"version": "0.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/ansi-gray/-/ansi-gray-0.1.1.tgz?dl=https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz",
"integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=",
"requires": {
"ansi-wrap": "0.1.0"
}
},
"ansi-regex": {
"version": "2.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/ansi-regex/-/ansi-regex-2.1.1.tgz?dl=https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
},
"ansi-styles": {
"version": "2.2.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/ansi-styles/-/ansi-styles-2.2.1.tgz?dl=https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
},
"ansi-wrap": {
"version": "0.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/ansi-wrap/-/ansi-wrap-0.1.0.tgz?dl=https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
"integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768="
},
"anymatch": {
"version": "2.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/anymatch/-/anymatch-2.0.0.tgz?dl=https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
"integrity": "sha1-vLJLTzeTTZqnrBe0ra+J58du8us=",
"dev": true,
"requires": {
"micromatch": "^3.1.4",
"normalize-path": "^2.1.1"
},
"dependencies": {
"normalize-path": {
"version": "2.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/normalize-path/-/normalize-path-2.1.1.tgz?dl=https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
"dev": true,
"requires": {
"remove-trailing-separator": "^1.0.1"
}
}
}
},
"append-buffer": {
"version": "1.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/append-buffer/-/append-buffer-1.0.2.tgz?dl=https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz",
"integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=",
"dev": true,
"requires": {
"buffer-equal": "^1.0.0"
}
},
"aproba": {
"version": "1.2.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/aproba/-/aproba-1.2.0.tgz?dl=https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
"integrity": "sha1-aALmJk79GMeQobDVF/DyYnvyyUo=",
"dev": true
},
"archive-type": {
"version": "3.2.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/archive-type/-/archive-type-3.2.0.tgz?dl=https://registry.npmjs.org/archive-type/-/archive-type-3.2.0.tgz",
"integrity": "sha1-nNnABpV+vpX62tW9YJiUKoE3N/Y=",
"requires": {
"file-type": "^3.1.0"
},
"dependencies": {
"file-type": {
"version": "3.9.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/file-type/-/file-type-3.9.0.tgz?dl=https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
"integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek="
}
}
},
"archy": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/archy/-/archy-1.0.0.tgz?dl=https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
"integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA="
},
"are-we-there-yet": {
"version": "1.1.5",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz?dl=https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz",
"integrity": "sha1-SzXClE8GKov82mZBB2A1D+nd/CE=",
"dev": true,
"requires": {
"delegates": "^1.0.0",
"readable-stream": "^2.0.6"
}
},
"argparse": {
"version": "1.0.10",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/argparse/-/argparse-1.0.10.tgz?dl=https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=",
"requires": {
"sprintf-js": "~1.0.2"
}
},
"arr-diff": {
"version": "4.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/arr-diff/-/arr-diff-4.0.0.tgz?dl=https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
"integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
},
"arr-filter": {
"version": "1.1.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/arr-filter/-/arr-filter-1.1.2.tgz?dl=https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz",
"integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=",
"dev": true,
"requires": {
"make-iterator": "^1.0.0"
}
},
"arr-flatten": {
"version": "1.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/arr-flatten/-/arr-flatten-1.1.0.tgz?dl=https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
"integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE="
},
"arr-map": {
"version": "2.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/arr-map/-/arr-map-2.0.2.tgz?dl=https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz",
"integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=",
"dev": true,
"requires": {
"make-iterator": "^1.0.0"
}
},
"arr-union": {
"version": "3.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/arr-union/-/arr-union-3.1.0.tgz?dl=https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
"integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
},
"array-differ": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-differ/-/array-differ-1.0.0.tgz?dl=https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE="
},
"array-each": {
"version": "1.0.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-each/-/array-each-1.0.1.tgz?dl=https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz",
"integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8="
},
"array-find-index": {
"version": "1.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-find-index/-/array-find-index-1.0.2.tgz?dl=https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
"integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E="
},
"array-initial": {
"version": "1.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-initial/-/array-initial-1.1.0.tgz?dl=https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz",
"integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=",
"dev": true,
"requires": {
"array-slice": "^1.0.0",
"is-number": "^4.0.0"
},
"dependencies": {
"is-number": {
"version": "4.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/is-number/-/is-number-4.0.0.tgz?dl=https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
"integrity": "sha1-ACbjf1RU1z41bf5lZGmYZ8an8P8=",
"dev": true
}
}
},
"array-last": {
"version": "1.3.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-last/-/array-last-1.3.0.tgz?dl=https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz",
"integrity": "sha1-eqdwc/7FZd2rJJP1+IGF9ASp0zY=",
"dev": true,
"requires": {
"is-number": "^4.0.0"
},
"dependencies": {
"is-number": {
"version": "4.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/is-number/-/is-number-4.0.0.tgz?dl=https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
"integrity": "sha1-ACbjf1RU1z41bf5lZGmYZ8an8P8=",
"dev": true
}
}
},
"array-slice": {
"version": "1.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-slice/-/array-slice-1.1.0.tgz?dl=https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz",
"integrity": "sha1-42jqFfibxwaff/uJrsOmx9SsItQ="
},
"array-sort": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-sort/-/array-sort-1.0.0.tgz?dl=https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz",
"integrity": "sha1-5MBTVkU/VvU1EqfR1hI/LFTAqIo=",
"requires": {
"default-compare": "^1.0.0",
"get-value": "^2.0.6",
"kind-of": "^5.0.2"
},
"dependencies": {
"kind-of": {
"version": "5.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/kind-of/-/kind-of-5.1.0.tgz?dl=https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0="
}
}
},
"array-union": {
"version": "1.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-union/-/array-union-1.0.2.tgz?dl=https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
"requires": {
"array-uniq": "^1.0.1"
}
},
"array-uniq": {
"version": "1.0.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-uniq/-/array-uniq-1.0.3.tgz?dl=https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
},
"array-unique": {
"version": "0.3.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/array-unique/-/array-unique-0.3.2.tgz?dl=https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
},
"arraybuffer.slice": {
"version": "0.0.7",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz?dl=https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz",
"integrity": "sha1-O7xCdd1YTMGxCAm4nU6LY6aednU=",
"dev": true
},
"arrify": {
"version": "1.0.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/arrify/-/arrify-1.0.1.tgz?dl=https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
},
"asap": {
"version": "2.0.6",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/asap/-/asap-2.0.6.tgz?dl=https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
"optional": true
},
"asn1": {
"version": "0.2.4",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/asn1/-/asn1-0.2.4.tgz?dl=https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
"integrity": "sha1-jSR136tVO7M+d7VOWeiAu4ziMTY=",
"requires": {
"safer-buffer": "~2.1.0"
}
},
"assert-plus": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/assert-plus/-/assert-plus-1.0.0.tgz?dl=https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
},
"assign-symbols": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/assign-symbols/-/assign-symbols-1.0.0.tgz?dl=https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
},
"async": {
"version": "1.5.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/async/-/async-1.5.2.tgz?dl=https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
"dev": true
},
"async-done": {
"version": "1.3.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/async-done/-/async-done-1.3.2.tgz?dl=https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz",
"integrity": "sha1-XhWqcplipLB0FPUoqIzfGOCykKI=",
"dev": true,
"requires": {
"end-of-stream": "^1.1.0",
"once": "^1.3.2",
"process-nextick-args": "^2.0.0",
"stream-exhaust": "^1.0.1"
}
},
"async-each": {
"version": "1.0.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/async-each/-/async-each-1.0.3.tgz?dl=https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
"integrity": "sha1-tyfb+H12UWAvBvTUrDh/R9kbDL8=",
"dev": true
},
"async-each-series": {
"version": "0.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/async-each-series/-/async-each-series-0.1.1.tgz?dl=https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz",
"integrity": "sha1-dhfBkXQB/Yykooqtzj266Yr+tDI=",
"dev": true
},
"async-foreach": {
"version": "0.1.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/async-foreach/-/async-foreach-0.1.3.tgz?dl=https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz",
"integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=",
"dev": true
},
"async-limiter": {
"version": "1.0.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/async-limiter/-/async-limiter-1.0.1.tgz?dl=https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
"integrity": "sha1-3TeelPDbgxCwgpH51kwyCXZmF/0=",
"dev": true
},
"async-settle": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/async-settle/-/async-settle-1.0.0.tgz?dl=https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz",
"integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=",
"dev": true,
"requires": {
"async-done": "^1.2.2"
}
},
"asynckit": {
"version": "0.4.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/asynckit/-/asynckit-0.4.0.tgz?dl=https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"atob": {
"version": "2.1.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/atob/-/atob-2.1.2.tgz?dl=https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
"integrity": "sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k="
},
"aws-sign2": {
"version": "0.7.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/aws-sign2/-/aws-sign2-0.7.0.tgz?dl=https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
},
"aws4": {
"version": "1.8.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/aws4/-/aws4-1.8.0.tgz?dl=https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz",
"integrity": "sha1-8OAD2cqef1nHpQiUXXsu+aBKVC8="
},
"axios": {
"version": "0.19.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/axios/-/axios-0.19.0.tgz?dl=https://registry.npmjs.org/axios/-/axios-0.19.0.tgz",
"integrity": "sha1-jgm/89kSLhM/e4EByPvdAO09Krg=",
"dev": true,
"requires": {
"follow-redirects": "1.5.10",
"is-buffer": "^2.0.2"
},
"dependencies": {
"is-buffer": {
"version": "2.0.4",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/is-buffer/-/is-buffer-2.0.4.tgz?dl=https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
"integrity": "sha1-PlcvI8hBGlz9lVfISeNmXgspBiM=",
"dev": true
}
}
},
"bach": {
"version": "1.2.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bach/-/bach-1.2.0.tgz?dl=https://registry.npmjs.org/bach/-/bach-1.2.0.tgz",
"integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=",
"dev": true,
"requires": {
"arr-filter": "^1.1.1",
"arr-flatten": "^1.0.1",
"arr-map": "^2.0.0",
"array-each": "^1.0.0",
"array-initial": "^1.0.0",
"array-last": "^1.1.1",
"async-done": "^1.2.2",
"async-settle": "^1.0.0",
"now-and-later": "^2.0.0"
}
},
"backo2": {
"version": "1.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/backo2/-/backo2-1.0.2.tgz?dl=https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
"integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=",
"dev": true
},
"balanced-match": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/balanced-match/-/balanced-match-1.0.0.tgz?dl=https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
},
"base": {
"version": "0.11.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/base/-/base-0.11.2.tgz?dl=https://registry.npmjs.org/base/-/base-0.11.2.tgz",
"integrity": "sha1-e95c7RRbbVUakNuH+DxVi060io8=",
"requires": {
"cache-base": "^1.0.1",
"class-utils": "^0.3.5",
"component-emitter": "^1.2.1",
"define-property": "^1.0.0",
"isobject": "^3.0.1",
"mixin-deep": "^1.2.0",
"pascalcase": "^0.1.1"
},
"dependencies": {
"define-property": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/define-property/-/define-property-1.0.0.tgz?dl=https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
"integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
"requires": {
"is-descriptor": "^1.0.0"
}
},
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz?dl=https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
},
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz?dl=https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
},
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/is-descriptor/-/is-descriptor-1.0.2.tgz?dl=https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
"kind-of": "^6.0.2"
}
}
}
},
"base64-arraybuffer": {
"version": "0.1.5",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz?dl=https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz",
"integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=",
"dev": true
},
"base64id": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/base64id/-/base64id-1.0.0.tgz?dl=https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz",
"integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=",
"dev": true
},
"batch": {
"version": "0.6.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/batch/-/batch-0.6.1.tgz?dl=https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
"integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=",
"dev": true
},
"bcrypt-pbkdf": {
"version": "1.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz?dl=https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
"integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
"requires": {
"tweetnacl": "^0.14.3"
}
},
"beeper": {
"version": "1.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/beeper/-/beeper-1.1.1.tgz?dl=https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz",
"integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak="
},
"better-assert": {
"version": "1.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/better-assert/-/better-assert-1.0.2.tgz?dl=https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz",
"integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=",
"dev": true,
"requires": {
"callsite": "1.0.0"
}
},
"bin-build": {
"version": "2.2.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bin-build/-/bin-build-2.2.0.tgz?dl=https://registry.npmjs.org/bin-build/-/bin-build-2.2.0.tgz",
"integrity": "sha1-EfjdYfcP/Por3KpbRvXo/t1CIcw=",
"optional": true,
"requires": {
"archive-type": "^3.0.1",
"decompress": "^3.0.0",
"download": "^4.1.2",
"exec-series": "^1.0.0",
"rimraf": "^2.2.6",
"tempfile": "^1.0.0",
"url-regex": "^3.0.0"
},
"dependencies": {
"tempfile": {
"version": "1.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/tempfile/-/tempfile-1.1.1.tgz?dl=https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz",
"integrity": "sha1-W8xOrsxKsscH2LwR2ZzMmiyyh/I=",
"optional": true,
"requires": {
"os-tmpdir": "^1.0.0",
"uuid": "^2.0.1"
}
},
"uuid": {
"version": "2.0.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/uuid/-/uuid-2.0.3.tgz?dl=https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz",
"integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=",
"optional": true
}
}
},
"bin-check": {
"version": "2.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bin-check/-/bin-check-2.0.0.tgz?dl=https://registry.npmjs.org/bin-check/-/bin-check-2.0.0.tgz",
"integrity": "sha1-hvjm9CU4k99g3DFpV/WvAqywWTA=",
"optional": true,
"requires": {
"executable": "^1.0.0"
}
},
"bin-version": {
"version": "1.0.4",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bin-version/-/bin-version-1.0.4.tgz?dl=https://registry.npmjs.org/bin-version/-/bin-version-1.0.4.tgz",
"integrity": "sha1-nrSY7m/Xb3q5p8FgQ2+JV5Q1144=",
"optional": true,
"requires": {
"find-versions": "^1.0.0"
}
},
"bin-version-check": {
"version": "2.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bin-version-check/-/bin-version-check-2.1.0.tgz?dl=https://registry.npmjs.org/bin-version-check/-/bin-version-check-2.1.0.tgz",
"integrity": "sha1-5OXfKQuQaffRETJAMe/BP90RpbA=",
"optional": true,
"requires": {
"bin-version": "^1.0.0",
"minimist": "^1.1.0",
"semver": "^4.0.3",
"semver-truncate": "^1.0.0"
},
"dependencies": {
"semver": {
"version": "4.3.6",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/semver/-/semver-4.3.6.tgz?dl=https://registry.npmjs.org/semver/-/semver-4.3.6.tgz",
"integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=",
"optional": true
}
}
},
"bin-wrapper": {
"version": "3.0.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bin-wrapper/-/bin-wrapper-3.0.2.tgz?dl=https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-3.0.2.tgz",
"integrity": "sha1-Z9MwYmLksaXy+I7iNGT2plVneus=",
"optional": true,
"requires": {
"bin-check": "^2.0.0",
"bin-version-check": "^2.1.0",
"download": "^4.0.0",
"each-async": "^1.1.1",
"lazy-req": "^1.0.0",
"os-filter-obj": "^1.0.0"
}
},
"binary-extensions": {
"version": "1.13.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/binary-extensions/-/binary-extensions-1.13.1.tgz?dl=https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
"integrity": "sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U=",
"dev": true
},
"bl": {
"version": "1.2.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bl/-/bl-1.2.2.tgz?dl=https://registry.npmjs.org/bl/-/bl-1.2.2.tgz",
"integrity": "sha1-oWCRFxcQPAdBDO9j71Gzl8Alr5w=",
"requires": {
"readable-stream": "^2.3.5",
"safe-buffer": "^5.1.1"
}
},
"blob": {
"version": "0.0.5",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/blob/-/blob-0.0.5.tgz?dl=https://registry.npmjs.org/blob/-/blob-0.0.5.tgz",
"integrity": "sha1-1oDu7yX4zZGtUz9bAe7UjmTK9oM=",
"dev": true
},
"block-stream": {
"version": "0.0.9",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/block-stream/-/block-stream-0.0.9.tgz?dl=https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz",
"integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=",
"dev": true,
"requires": {
"inherits": "~2.0.0"
}
},
"body": {
"version": "5.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/body/-/body-5.1.0.tgz?dl=https://registry.npmjs.org/body/-/body-5.1.0.tgz",
"integrity": "sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=",
"dev": true,
"requires": {
"continuable-cache": "^0.3.1",
"error": "^7.0.0",
"raw-body": "~1.1.0",
"safe-json-parse": "~1.0.1"
},
"dependencies": {
"bytes": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bytes/-/bytes-1.0.0.tgz?dl=https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz",
"integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=",
"dev": true
},
"raw-body": {
"version": "1.1.7",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/raw-body/-/raw-body-1.1.7.tgz?dl=https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz",
"integrity": "sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=",
"dev": true,
"requires": {
"bytes": "1",
"string_decoder": "0.10"
}
},
"string_decoder": {
"version": "0.10.31",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/string_decoder/-/string_decoder-0.10.31.tgz?dl=https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
"integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
"dev": true
}
}
},
"boom": {
"version": "2.10.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/boom/-/boom-2.10.1.tgz?dl=https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
"integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
"dev": true,
"requires": {
"hoek": "2.x.x"
},
"dependencies": {
"hoek": {
"version": "2.16.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/hoek/-/hoek-2.16.3.tgz?dl=https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz",
"integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=",
"dev": true
}
}
},
"bootstrap": {
"version": "4.3.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bootstrap/-/bootstrap-4.3.1.tgz?dl=https://registry.npmjs.org/bootstrap/-/bootstrap-4.3.1.tgz",
"integrity": "sha1-KAyo9hBQTZnXtrS/xLaM7GAXBKw="
},
"bootstrap-social": {
"version": "5.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bootstrap-social/-/bootstrap-social-5.1.1.tgz?dl=https://registry.npmjs.org/bootstrap-social/-/bootstrap-social-5.1.1.tgz",
"integrity": "sha1-dTDGeK31bPj60/qCwp1NPl0CdQE=",
"requires": {
"bootstrap": "~3",
"font-awesome": "~4.7"
},
"dependencies": {
"bootstrap": {
"version": "3.4.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bootstrap/-/bootstrap-3.4.1.tgz?dl=https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.1.tgz",
"integrity": "sha1-w6NH1Bniia0R9AM+PEEyuHwIHXI="
}
}
},
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/brace-expansion/-/brace-expansion-1.1.11.tgz?dl=https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=",
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"braces": {
"version": "2.3.2",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/braces/-/braces-2.3.2.tgz?dl=https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
"extend-shallow": "^2.0.1",
"fill-range": "^4.0.0",
"isobject": "^3.0.1",
"repeat-element": "^1.1.2",
"snapdragon": "^0.8.1",
"snapdragon-node": "^2.0.1",
"split-string": "^3.0.2",
"to-regex": "^3.0.1"
},
"dependencies": {
"extend-shallow": {
"version": "2.0.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/extend-shallow/-/extend-shallow-2.0.1.tgz?dl=https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
"requires": {
"is-extendable": "^0.1.0"
}
}
}
},
"browser-sync": {
"version": "2.26.7",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/browser-sync/-/browser-sync-2.26.7.tgz?dl=https://registry.npmjs.org/browser-sync/-/browser-sync-2.26.7.tgz",
"integrity": "sha1-EgKHcW60BWUadsx0/oUcMTUFV/k=",
"dev": true,
"requires": {
"browser-sync-client": "^2.26.6",
"browser-sync-ui": "^2.26.4",
"bs-recipes": "1.3.4",
"bs-snippet-injector": "^2.0.1",
"chokidar": "^2.0.4",
"connect": "3.6.6",
"connect-history-api-fallback": "^1",
"dev-ip": "^1.0.1",
"easy-extender": "^2.3.4",
"eazy-logger": "^3",
"etag": "^1.8.1",
"fresh": "^0.5.2",
"fs-extra": "3.0.1",
"http-proxy": "1.15.2",
"immutable": "^3",
"localtunnel": "1.9.2",
"micromatch": "^3.1.10",
"opn": "5.3.0",
"portscanner": "2.1.1",
"qs": "6.2.3",
"raw-body": "^2.3.2",
"resp-modifier": "6.0.2",
"rx": "4.1.0",
"send": "0.16.2",
"serve-index": "1.9.1",
"serve-static": "1.13.2",
"server-destroy": "1.0.1",
"socket.io": "2.1.1",
"ua-parser-js": "0.7.17",
"yargs": "6.4.0"
}
},
"browser-sync-client": {
"version": "2.26.6",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/browser-sync-client/-/browser-sync-client-2.26.6.tgz?dl=https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.26.6.tgz",
"integrity": "sha1-5SAdOs6K7oivF2VrewwGILb45Ks=",
"dev": true,
"requires": {
"etag": "1.8.1",
"fresh": "0.5.2",
"mitt": "^1.1.3",
"rxjs": "^5.5.6"
}
},
"browser-sync-ui": {
"version": "2.26.4",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/browser-sync-ui/-/browser-sync-ui-2.26.4.tgz?dl=https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.26.4.tgz",
"integrity": "sha1-N3LxPGuT8tfTM/S+DKHsAqrpfbo=",
"dev": true,
"requires": {
"async-each-series": "0.1.1",
"connect-history-api-fallback": "^1",
"immutable": "^3",
"server-destroy": "1.0.1",
"socket.io-client": "^2.0.4",
"stream-throttle": "^0.1.3"
}
},
"bs-recipes": {
"version": "1.3.4",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bs-recipes/-/bs-recipes-1.3.4.tgz?dl=https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz",
"integrity": "sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU=",
"dev": true
},
"bs-snippet-injector": {
"version": "2.0.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz?dl=https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz",
"integrity": "sha1-YbU5PxH1JVntEgaTEANDtu2wTdU=",
"dev": true
},
"buffer-alloc": {
"version": "1.2.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/buffer-alloc/-/buffer-alloc-1.2.0.tgz?dl=https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
"integrity": "sha1-iQ3ZDZI6hz4I4Q5f1RpX5bfM4Ow=",
"requires": {
"buffer-alloc-unsafe": "^1.1.0",
"buffer-fill": "^1.0.0"
}
},
"buffer-alloc-unsafe": {
"version": "1.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz?dl=https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
"integrity": "sha1-vX3CauKXLQ7aJTvgYdupkjScGfA="
},
"buffer-crc32": {
"version": "0.2.13",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/buffer-crc32/-/buffer-crc32-0.2.13.tgz?dl=https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
"integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI="
},
"buffer-equal": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/buffer-equal/-/buffer-equal-1.0.0.tgz?dl=https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
"integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=",
"dev": true
},
"buffer-fill": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/buffer-fill/-/buffer-fill-1.0.0.tgz?dl=https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
"integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw="
},
"buffer-from": {
"version": "1.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/buffer-from/-/buffer-from-1.1.1.tgz?dl=https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
"integrity": "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8="
},
"buffer-to-vinyl": {
"version": "1.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/buffer-to-vinyl/-/buffer-to-vinyl-1.1.0.tgz?dl=https://registry.npmjs.org/buffer-to-vinyl/-/buffer-to-vinyl-1.1.0.tgz",
"integrity": "sha1-APFfruOreh3aLN5tkSG//dB7ImI=",
"requires": {
"file-type": "^3.1.0",
"readable-stream": "^2.0.2",
"uuid": "^2.0.1",
"vinyl": "^1.0.0"
},
"dependencies": {
"file-type": {
"version": "3.9.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/file-type/-/file-type-3.9.0.tgz?dl=https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
"integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek="
},
"uuid": {
"version": "2.0.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/uuid/-/uuid-2.0.3.tgz?dl=https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz",
"integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho="
}
}
},
"bytes": {
"version": "3.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/bytes/-/bytes-3.1.0.tgz?dl=https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
"integrity": "sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY=",
"dev": true
},
"cache-base": {
"version": "1.0.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/cache-base/-/cache-base-1.0.1.tgz?dl=https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
"integrity": "sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=",
"requires": {
"collection-visit": "^1.0.0",
"component-emitter": "^1.2.1",
"get-value": "^2.0.6",
"has-value": "^1.0.0",
"isobject": "^3.0.1",
"set-value": "^2.0.0",
"to-object-path": "^0.3.0",
"union-value": "^1.0.0",
"unset-value": "^1.0.0"
}
},
"callsite": {
"version": "1.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/callsite/-/callsite-1.0.0.tgz?dl=https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz",
"integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=",
"dev": true
},
"camel-case": {
"version": "3.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/camel-case/-/camel-case-3.0.0.tgz?dl=https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz",
"integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=",
"dev": true,
"requires": {
"no-case": "^2.2.0",
"upper-case": "^1.1.1"
}
},
"camelcase": {
"version": "3.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/camelcase/-/camelcase-3.0.0.tgz?dl=https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
"integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo="
},
"camelcase-keys": {
"version": "2.1.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/camelcase-keys/-/camelcase-keys-2.1.0.tgz?dl=https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
"integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
"requires": {
"camelcase": "^2.0.0",
"map-obj": "^1.0.0"
},
"dependencies": {
"camelcase": {
"version": "2.1.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/camelcase/-/camelcase-2.1.1.tgz?dl=https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
"integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8="
}
}
},
"capture-stack-trace": {
"version": "1.0.1",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz?dl=https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz",
"integrity": "sha1-psC74fOPOqC5Ijjstv9Cw0TUE10="
},
"caseless": {
"version": "0.12.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/caseless/-/caseless-0.12.0.tgz?dl=https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
},
"caw": {
"version": "1.2.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/caw/-/caw-1.2.0.tgz?dl=https://registry.npmjs.org/caw/-/caw-1.2.0.tgz",
"integrity": "sha1-/7Im/n78VHKI3GLuPpcHPCEtEDQ=",
"requires": {
"get-proxy": "^1.0.1",
"is-obj": "^1.0.0",
"object-assign": "^3.0.0",
"tunnel-agent": "^0.4.0"
},
"dependencies": {
"object-assign": {
"version": "3.0.0",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/object-assign/-/object-assign-3.0.0.tgz?dl=https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
"integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I="
},
"tunnel-agent": {
"version": "0.4.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/tunnel-agent/-/tunnel-agent-0.4.3.tgz?dl=https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz",
"integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us="
}
}
},
"center-align": {
"version": "0.1.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/center-align/-/center-align-0.1.3.tgz?dl=https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
"dev": true,
"requires": {
"align-text": "^0.1.3",
"lazy-cache": "^1.0.3"
}
},
"chalk": {
"version": "1.1.3",
"resolved": "https://repo.jemstep.com/artifactory/api/npm/npm/chalk/-/chalk-1.1.3.tgz?dl=https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",