This repository has been archived by the owner on Apr 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
2687 lines (2687 loc) · 114 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "sugos",
"version": "2.2.10",
"lockfileVersion": 1,
"dependencies": {
"ababel": {
"version": "https://registry.npmjs.org/ababel/-/ababel-1.1.10.tgz",
"integrity": "sha1-efR+5VHILjnSaEjKqVM5/CRA4BM="
},
"ababel-es2015": {
"version": "https://registry.npmjs.org/ababel-es2015/-/ababel-es2015-1.0.8.tgz",
"integrity": "sha1-lNf6Wj9VkZNCn38no9GJxe3/jfg="
},
"abbrev": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/abbrev/-/abbrev-1.0.9.tgz",
"integrity": "sha1-kbR5JYinc4wl813W9jdSovh3YTU="
},
"abind": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/abind/-/abind-1.0.3.tgz",
"integrity": "sha1-Y9hUM5M9mUIhiIcAPHbH4I4qvO4=",
"dev": true
},
"accepts": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/accepts/-/accepts-1.3.3.tgz",
"integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo="
},
"acolor": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/acolor/-/acolor-1.1.0.tgz",
"integrity": "sha1-iLjuWMlIde9+tbWvggouhkqnx48=",
"dev": true
},
"after": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/after/-/after-0.8.2.tgz",
"integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8="
},
"aglob": {
"version": "https://registry.npmjs.org/aglob/-/aglob-1.1.1.tgz",
"integrity": "sha1-+VJpKq29nVKHdekUtpXgdjH58Io="
},
"akv": {
"version": "https://registry.npmjs.org/akv/-/akv-1.1.1.tgz",
"integrity": "sha1-mvBba9a2Comh5GqIK+nRpH6UcPI="
},
"akv-status": {
"version": "https://registry.npmjs.org/akv-status/-/akv-status-1.0.8.tgz",
"integrity": "sha1-0Jkl/OZdzEJARC+2S1s3NBpbxdk="
},
"align-text": {
"version": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc="
},
"amdefine": {
"version": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz",
"integrity": "sha1-/RdHRwDLXMnCtwnwvp0jzjwZjDM="
},
"amocha": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/amocha/-/amocha-2.0.0.tgz",
"integrity": "sha1-YYim37iC0KaXdLW9VUXUXQttqpY=",
"dev": true,
"dependencies": {
"aglob": {
"version": "https://registry.npmjs.org/aglob/-/aglob-2.0.1.tgz",
"integrity": "sha1-kl7PJC11AkLAcVrNMy+V90kGZhQ=",
"dev": true
},
"babel-runtime": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/babel-runtime/-/babel-runtime-6.22.0.tgz",
"integrity": "sha1-HPi0rGfHek3bDbKuH3TeUqxMphE=",
"dev": true
},
"glob": {
"version": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz",
"integrity": "sha1-gFIR3wT6rxxjo2ADBs31reULLsg=",
"dev": true
},
"regenerator-runtime": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz",
"integrity": "sha1-JX9BlhzkRVixj3gUr0jBdVn5+us=",
"dev": true
}
}
},
"ansi-red": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/ansi-red/-/ansi-red-0.1.1.tgz",
"integrity": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=",
"dev": true
},
"ansi-regex": {
"version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz",
"integrity": "sha1-xQYbbg74qBd15Q9dZhUb9r83EQc="
},
"ansi-styles": {
"version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
},
"ansi-wrap": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
"integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=",
"dev": true
},
"any-promise": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/any-promise/-/any-promise-1.3.0.tgz",
"integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8="
},
"ape-asking": {
"version": "https://registry.npmjs.org/ape-asking/-/ape-asking-3.0.2.tgz",
"integrity": "sha1-SPfruYBHGBB/CJRHHT2x/Fjt04s=",
"dev": true
},
"ape-deploying": {
"version": "https://registry.npmjs.org/ape-deploying/-/ape-deploying-5.1.1.tgz",
"integrity": "sha1-bq0RuS9dxGUmII4OoLY0s7BNP4A=",
"dev": true,
"dependencies": {
"aglob": {
"version": "https://registry.npmjs.org/aglob/-/aglob-2.0.1.tgz",
"integrity": "sha1-kl7PJC11AkLAcVrNMy+V90kGZhQ=",
"dev": true
},
"glob": {
"version": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz",
"integrity": "sha1-gFIR3wT6rxxjo2ADBs31reULLsg=",
"dev": true
}
}
},
"ape-formatting": {
"version": "https://registry.npmjs.org/ape-formatting/-/ape-formatting-1.0.2.tgz",
"integrity": "sha1-JqAI7aT7gzRXsXtMRbRuXYQ00lU=",
"dev": true
},
"ape-releasing": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/ape-releasing/-/ape-releasing-4.0.4.tgz",
"integrity": "sha1-ICEh78j+qP3w7k4o6s48w2VMDOE=",
"dev": true
},
"ape-tasking": {
"version": "https://registry.npmjs.org/ape-tasking/-/ape-tasking-4.0.9.tgz",
"integrity": "sha1-pClZaqNTOq9jpWHU/4UG3COnXzk=",
"dev": true
},
"ape-tmpl": {
"version": "https://registry.npmjs.org/ape-tmpl/-/ape-tmpl-5.0.20.tgz",
"integrity": "sha1-054d0uK54zHdyRwDImokd5IRH+w=",
"dev": true
},
"ape-updating": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/ape-updating/-/ape-updating-4.1.1.tgz",
"integrity": "sha1-vkNsh1rWdiw+HK0NOjbBF9Tb67I=",
"dev": true,
"dependencies": {
"babel-runtime": {
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"integrity": "sha1-CpSJ8UTecO+zzkMArM2zKeL8VDs=",
"dev": true
},
"execcli": {
"version": "4.0.11",
"resolved": "https://registry.npmjs.org/execcli/-/execcli-4.0.11.tgz",
"integrity": "sha1-PbmCCoP6EkK5v7UNEVUdBQWSfUM=",
"dev": true
},
"regenerator-runtime": {
"version": "0.10.5",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
"integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=",
"dev": true
}
}
},
"apemanredis": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/apemanredis/-/apemanredis-1.0.9.tgz",
"integrity": "sha1-TQaZNCeBdacxB/c1IEN0jNM8uMQ=",
"dependencies": {
"amocha": {
"version": "https://registry.npmjs.org/amocha/-/amocha-1.0.16.tgz",
"integrity": "sha1-OIXU5R2GO+q9EqaRwFkEI0xHIXU="
}
}
},
"aport": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/aport/-/aport-1.0.0.tgz",
"integrity": "sha1-0sInjmTwjabciUXE34b/3XdOfgE="
},
"arequest": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/arequest/-/arequest-2.0.7.tgz",
"integrity": "sha1-pANovs0xQbWHXG/qC/KTkT0D480="
},
"argparse": {
"version": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY="
},
"argx": {
"version": "https://registry.npmjs.org/argx/-/argx-3.0.2.tgz",
"integrity": "sha1-G6qI0WCrb1Rrbs4OB1lswrs0JKk="
},
"arraybuffer.slice": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz",
"integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco="
},
"arrayfilter": {
"version": "https://registry.npmjs.org/arrayfilter/-/arrayfilter-1.1.2.tgz",
"integrity": "sha1-5jJ3oermvXWWHEBf4CD19O7gLbU=",
"dev": true
},
"arrayreduce": {
"version": "https://registry.npmjs.org/arrayreduce/-/arrayreduce-2.1.0.tgz",
"integrity": "sha1-6lg24whra1S3pWK0eez4BpyU0Qo="
},
"arraysort": {
"version": "https://registry.npmjs.org/arraysort/-/arraysort-2.0.0.tgz",
"integrity": "sha1-1BjvUotI6cVjZtn3m2wSPgp98uk=",
"dev": true
},
"asap": {
"version": "https://registry.npmjs.org/asap/-/asap-2.0.5.tgz",
"integrity": "sha1-UidltQw1EEkOUtfc/ghe+bqWlY8=",
"dev": true
},
"asenv": {
"version": "https://registry.npmjs.org/asenv/-/asenv-1.1.0.tgz",
"integrity": "sha1-cL0/UYHHR+jnjG5H2BdwjJ9v5Wo="
},
"asfs": {
"version": "https://registry.npmjs.org/asfs/-/asfs-1.1.1.tgz",
"integrity": "sha1-Xyo0X8kr+2aodeEF8nQCYl1m+38="
},
"asleep": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/asleep/-/asleep-1.0.3.tgz",
"integrity": "sha1-oQTiSsIpVjxCXk6n51tXihnuIY4="
},
"aslogger": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/aslogger/-/aslogger-1.0.2.tgz",
"integrity": "sha1-Rv9vw3b1rRTdBrYyYQR15VJ8QMg="
},
"asn1": {
"version": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y="
},
"asobj": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/asobj/-/asobj-1.5.0.tgz",
"integrity": "sha1-coF3bJhkIgsTrAOd7u1ttKuMEa0="
},
"assert-plus": {
"version": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
"integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ="
},
"async": {
"version": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
},
"asynckit": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"autolinker": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/autolinker/-/autolinker-0.15.3.tgz",
"integrity": "sha1-NCQX2PLzRhsUzwkIjV7fh5HcmDI=",
"dev": true
},
"aws-sign2": {
"version": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz",
"integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8="
},
"aws4": {
"version": "https://registry.npmjs.org/aws4/-/aws4-1.4.1.tgz",
"integrity": "sha1-/efVKSRm0jDl7g9OA42d+qsI/GE="
},
"babel-code-frame": {
"version": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.16.0.tgz",
"integrity": "sha1-+Q5g2ghikJ084JhzO105h8l8uN4="
},
"babel-core": {
"version": "https://registry.npmjs.org/babel-core/-/babel-core-6.17.0.tgz",
"integrity": "sha1-bEV2RH30eeJB5YyAfkvH2k239CU="
},
"babel-generator": {
"version": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.17.0.tgz",
"integrity": "sha1-uJTjgIvu94APJVBjW/4CS2ImzzM="
},
"babel-helper-call-delegate": {
"version": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.8.0.tgz",
"integrity": "sha1-nSg+dIZ3m2sEgYZKEbNx6lwB+mQ="
},
"babel-helper-define-map": {
"version": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.9.0.tgz",
"integrity": "sha1-Zin5sqfljhjoN5pX0eb7spaZAvs="
},
"babel-helper-function-name": {
"version": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.8.0.tgz",
"integrity": "sha1-oDNroUUmoHXN9QL8UtP+hLEvejQ="
},
"babel-helper-get-function-arity": {
"version": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.8.0.tgz",
"integrity": "sha1-iCdsJL0lHN9vYbb4n3RfSGztkq8="
},
"babel-helper-hoist-variables": {
"version": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.8.0.tgz",
"integrity": "sha1-iwdm3AJuqepCO8KzTmZaTac3Oq8="
},
"babel-helper-optimise-call-expression": {
"version": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.8.0.tgz",
"integrity": "sha1-QXVijpyJ/DYXSQTycHDynThWfwY="
},
"babel-helper-regex": {
"version": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.9.0.tgz",
"integrity": "sha1-x0Jl/eGA/5oWc1/uBeY8rbngsFc="
},
"babel-helper-replace-supers": {
"version": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.16.0.tgz",
"integrity": "sha1-Icl2I8x+QwhVdT8lJ0ASJiajnms="
},
"babel-helpers": {
"version": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.16.0.tgz",
"integrity": "sha1-EJXsENmSeUYFU+Z+s+7plz04Z+M="
},
"babel-messages": {
"version": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz",
"integrity": "sha1-v1BHNsqWfm1l7wrbWipflHyODrk="
},
"babel-plugin-check-es2015-constants": {
"version": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz",
"integrity": "sha1-2/Akwy7Te/2o3uHnbaAjhqjSb+c="
},
"babel-plugin-transform-es2015-arrow-functions": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz",
"integrity": "sha1-W2Ovwxgb3JqMTUgbWk8/fX/vPZ0="
},
"babel-plugin-transform-es2015-block-scoped-functions": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz",
"integrity": "sha1-7ZXWKcS1pxriloK5mPcNmDPrNm0="
},
"babel-plugin-transform-es2015-block-scoping": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.15.0.tgz",
"integrity": "sha1-W0Q8oUK+jR22qMKuQvUZWLZrcPY="
},
"babel-plugin-transform-es2015-classes": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.14.0.tgz",
"integrity": "sha1-h9UUnukftHWSJAn5r1srpdHjkoc="
},
"babel-plugin-transform-es2015-computed-properties": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz",
"integrity": "sha1-9RAQ/WGzvXtrYKX9/TB7t6UnmHA="
},
"babel-plugin-transform-es2015-destructuring": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.16.0.tgz",
"integrity": "sha1-BQ/ghm9dU7NgYu4QzfW/5k+Slic="
},
"babel-plugin-transform-es2015-duplicate-keys": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz",
"integrity": "sha1-/Y9/cXH8EIzBxwwxZLnxWoHCX30="
},
"babel-plugin-transform-es2015-for-of": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.8.0.tgz",
"integrity": "sha1-gu2hObpCcN2hNcPsGx8oE/pi8jw="
},
"babel-plugin-transform-es2015-function-name": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz",
"integrity": "sha1-jBNbF9vQZOW7pW7FEbqu4vyoJxk="
},
"babel-plugin-transform-es2015-literals": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz",
"integrity": "sha1-UKouXHlY/CqyXXTsEX4MyY8EZGg="
},
"babel-plugin-transform-es2015-modules-amd": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.8.0.tgz",
"integrity": "sha1-JdlUqgvwQDH8RtKo5iMLsau95KM="
},
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.16.0.tgz",
"integrity": "sha1-CjS0R7yIrRpwmIttGZzKbQuWyJI="
},
"babel-plugin-transform-es2015-modules-systemjs": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.14.0.tgz",
"integrity": "sha1-xRm1xz4yOI5nnJse30Gy/CPcMwM="
},
"babel-plugin-transform-es2015-modules-umd": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.12.0.tgz",
"integrity": "sha1-XXNVnrSSZnde0oHEC+iKQhvTcaM="
},
"babel-plugin-transform-es2015-object-super": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz",
"integrity": "sha1-G4WHQKWkQAiHwj3P9vTVbupKJMU="
},
"babel-plugin-transform-es2015-parameters": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.17.0.tgz",
"integrity": "sha1-4G0wzviX9GrbRzRwe74Sig1CfVg="
},
"babel-plugin-transform-es2015-shorthand-properties": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.8.0.tgz",
"integrity": "sha1-8KTF/UcWMKzzM8LZnD1ne/CVIUk="
},
"babel-plugin-transform-es2015-spread": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz",
"integrity": "sha1-Ahf3N+O4IfpaZp8YfG7VkgXwXpw="
},
"babel-plugin-transform-es2015-sticky-regex": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz",
"integrity": "sha1-5z0wCkQKNdXGT1wqNE3CNuPfR74="
},
"babel-plugin-transform-es2015-template-literals": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz",
"integrity": "sha1-huuHbQosY12k7ASLT33p38iX5ms="
},
"babel-plugin-transform-es2015-typeof-symbol": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.8.0.tgz",
"integrity": "sha1-hMKesSGTckgJVaAg/vemXETzBTM="
},
"babel-plugin-transform-es2015-unicode-regex": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz",
"integrity": "sha1-YpjOq6rYjVCj9POS2N6ZcmD27yw="
},
"babel-plugin-transform-regenerator": {
"version": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.16.1.tgz",
"integrity": "sha1-p13msEihQVSq4UsBInVsW+05L1k="
},
"babel-plugin-transform-runtime": {
"version": "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.15.0.tgz",
"integrity": "sha1-PXW02Umtga8VdXAnOEb7Wa6w1Xw="
},
"babel-plugin-transform-strict-mode": {
"version": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.11.3.tgz",
"integrity": "sha1-GDdBMlEmvH7Jz0wPwlfT58pa/UA="
},
"babel-polyfill": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/babel-polyfill/-/babel-polyfill-6.22.0.tgz",
"integrity": "sha1-GsmevcxrpNseJhjDh7IISoIVSjs=",
"dev": true,
"dependencies": {
"babel-runtime": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/babel-runtime/-/babel-runtime-6.22.0.tgz",
"integrity": "sha1-HPi0rGfHek3bDbKuH3TeUqxMphE=",
"dev": true
},
"regenerator-runtime": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz",
"integrity": "sha1-JX9BlhzkRVixj3gUr0jBdVn5+us=",
"dev": true
}
}
},
"babel-preset-es2015": {
"version": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.16.0.tgz",
"integrity": "sha1-Wazs0e++uvSPiUBIQPL+eMTSrVw="
},
"babel-register": {
"version": "https://registry.npmjs.org/babel-register/-/babel-register-6.16.3.tgz",
"integrity": "sha1-ewwMp7/euRiLpMJ+X8t1maSXxiQ="
},
"babel-runtime": {
"version": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz",
"integrity": "sha1-bbcH/vLUnEm/o8tk79tDa1GLgiI="
},
"babel-template": {
"version": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"integrity": "sha1-4UndGp8Do1+BfdvE0EgZiOfryMo="
},
"babel-traverse": {
"version": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.16.0.tgz",
"integrity": "sha1-+6ha4f1NEH3pzgAxScxX9TvvDE8="
},
"babel-types": {
"version": "https://registry.npmjs.org/babel-types/-/babel-types-6.16.0.tgz",
"integrity": "sha1-ccyh2+Uzd2YiXFwZMHHo68vP/P4="
},
"babelify": {
"version": "https://registry.npmjs.org/babelify/-/babelify-7.3.0.tgz",
"integrity": "sha1-qlau3nBn/XvVSWZu4W3ChQh+iOU="
},
"babylon": {
"version": "https://registry.npmjs.org/babylon/-/babylon-6.11.4.tgz",
"integrity": "sha1-deH1IYfvoM3lpUGn9/3aOPbrW9I="
},
"backo2": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/backo2/-/backo2-1.0.2.tgz",
"integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc="
},
"balanced-match": {
"version": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
"integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
},
"base64-arraybuffer": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz",
"integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg="
},
"base64id": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/base64id/-/base64id-1.0.0.tgz",
"integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY="
},
"bcrypt-pbkdf": {
"version": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz",
"integrity": "sha1-PKdrhSQccXC/fZcD57mqdGMAQNQ=",
"optional": true
},
"better-assert": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/better-assert/-/better-assert-1.0.2.tgz",
"integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI="
},
"bl": {
"version": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz",
"integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=",
"dependencies": {
"isarray": {
"version": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
},
"readable-stream": {
"version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
"integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44="
}
}
},
"blob": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/blob/-/blob-0.0.4.tgz",
"integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE="
},
"bluebird": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/bluebird/-/bluebird-3.4.6.tgz",
"integrity": "sha1-AdqNgh2HgT0ViWfnQ9X+bGLPjA8=",
"dev": true
},
"boom": {
"version": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
"integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8="
},
"brace-expansion": {
"version": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz",
"integrity": "sha1-cZfX6qm4fmSDkOph/GbIRCdCDfk="
},
"brequest": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/brequest/-/brequest-1.0.1.tgz",
"integrity": "sha1-liwo7rY7FWUUV22+UA6BtMLnShE="
},
"browser-stdout": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/browser-stdout/-/browser-stdout-1.3.0.tgz",
"integrity": "sha1-81HTKWnTL6XXpVZxVCY9korjvR8="
},
"buffer-shims": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/buffer-shims/-/buffer-shims-1.0.0.tgz",
"integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E="
},
"bwindow": {
"version": "https://registry.npmjs.org/bwindow/-/bwindow-1.0.7.tgz",
"integrity": "sha1-D4m0PFOu5XsZ/gVeQeRrJF0XwjU="
},
"bytes": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/bytes/-/bytes-2.4.0.tgz",
"integrity": "sha1-fZcZb51br39pNeJZhVSe3SpsIzk="
},
"callsite": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/callsite/-/callsite-1.0.0.tgz",
"integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA="
},
"camelcase": {
"version": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=",
"optional": true
},
"caseless": {
"version": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz",
"integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c="
},
"center-align": {
"version": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
"optional": true
},
"chalk": {
"version": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg="
},
"cli-color": {
"version": "https://registry.npmjs.org/cli-color/-/cli-color-1.1.0.tgz",
"integrity": "sha1-3hiM3Ekp2DtnrqBBEPvtQP2/Z3U="
},
"cliui": {
"version": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
"integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
"optional": true,
"dependencies": {
"wordwrap": {
"version": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
"integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=",
"optional": true
}
}
},
"clone": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/clone/-/clone-1.0.2.tgz",
"integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk="
},
"co": {
"version": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
},
"co-body": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/co-body/-/co-body-4.2.0.tgz",
"integrity": "sha1-dN8g+nMmISXcRUgq8E40LqjbNRU=",
"dependencies": {
"qs": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/qs/-/qs-4.0.0.tgz",
"integrity": "sha1-wx2bdOwn33XlQ6hseHKO2NRiNgc="
}
}
},
"color": {
"version": "https://registry.npmjs.org/color/-/color-0.11.4.tgz",
"integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=",
"dev": true
},
"color-convert": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/color-convert/-/color-convert-1.9.0.tgz",
"integrity": "sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o=",
"dev": true
},
"color-name": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/color-name/-/color-name-1.1.1.tgz",
"integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=",
"dev": true
},
"color-string": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/color-string/-/color-string-0.3.0.tgz",
"integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=",
"dev": true
},
"colorprint": {
"version": "https://registry.npmjs.org/colorprint/-/colorprint-4.1.0.tgz",
"integrity": "sha1-BSroTEv9Ed7l7xvwfC9iVYT8CYk="
},
"colors": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/colors/-/colors-1.0.3.tgz",
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
},
"combined-stream": {
"version": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk="
},
"commander": {
"version": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz",
"integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q="
},
"component-bind": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/component-bind/-/component-bind-1.0.0.tgz",
"integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E="
},
"component-emitter": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/component-emitter/-/component-emitter-1.2.1.tgz",
"integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY="
},
"component-inherit": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/component-inherit/-/component-inherit-0.0.3.tgz",
"integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM="
},
"concat-map": {
"version": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
},
"concat-stream": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/concat-stream/-/concat-stream-1.6.0.tgz",
"integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=",
"dev": true
},
"content-disposition": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/content-disposition/-/content-disposition-0.5.2.tgz",
"integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ="
},
"content-type": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/content-type/-/content-type-1.0.2.tgz",
"integrity": "sha1-t9ETrueo3Se9IRM8TcJSnfFyHu0="
},
"convert-source-map": {
"version": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.3.0.tgz",
"integrity": "sha1-6fPpxuJyjvwmdmlqcOs4L3MQamc="
},
"cookie": {
"version": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
"integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s="
},
"cookiejar": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/cookiejar/-/cookiejar-2.1.0.tgz",
"integrity": "sha1-hlSWiVObbQ4mm2Y3owS+UIGU2Jg="
},
"cookies": {
"version": "https://registry.npmjs.org/cookies/-/cookies-0.6.2.tgz",
"integrity": "sha1-asGwUolSCOj8TE9fhqntMbnLXM8="
},
"core-js": {
"version": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz",
"integrity": "sha1-TekR5mew6ukSTjQlS1OupvxhjT4="
},
"core-util-is": {
"version": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
"coz": {
"version": "https://registry.npmjs.org/coz/-/coz-6.0.20.tgz",
"integrity": "sha1-JZEbymMPzoFrs59lNwUgIhZh+r4=",
"dev": true
},
"coz-bud": {
"version": "https://registry.npmjs.org/coz-bud/-/coz-bud-4.0.1.tgz",
"integrity": "sha1-W7jvBBSG++QEoEfRNyx2HihIeTw=",
"dev": true
},
"coz-bud-compiler": {
"version": "https://registry.npmjs.org/coz-bud-compiler/-/coz-bud-compiler-2.0.10.tgz",
"integrity": "sha1-FGM+OZp37ifx2DSBPC3zhCnjbQs=",
"dev": true,
"dependencies": {
"async": {
"version": "https://registry.npmjs.org/async/-/async-2.0.1.tgz",
"integrity": "sha1-twnMAoCpw28J9FNr6CPIOKkEniU=",
"dev": true
}
}
},
"coz-bud-loader": {
"version": "https://registry.npmjs.org/coz-bud-loader/-/coz-bud-loader-2.1.1.tgz",
"integrity": "sha1-mmUyVO/4sjjVUOVgJ3u6FQaBAQg=",
"dev": true
},
"coz-bud-remover": {
"version": "https://registry.npmjs.org/coz-bud-remover/-/coz-bud-remover-2.0.5.tgz",
"integrity": "sha1-wj7I1/2YHnSTmc77ZlKmq5kVPTs=",
"dev": true,
"dependencies": {
"async": {
"version": "https://registry.npmjs.org/async/-/async-2.0.1.tgz",
"integrity": "sha1-twnMAoCpw28J9FNr6CPIOKkEniU=",
"dev": true
}
}
},
"coz-bud-writer": {
"version": "https://registry.npmjs.org/coz-bud-writer/-/coz-bud-writer-2.0.6.tgz",
"integrity": "sha1-P5kgSNUFJVBNl60rAVXNtgekM4w=",
"dev": true
},
"coz-engine": {
"version": "https://registry.npmjs.org/coz-engine/-/coz-engine-2.0.6.tgz",
"integrity": "sha1-dMrQvEjfRbNWwbbBhcQ7mBqg3Go=",
"dev": true
},
"coz-handlebars-engine": {
"version": "https://registry.npmjs.org/coz-handlebars-engine/-/coz-handlebars-engine-3.0.8.tgz",
"integrity": "sha1-KVVNSxFAwF6X9Ns2C+zxdinZr80=",
"dev": true
},
"coz-logger": {
"version": "https://registry.npmjs.org/coz-logger/-/coz-logger-4.0.7.tgz",
"integrity": "sha1-B+OuhDFJB3eNGTelqg5D5bNO+uM=",
"dev": true
},
"crc": {
"version": "https://registry.npmjs.org/crc/-/crc-3.4.0.tgz",
"integrity": "sha1-QljjUWE6dO8RU9/LBeggw+lxXX8="
},
"cryptiles": {
"version": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz",
"integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g="
},
"cycle": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/cycle/-/cycle-1.0.3.tgz",
"integrity": "sha1-IegLK+hYD5i0aPN5QwZisEbDStI="
},
"d": {
"version": "https://registry.npmjs.org/d/-/d-0.1.1.tgz",
"integrity": "sha1-2hhMU10Y2O57oqoim5FACfrhEwk="
},
"dashdash": {
"version": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.0.tgz",
"integrity": "sha1-KeSGxUGL8PNWA0qZPVFoajPoQUE=",
"dependencies": {
"assert-plus": {
"version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
}
}
},
"debug": {
"version": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo="
},
"decamelize": {
"version": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
"optional": true
},
"deep-equal": {
"version": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
"integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU="
},
"deep-is": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/deep-is/-/deep-is-0.1.3.tgz",
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
},
"defaults": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/defaults/-/defaults-1.0.3.tgz",
"integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730="
},
"delayed-stream": {
"version": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
},
"delegates": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/delegates/-/delegates-1.0.0.tgz",
"integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o="
},
"depd": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/depd/-/depd-1.1.0.tgz",
"integrity": "sha1-4b2Cxqq2ztlluXuIsX7T5SjKGMM="
},
"destroy": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/destroy/-/destroy-1.0.4.tgz",
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
},
"detect-indent": {
"version": "https://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz",
"integrity": "sha1-ncXl3bzu+DJXZLlFGwK8bVQIT3U=",
"dependencies": {
"minimist": {
"version": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
}
}
},
"diacritics-map": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/diacritics-map/-/diacritics-map-0.1.0.tgz",
"integrity": "sha1-bfwP+dAQAKLt8oZTccrDFulJd68=",
"dev": true
},
"diff": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/diff/-/diff-1.4.0.tgz",
"integrity": "sha1-fyjS657nsVqX79ic5j3P2qPMur8="
},
"dotpic": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/dotpic/-/dotpic-1.0.2.tgz",
"integrity": "sha1-+nKbo01Cicm6aF4b1PyMLDehPRw=",
"dev": true
},
"double-ended-queue": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz",
"integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw="
},
"ecc-jsbn": {
"version": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
"integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
"optional": true
},
"ee-first": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
"encoding": {
"version": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
"integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
"dev": true
},
"error-inject": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/error-inject/-/error-inject-1.0.0.tgz",
"integrity": "sha1-4rPZG1Su1nLzCdlQ0VSFD6EdTzc="
},
"es5-ext": {
"version": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz",
"integrity": "sha1-qoRkHU23a2Krul5F/YBey6sUAEc="
},
"es6-iterator": {
"version": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.0.tgz",
"integrity": "sha1-vZaFZ9YWNeM8C4BydhPJy0sJa6w="
},
"es6-symbol": {
"version": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.0.tgz",
"integrity": "sha1-lEgcZV56fK2C66gy2X1UM0ltf/o="
},
"es6-weak-map": {
"version": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-0.1.4.tgz",
"integrity": "sha1-cGzvnpmqI2undmwjnIueKG6n0ig=",
"dependencies": {
"es6-iterator": {
"version": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-0.1.3.tgz",
"integrity": "sha1-1vWLjE/EE8JJtLqhl2j45NfIlE4="
},
"es6-symbol": {
"version": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-2.0.1.tgz",
"integrity": "sha1-dhtcZ8/U8dGK+yNPaR1nhoLLO/M="
}
}
},
"escape-html": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/escape-html/-/escape-html-1.0.3.tgz",
"integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
},
"escape-string-regexp": {
"version": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
},
"escodegen": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/escodegen/-/escodegen-1.8.1.tgz",
"integrity": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=",
"dependencies": {
"source-map": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/source-map/-/source-map-0.2.0.tgz",
"integrity": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=",
"optional": true
}
}
},
"esprima": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/esprima/-/esprima-2.7.3.tgz",
"integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE="
},
"estraverse": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/estraverse/-/estraverse-1.9.3.tgz",
"integrity": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q="
},
"esutils": {
"version": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs="
},
"evaljson": {
"version": "https://registry.npmjs.org/evaljson/-/evaljson-4.1.1.tgz",
"integrity": "sha1-pXoCXYqEEAhPjI1sUvOKnW++rGc=",
"dev": true,
"dependencies": {
"objnest": {
"version": "https://registry.npmjs.org/objnest/-/objnest-3.0.9.tgz",
"integrity": "sha1-yBHtOVXPRgO6Ncx+A0j+oZUbk5U=",
"dev": true
}
}
},
"event-emitter": {
"version": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.4.tgz",
"integrity": "sha1-jWPd+0z+H647MsomXExyAiIIC7U="
},
"execcli": {
"version": "https://registry.npmjs.org/execcli/-/execcli-4.0.10.tgz",
"integrity": "sha1-EtAeAWfAeAJsORstma51evR6UGg="
},
"expand-range": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/expand-range/-/expand-range-1.8.2.tgz",
"integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=",
"dev": true
},
"extend": {
"version": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz",
"integrity": "sha1-WkdDU7nzNT3dgXbf03uRyDpG8dQ="
},
"extend-shallow": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
"dev": true
},
"extsprintf": {
"version": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz",
"integrity": "sha1-4QgOBljjALBilJkMxw4VAiNf1VA="
},
"eyes": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/eyes/-/eyes-0.1.8.tgz",
"integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A="
},
"fast-levenshtein": {
"version": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
},
"fbjs": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/fbjs/-/fbjs-0.8.9.tgz",
"integrity": "sha1-GAJH+9NH3MkARRe5BPhlQAoMjxQ=",
"dev": true,
"dependencies": {
"core-js": {
"version": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
"integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=",
"dev": true
}
}
},
"file-exists": {
"version": "https://realglobe.artifactoryonline.com/realglobe/api/npm/npm-virtual/file-exists/-/file-exists-1.0.0.tgz",
"integrity": "sha1-5tJptWVnuJIlgTmOmQ3XB49y1hY=",
"dev": true
},
"filecopy": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/filecopy/-/filecopy-3.0.1.tgz",
"integrity": "sha1-hqX4pylo7K6qW7suPoEKh3zUmWY=",
"dev": true,
"dependencies": {
"aglob": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/aglob/-/aglob-2.0.1.tgz",
"integrity": "sha1-kl7PJC11AkLAcVrNMy+V90kGZhQ=",
"dev": true
},
"brace-expansion": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz",