forked from 18F/identity-idp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
3368 lines (3368 loc) · 155 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": "upaya",
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"JSONStream": {
"version": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz",
"integrity": "sha1-cH92HgHa6eFvG8+TcDt4xwlmV5o=",
"dev": true,
"requires": {
"jsonparse": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
"through": "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
}
},
"acorn": {
"version": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz",
"integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=",
"dev": true
},
"acorn-jsx": {
"version": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
"integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=",
"dev": true,
"requires": {
"acorn": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"
},
"dependencies": {
"acorn": {
"version": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
"integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
"dev": true
}
}
},
"ajv": {
"version": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz",
"integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=",
"dev": true,
"requires": {
"co": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"json-stable-stringify": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"
},
"dependencies": {
"json-stable-stringify": {
"version": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
"integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
"dev": true,
"requires": {
"jsonify": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"
}
}
}
},
"ajv-keywords": {
"version": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz",
"integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=",
"dev": true
},
"amdefine": {
"version": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
"dev": true,
"optional": true
},
"ansi-escapes": {
"version": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
"integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=",
"dev": true
},
"ansi-regex": {
"version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
"dev": true
},
"ansi-styles": {
"version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
"dev": true
},
"argparse": {
"version": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
"dev": true,
"requires": {
"sprintf-js": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
}
},
"array-filter": {
"version": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz",
"integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=",
"dev": true
},
"array-map": {
"version": "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz",
"integrity": "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=",
"dev": true
},
"array-reduce": {
"version": "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz",
"integrity": "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=",
"dev": true
},
"array-union": {
"version": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
"dev": true,
"requires": {
"array-uniq": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"
}
},
"array-uniq": {
"version": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
"dev": true
},
"arrify": {
"version": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
"asn1.js": {
"version": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.9.1.tgz",
"integrity": "sha1-SLokC0WpKA6UdImQull9IWYX/UA=",
"dev": true,
"requires": {
"bn.js": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
"minimalistic-assert": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz"
}
},
"assert": {
"version": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz",
"integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=",
"dev": true,
"requires": {
"util": "https://registry.npmjs.org/util/-/util-0.10.3.tgz"
}
},
"assertion-error": {
"version": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.2.tgz",
"integrity": "sha1-E8pRXYYgbaC6xm6DTdOX2HWBCUw=",
"dev": true
},
"astw": {
"version": "https://registry.npmjs.org/astw/-/astw-2.2.0.tgz",
"integrity": "sha1-e9QXhNMkk5h66yOba04cV6hzuRc=",
"dev": true,
"requires": {
"acorn": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"
}
},
"async": {
"version": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
"dev": true
},
"babel-code-frame": {
"version": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz",
"integrity": "sha1-AnYgvuVnqIwyVhV05/0IAdMxGOQ=",
"dev": true,
"requires": {
"chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"esutils": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"js-tokens": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.1.tgz"
}
},
"babel-core": {
"version": "https://registry.npmjs.org/babel-core/-/babel-core-6.24.1.tgz",
"integrity": "sha1-jEKFZNzh4fQfszfsNPTDsCK1rYM=",
"dev": true,
"requires": {
"babel-code-frame": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz",
"babel-generator": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.24.1.tgz",
"babel-helpers": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-register": "https://registry.npmjs.org/babel-register/-/babel-register-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-6.17.2.tgz",
"convert-source-map": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz",
"json5": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"private": "https://registry.npmjs.org/private/-/private-0.1.7.tgz",
"slash": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
"source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz"
}
},
"babel-eslint": {
"version": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-7.2.3.tgz",
"integrity": "sha1-sv4tgBJkcPXBlELcdXJTqJdxCCc=",
"dev": true,
"requires": {
"babel-code-frame": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-6.17.2.tgz"
}
},
"babel-generator": {
"version": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.24.1.tgz",
"integrity": "sha1-5xX0hsWN7SVknYiJRNUqoHxdlJc=",
"dev": true,
"requires": {
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"detect-indent": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
"jsesc": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
"trim-right": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz"
},
"dependencies": {
"jsesc": {
"version": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
"integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=",
"dev": true
}
}
},
"babel-helper-call-delegate": {
"version": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
"integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
"dev": true,
"requires": {
"babel-helper-hoist-variables": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-helper-define-map": {
"version": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz",
"integrity": "sha1-epdH8ljYlH0y1RX2qhx70CIEoIA=",
"dev": true,
"requires": {
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-helper-function-name": {
"version": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
"integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
"dev": true,
"requires": {
"babel-helper-get-function-arity": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-helper-get-function-arity": {
"version": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
"integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-helper-hoist-variables": {
"version": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
"integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-helper-optimise-call-expression": {
"version": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
"integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-helper-regex": {
"version": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz",
"integrity": "sha1-024i+rEAjXnYhkjjIRaGgShFbOg=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-helper-replace-supers": {
"version": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
"integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
"dev": true,
"requires": {
"babel-helper-optimise-call-expression": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-helpers": {
"version": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
"integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz"
}
},
"babel-messages": {
"version": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-check-es2015-constants": {
"version": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
"integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-arrow-functions": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
"integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"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.22.0.tgz",
"integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-block-scoping": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz",
"integrity": "sha1-dsKV3DpHQbFmWt/TFnIV3P8ypXY=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-plugin-transform-es2015-classes": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
"integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
"dev": true,
"requires": {
"babel-helper-define-map": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz",
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
"babel-helper-optimise-call-expression": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
"babel-helper-replace-supers": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-computed-properties": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
"integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-destructuring": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
"integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-duplicate-keys": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
"integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-for-of": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
"integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-function-name": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
"integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
"dev": true,
"requires": {
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-literals": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
"integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-modules-amd": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
"integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=",
"dev": true,
"requires": {
"babel-plugin-transform-es2015-modules-commonjs": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz",
"integrity": "sha1-0+MQtA72ZKNmIiAAl8bUQCmPK/4=",
"dev": true,
"requires": {
"babel-plugin-transform-strict-mode": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-modules-systemjs": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
"integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=",
"dev": true,
"requires": {
"babel-helper-hoist-variables": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-modules-umd": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
"integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=",
"dev": true,
"requires": {
"babel-plugin-transform-es2015-modules-amd": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-object-super": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
"integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
"dev": true,
"requires": {
"babel-helper-replace-supers": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-parameters": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
"integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
"dev": true,
"requires": {
"babel-helper-call-delegate": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
"babel-helper-get-function-arity": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-shorthand-properties": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
"integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-spread": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
"integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-sticky-regex": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
"integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
"dev": true,
"requires": {
"babel-helper-regex": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-plugin-transform-es2015-template-literals": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
"integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-typeof-symbol": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
"integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
}
},
"babel-plugin-transform-es2015-unicode-regex": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
"integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
"dev": true,
"requires": {
"babel-helper-regex": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"regexpu-core": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz"
}
},
"babel-plugin-transform-regenerator": {
"version": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz",
"integrity": "sha1-uNowWtQ8PJm0hI5P5AN7dw0jxBg=",
"dev": true,
"requires": {
"regenerator-transform": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.9.11.tgz"
}
},
"babel-plugin-transform-strict-mode": {
"version": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
"integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz"
}
},
"babel-preset-es2015": {
"version": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz",
"integrity": "sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk=",
"dev": true,
"requires": {
"babel-plugin-check-es2015-constants": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
"babel-plugin-transform-es2015-arrow-functions": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
"babel-plugin-transform-es2015-block-scoped-functions": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
"babel-plugin-transform-es2015-block-scoping": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz",
"babel-plugin-transform-es2015-classes": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
"babel-plugin-transform-es2015-computed-properties": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
"babel-plugin-transform-es2015-destructuring": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
"babel-plugin-transform-es2015-duplicate-keys": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
"babel-plugin-transform-es2015-for-of": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
"babel-plugin-transform-es2015-function-name": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
"babel-plugin-transform-es2015-literals": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
"babel-plugin-transform-es2015-modules-amd": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
"babel-plugin-transform-es2015-modules-commonjs": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz",
"babel-plugin-transform-es2015-modules-systemjs": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
"babel-plugin-transform-es2015-modules-umd": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
"babel-plugin-transform-es2015-object-super": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
"babel-plugin-transform-es2015-parameters": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
"babel-plugin-transform-es2015-shorthand-properties": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
"babel-plugin-transform-es2015-spread": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
"babel-plugin-transform-es2015-sticky-regex": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
"babel-plugin-transform-es2015-template-literals": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
"babel-plugin-transform-es2015-typeof-symbol": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
"babel-plugin-transform-es2015-unicode-regex": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
"babel-plugin-transform-regenerator": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz"
}
},
"babel-register": {
"version": "https://registry.npmjs.org/babel-register/-/babel-register-6.24.1.tgz",
"integrity": "sha1-fhDhOi9xBlvfrVoXh7pFvKbe118=",
"dev": true,
"requires": {
"babel-core": "https://registry.npmjs.org/babel-core/-/babel-core-6.24.1.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"core-js": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz",
"home-or-tmp": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"source-map-support": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.15.tgz"
}
},
"babel-runtime": {
"version": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"integrity": "sha1-CpSJ8UTecO+zzkMArM2zKeL8VDs=",
"requires": {
"core-js": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz",
"regenerator-runtime": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz"
}
},
"babel-template": {
"version": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
"integrity": "sha1-BK5RTx+Ts6JTfyoPYKWkX7gwgzM=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-6.17.2.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-traverse": {
"version": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
"integrity": "sha1-qzZnP9NW+aCUhlnnszjV/q2zFpU=",
"dev": true,
"requires": {
"babel-code-frame": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz",
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-6.17.2.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz",
"globals": "https://registry.npmjs.org/globals/-/globals-9.17.0.tgz",
"invariant": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-types": {
"version": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
"integrity": "sha1-oTaHncFbNga9oNkMH8dDBML/CXU=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"esutils": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"to-fast-properties": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"
}
},
"babelify": {
"version": "https://registry.npmjs.org/babelify/-/babelify-7.3.0.tgz",
"integrity": "sha1-qlau3nBn/XvVSWZu4W3ChQh+iOU=",
"dev": true,
"requires": {
"babel-core": "https://registry.npmjs.org/babel-core/-/babel-core-6.24.1.tgz",
"object-assign": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
}
},
"babylon": {
"version": "https://registry.npmjs.org/babylon/-/babylon-6.17.2.tgz",
"integrity": "sha1-IB0l71+JLEG65JSIsI2w3Udun1w=",
"dev": true
},
"balanced-match": {
"version": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
"integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
"dev": true
},
"base64-js": {
"version": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz",
"integrity": "sha1-o5mS1yNYSBGYK+XikLtqU9hnAPE=",
"dev": true
},
"basscss": {
"version": "https://registry.npmjs.org/basscss/-/basscss-7.1.1.tgz",
"integrity": "sha1-e/MSAxl6Kd8O7lUfQlYXqL58d3s=",
"requires": {
"basscss-align": "https://registry.npmjs.org/basscss-align/-/basscss-align-1.0.2.tgz",
"basscss-background-colors": "https://registry.npmjs.org/basscss-background-colors/-/basscss-background-colors-1.1.3.tgz",
"basscss-base-forms": "https://registry.npmjs.org/basscss-base-forms/-/basscss-base-forms-2.0.2.tgz",
"basscss-base-reset": "https://registry.npmjs.org/basscss-base-reset/-/basscss-base-reset-2.0.3.tgz",
"basscss-base-tables": "https://registry.npmjs.org/basscss-base-tables/-/basscss-base-tables-1.0.2.tgz",
"basscss-base-typography": "https://registry.npmjs.org/basscss-base-typography/-/basscss-base-typography-2.0.3.tgz",
"basscss-border": "https://registry.npmjs.org/basscss-border/-/basscss-border-3.0.4.tgz",
"basscss-border-colors": "https://registry.npmjs.org/basscss-border-colors/-/basscss-border-colors-1.1.3.tgz",
"basscss-borders": "https://registry.npmjs.org/basscss-borders/-/basscss-borders-2.0.5.tgz",
"basscss-btn": "https://registry.npmjs.org/basscss-btn/-/basscss-btn-1.1.1.tgz",
"basscss-btn-outline": "https://registry.npmjs.org/basscss-btn-outline/-/basscss-btn-outline-1.1.0.tgz",
"basscss-btn-primary": "https://registry.npmjs.org/basscss-btn-primary/-/basscss-btn-primary-1.1.0.tgz",
"basscss-color-base": "https://registry.npmjs.org/basscss-color-base/-/basscss-color-base-2.0.2.tgz",
"basscss-color-forms": "https://registry.npmjs.org/basscss-color-forms/-/basscss-color-forms-3.0.2.tgz",
"basscss-color-tables": "https://registry.npmjs.org/basscss-color-tables/-/basscss-color-tables-1.0.4.tgz",
"basscss-colors": "https://registry.npmjs.org/basscss-colors/-/basscss-colors-2.2.0.tgz",
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz",
"basscss-grid": "https://registry.npmjs.org/basscss-grid/-/basscss-grid-1.0.6.tgz",
"basscss-layout": "https://registry.npmjs.org/basscss-layout/-/basscss-layout-3.1.0.tgz",
"basscss-margin": "https://registry.npmjs.org/basscss-margin/-/basscss-margin-1.0.7.tgz",
"basscss-padding": "https://registry.npmjs.org/basscss-padding/-/basscss-padding-1.1.3.tgz",
"basscss-position": "https://registry.npmjs.org/basscss-position/-/basscss-position-2.0.3.tgz",
"basscss-positions": "https://registry.npmjs.org/basscss-positions/-/basscss-positions-1.0.5.tgz",
"basscss-responsive-states": "https://registry.npmjs.org/basscss-responsive-states/-/basscss-responsive-states-1.0.6.tgz",
"basscss-type-scale": "https://registry.npmjs.org/basscss-type-scale/-/basscss-type-scale-1.0.5.tgz",
"basscss-typography": "https://registry.npmjs.org/basscss-typography/-/basscss-typography-3.0.3.tgz",
"flex-object": "https://registry.npmjs.org/flex-object/-/flex-object-2.0.5.tgz"
}
},
"basscss-align": {
"version": "https://registry.npmjs.org/basscss-align/-/basscss-align-1.0.2.tgz",
"integrity": "sha1-KUqmidb5nahuSvTFwokocIVcHDc="
},
"basscss-background-colors": {
"version": "https://registry.npmjs.org/basscss-background-colors/-/basscss-background-colors-1.1.3.tgz",
"integrity": "sha1-VKKDZRxAklZTJKTvW8JdcL52IdY=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-base-forms": {
"version": "https://registry.npmjs.org/basscss-base-forms/-/basscss-base-forms-2.0.2.tgz",
"integrity": "sha1-Fgi5n/SG3WuJEZLKjSXi7VdYWao=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-base-reset": {
"version": "https://registry.npmjs.org/basscss-base-reset/-/basscss-base-reset-2.0.3.tgz",
"integrity": "sha1-WScWF55JfgtOfJrdHxxMNAF8Vy0="
},
"basscss-base-tables": {
"version": "https://registry.npmjs.org/basscss-base-tables/-/basscss-base-tables-1.0.2.tgz",
"integrity": "sha1-uFDqHWSwb5GSK/z0AUuqoINquzA=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-base-typography": {
"version": "https://registry.npmjs.org/basscss-base-typography/-/basscss-base-typography-2.0.3.tgz",
"integrity": "sha1-H0vzRXEkgoII9oa8OFzTMK5+enI=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-border": {
"version": "https://registry.npmjs.org/basscss-border/-/basscss-border-3.0.4.tgz",
"integrity": "sha1-ZZk1aNoIZ+t12Wtwn5fjOyuQJIY=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-border-colors": {
"version": "https://registry.npmjs.org/basscss-border-colors/-/basscss-border-colors-1.1.3.tgz",
"integrity": "sha1-nrIya0eeqpe/m9bE7rwf2CTYCf4=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-borders": {
"version": "https://registry.npmjs.org/basscss-borders/-/basscss-borders-2.0.5.tgz",
"integrity": "sha1-PYRw+6kOzoknBeGlskwna3Oe644=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-btn": {
"version": "https://registry.npmjs.org/basscss-btn/-/basscss-btn-1.1.1.tgz",
"integrity": "sha1-xCFX8gG9lduaJRVoxULnQLKj178="
},
"basscss-btn-outline": {
"version": "https://registry.npmjs.org/basscss-btn-outline/-/basscss-btn-outline-1.1.0.tgz",
"integrity": "sha1-uEROqdPVCM0Adgqdb9/0uvXUJ1g="
},
"basscss-btn-primary": {
"version": "https://registry.npmjs.org/basscss-btn-primary/-/basscss-btn-primary-1.1.0.tgz",
"integrity": "sha1-DBJJKXHiFuQr3xNEEa/DgCw9i/c="
},
"basscss-color-base": {
"version": "https://registry.npmjs.org/basscss-color-base/-/basscss-color-base-2.0.2.tgz",
"integrity": "sha1-7YSL/OORq1NabRSnAqFPpMTzJC0=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-color-forms": {
"version": "https://registry.npmjs.org/basscss-color-forms/-/basscss-color-forms-3.0.2.tgz",
"integrity": "sha1-jy0dB9X8tmRVbNNUvvmM67LV4Ms=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-color-tables": {
"version": "https://registry.npmjs.org/basscss-color-tables/-/basscss-color-tables-1.0.4.tgz",
"integrity": "sha1-1DXsfF8hD6F959G4gT3rvKalQ+E=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-colors": {
"version": "https://registry.npmjs.org/basscss-colors/-/basscss-colors-2.2.0.tgz",
"integrity": "sha1-3Mt3Picu/kXfSkgJYsi9iLams+E=",
"requires": {
"colors.css": "https://registry.npmjs.org/colors.css/-/colors.css-3.0.0.tgz"
},
"dependencies": {
"colors.css": {
"version": "https://registry.npmjs.org/colors.css/-/colors.css-3.0.0.tgz",
"integrity": "sha1-URz0L7inGZqMvvSciKTqTx2Pnvw="
}
}
},
"basscss-defaults": {
"version": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz",
"integrity": "sha1-tOpjToFcaSPwx2ZbFIpMyLO0OSc=",
"requires": {
"colors.css": "https://registry.npmjs.org/colors.css/-/colors.css-2.3.0.tgz"
}
},
"basscss-grid": {
"version": "https://registry.npmjs.org/basscss-grid/-/basscss-grid-1.0.6.tgz",
"integrity": "sha1-GlEsc7h0MwXkejanQyqtXCbMKGc=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-layout": {
"version": "https://registry.npmjs.org/basscss-layout/-/basscss-layout-3.1.0.tgz",
"integrity": "sha1-+fOS5IDaZmV9n+XenKTAfFecOk4="
},
"basscss-margin": {
"version": "https://registry.npmjs.org/basscss-margin/-/basscss-margin-1.0.7.tgz",
"integrity": "sha1-WpLYzamO85HHOhXt6Xs0tIiGQXw="
},
"basscss-padding": {
"version": "https://registry.npmjs.org/basscss-padding/-/basscss-padding-1.1.3.tgz",
"integrity": "sha1-adt5lBTm3Vi+2Dd2lSzCmeLmh04="
},
"basscss-position": {
"version": "https://registry.npmjs.org/basscss-position/-/basscss-position-2.0.3.tgz",
"integrity": "sha1-RnGAofjzhukHLtjQgpTSpuC6QwU="
},
"basscss-positions": {
"version": "https://registry.npmjs.org/basscss-positions/-/basscss-positions-1.0.5.tgz",
"integrity": "sha1-5P37bQMc8ljGERf5M3Hzq7uTiBo="
},
"basscss-responsive-states": {
"version": "https://registry.npmjs.org/basscss-responsive-states/-/basscss-responsive-states-1.0.6.tgz",
"integrity": "sha1-2JI0PheZiFwD5PHHAs18GrUo8AI=",
"requires": {
"basscss-defaults": "https://registry.npmjs.org/basscss-defaults/-/basscss-defaults-2.1.3.tgz"
}
},
"basscss-sass": {
"version": "https://registry.npmjs.org/basscss-sass/-/basscss-sass-3.0.0.tgz",
"integrity": "sha1-nxvoX6jqafmUQVN2ImjEavMLxM0=",
"requires": {
"basscss": "https://registry.npmjs.org/basscss/-/basscss-7.1.1.tgz"
}
},
"basscss-type-scale": {
"version": "https://registry.npmjs.org/basscss-type-scale/-/basscss-type-scale-1.0.5.tgz",
"integrity": "sha1-I79eQcnRQsgGHPmCnM8j6bMljsc="
},
"basscss-typography": {
"version": "https://registry.npmjs.org/basscss-typography/-/basscss-typography-3.0.3.tgz",
"integrity": "sha1-GCz0PffE6+0CdQ3HSAQcut/2DUM="
},
"bluebird": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz",
"integrity": "sha1-AkpVFylTCIV/FPkfEQb8O1VfRGs="
},
"bn.js": {
"version": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz",
"integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=",
"dev": true
},
"brace-expansion": {
"version": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz",
"integrity": "sha1-Pv/DxQ4ABTH7cg6v+A8K6O8jz1k=",
"dev": true,
"requires": {
"balanced-match": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
"concat-map": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
}
},
"brorand": {
"version": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
"integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
"dev": true
},
"browser-pack": {
"version": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.0.2.tgz",
"integrity": "sha1-+GzWzvT1MAyOY+B6TVEvZfv/RTE=",
"dev": true,
"requires": {
"JSONStream": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz",
"combine-source-map": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.7.2.tgz",
"defined": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz",
"through2": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
"umd": "https://registry.npmjs.org/umd/-/umd-3.0.1.tgz"
}
},
"browser-resolve": {
"version": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz",
"integrity": "sha1-j/CbCixCFxihBRwmCzLkj0QpOM4=",
"dev": true,
"requires": {
"resolve": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"
},
"dependencies": {
"resolve": {
"version": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
"integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=",
"dev": true
}
}
},
"browserify": {
"version": "https://registry.npmjs.org/browserify/-/browserify-13.3.0.tgz",
"integrity": "sha1-tanJAgJD8McORnW+yCI7xifkFc4=",
"dev": true,
"requires": {
"JSONStream": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz",
"assert": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz",
"browser-pack": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.0.2.tgz",
"browser-resolve": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz",
"browserify-zlib": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz",
"buffer": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
"cached-path-relative": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.1.tgz",
"concat-stream": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz",
"console-browserify": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz",
"constants-browserify": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
"crypto-browserify": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.11.0.tgz",
"defined": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz",
"deps-sort": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz",
"domain-browser": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz",
"duplexer2": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz",
"events": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
"glob": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
"has": "https://registry.npmjs.org/has/-/has-1.0.1.tgz",
"htmlescape": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz",
"https-browserify": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
"insert-module-globals": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.1.tgz",
"labeled-stream-splicer": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz",
"module-deps": "https://registry.npmjs.org/module-deps/-/module-deps-4.1.1.tgz",
"os-browserify": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.1.2.tgz",
"parents": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz",
"path-browserify": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz",
"process": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
"punycode": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
"querystring-es3": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
"read-only-stream": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz",
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz",
"resolve": "https://registry.npmjs.org/resolve/-/resolve-1.3.3.tgz",
"shasum": "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz",
"shell-quote": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz",
"stream-browserify": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz",
"stream-http": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.1.tgz",
"string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
"subarg": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz",
"syntax-error": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.3.0.tgz",
"through2": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
"timers-browserify": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz",
"tty-browserify": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
"url": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
"util": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
"vm-browserify": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz",
"xtend": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"
}
},
"browserify-aes": {
"version": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.0.6.tgz",
"integrity": "sha1-Xncl297x/Vkw1OurSFZ85FHEigo=",
"dev": true,
"requires": {
"buffer-xor": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
"cipher-base": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.3.tgz",
"create-hash": "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz",
"evp_bytestokey": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
}
},
"browserify-cache-api": {
"version": "https://registry.npmjs.org/browserify-cache-api/-/browserify-cache-api-3.0.1.tgz",
"integrity": "sha1-liR+hT8Gj9bg1FzHPwuyzZd47wI=",
"dev": true,
"requires": {
"async": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"through2": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
"xtend": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"
}
},
"browserify-cipher": {