-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
3453 lines (3453 loc) · 160 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": "twitter-stella",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"JSONStream": {
"version": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.2.1.tgz",
"integrity": "sha1-MqpXkOeZSBCDtJtLf6lOI7rmm/k=",
"requires": {
"jsonparse": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz",
"through": "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
}
},
"accepts": {
"version": "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz",
"integrity": "sha1-5fHzkoxtlf2WVYw27D2dDeSm7Oo=",
"requires": {
"mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.12.tgz",
"negotiator": "https://registry.npmjs.org/negotiator/-/negotiator-0.5.3.tgz"
}
},
"adaro": {
"version": "https://registry.npmjs.org/adaro/-/adaro-1.0.2.tgz",
"integrity": "sha1-HdNRvvIkMynPeGgwZXGuB6e2fNA=",
"requires": {
"aproba": "https://registry.npmjs.org/aproba/-/aproba-1.0.4.tgz",
"core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"debuglog": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz",
"dustjs-helpers": "https://registry.npmjs.org/dustjs-helpers/-/dustjs-helpers-1.7.3.tgz",
"dustjs-linkedin": "https://registry.npmjs.org/dustjs-linkedin/-/dustjs-linkedin-2.7.4.tgz",
"freshy": "https://registry.npmjs.org/freshy/-/freshy-1.0.2.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"verror": "https://registry.npmjs.org/verror/-/verror-1.8.1.tgz"
}
},
"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="
},
"anymatch": {
"version": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz",
"integrity": "sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc=",
"requires": {
"arrify": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz"
}
},
"append-field": {
"version": "https://registry.npmjs.org/append-field/-/append-field-0.1.0.tgz",
"integrity": "sha1-bdxY+gg8e8VF08WZWygwzCNm1Eo="
},
"aproba": {
"version": "https://registry.npmjs.org/aproba/-/aproba-1.0.4.tgz",
"integrity": "sha1-JxNoB3XnYUyLoYbAZdTi5S0QcsA="
},
"arr-diff": {
"version": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
"integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
"requires": {
"arr-flatten": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz"
}
},
"arr-flatten": {
"version": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"integrity": "sha1-5f/lTUXhnzLyFukeuZyM6JK7YEs="
},
"array-flatten": {
"version": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
},
"array-unique": {
"version": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
"integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM="
},
"arrify": {
"version": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
},
"ascli": {
"version": "https://registry.npmjs.org/ascli/-/ascli-1.0.1.tgz",
"integrity": "sha1-vPpZdKYvGOgcq660lzKrSoj5Brw=",
"requires": {
"colour": "https://registry.npmjs.org/colour/-/colour-0.7.1.tgz",
"optjs": "https://registry.npmjs.org/optjs/-/optjs-3.2.2.tgz"
}
},
"asn1": {
"version": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y="
},
"assert-plus": {
"version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
},
"async": {
"version": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
},
"async-each": {
"version": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0="
},
"asynckit": {
"version": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"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.5.0.tgz",
"integrity": "sha1-Cin/t5wxyecS7rCH6OemS0pW11U="
},
"balanced-match": {
"version": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
"integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
},
"base64-url": {
"version": "https://registry.npmjs.org/base64-url/-/base64-url-1.3.3.tgz",
"integrity": "sha1-+LbFN/CaT8WMmcuG4LDpxhRhog8="
},
"base64url": {
"version": "https://registry.npmjs.org/base64url/-/base64url-1.0.6.tgz",
"integrity": "sha1-1k03XWinxkDZEuI1jRcNylu1RoE=",
"requires": {
"concat-stream": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.4.10.tgz",
"meow": "https://registry.npmjs.org/meow/-/meow-2.0.0.tgz"
},
"dependencies": {
"concat-stream": {
"version": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.4.10.tgz",
"integrity": "sha1-rMO79WAsuMyYDGrIQPp9hgPj7zY=",
"requires": {
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"typedarray": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"
}
},
"isarray": {
"version": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
},
"readable-stream": {
"version": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
"requires": {
"core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"isarray": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"
}
}
}
},
"bcrypt-pbkdf": {
"version": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz",
"integrity": "sha1-PKdrhSQccXC/fZcD57mqdGMAQNQ=",
"optional": true,
"requires": {
"tweetnacl": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.3.tgz"
}
},
"binary-extensions": {
"version": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.7.0.tgz",
"integrity": "sha1-bBYQ2xY6v7NO3+QvpCM0Oh4BGF0="
},
"bindings": {
"version": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz",
"integrity": "sha1-FK1hE4EtLTfXLme0ystLtyZQXxE="
},
"bl": {
"version": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz",
"integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=",
"requires": {
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"
},
"dependencies": {
"readable-stream": {
"version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
"integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=",
"requires": {
"core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"isarray": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
"string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
"util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
}
}
}
},
"body-parser": {
"version": "https://registry.npmjs.org/body-parser/-/body-parser-1.15.2.tgz",
"integrity": "sha1-11eM9PHRHV9uqATO813Hp/9trmc=",
"requires": {
"bytes": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz",
"content-type": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"depd": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz",
"http-errors": "https://registry.npmjs.org/http-errors/-/http-errors-1.5.0.tgz",
"iconv-lite": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz",
"on-finished": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
"qs": "https://registry.npmjs.org/qs/-/qs-6.2.0.tgz",
"raw-body": "https://registry.npmjs.org/raw-body/-/raw-body-2.1.7.tgz",
"type-is": "https://registry.npmjs.org/type-is/-/type-is-1.6.13.tgz"
},
"dependencies": {
"http-errors": {
"version": "https://registry.npmjs.org/http-errors/-/http-errors-1.5.0.tgz",
"integrity": "sha1-scs9gmD9jiOGytMYkEWUM3LUghE=",
"requires": {
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
"setprototypeof": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.1.tgz",
"statuses": "https://registry.npmjs.org/statuses/-/statuses-1.3.0.tgz"
}
},
"inherits": {
"version": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
"integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
},
"qs": {
"version": "https://registry.npmjs.org/qs/-/qs-6.2.0.tgz",
"integrity": "sha1-O3hIwDwt7OaalSKw+ujEEm10Xzs="
},
"statuses": {
"version": "https://registry.npmjs.org/statuses/-/statuses-1.3.0.tgz",
"integrity": "sha1-jlV1jLIOdoLB9Pzo3KswvwHR4Ho="
}
}
},
"boom": {
"version": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
"integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
"requires": {
"hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"
}
},
"brace-expansion": {
"version": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz",
"integrity": "sha1-cZfX6qm4fmSDkOph/GbIRCdCDfk=",
"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"
}
},
"braces": {
"version": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz",
"integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
"requires": {
"expand-range": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
"preserve": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz",
"repeat-element": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz"
}
},
"buffer-equal": {
"version": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz",
"integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs="
},
"buffer-equal-constant-time": {
"version": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
"integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk="
},
"buffer-shims": {
"version": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz",
"integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E="
},
"bufferview": {
"version": "https://registry.npmjs.org/bufferview/-/bufferview-1.0.1.tgz",
"integrity": "sha1-ev10pF+Tf6QiodM4wIu/3HbNcl0="
},
"busboy": {
"version": "https://registry.npmjs.org/busboy/-/busboy-0.2.13.tgz",
"integrity": "sha1-kPxPajln2BVhb8l2v6jlau0MWLY=",
"requires": {
"dicer": "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz",
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"
},
"dependencies": {
"isarray": {
"version": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
},
"readable-stream": {
"version": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
"requires": {
"core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"isarray": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"
}
}
}
},
"bytebuffer": {
"version": "https://registry.npmjs.org/bytebuffer/-/bytebuffer-4.1.0.tgz",
"integrity": "sha1-TFgmngUqseSx9/82T9+zzogpBqo=",
"requires": {
"bufferview": "https://registry.npmjs.org/bufferview/-/bufferview-1.0.1.tgz",
"long": "https://registry.npmjs.org/long/-/long-2.4.0.tgz"
}
},
"bytes": {
"version": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz",
"integrity": "sha1-fZcZb51br39pNeJZhVSe3SpsIzk="
},
"caller": {
"version": "https://registry.npmjs.org/caller/-/caller-0.0.1.tgz",
"integrity": "sha1-83odbqEOgp2UchrimpC7T7Uqt2c=",
"requires": {
"tape": "https://registry.npmjs.org/tape/-/tape-2.3.3.tgz"
}
},
"camelcase": {
"version": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk="
},
"camelcase-keys": {
"version": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-1.0.0.tgz",
"integrity": "sha1-vRoRv5sxoc5JNJOpMN4aC69K1+w=",
"requires": {
"camelcase": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
"map-obj": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"
}
},
"capture-stack-trace": {
"version": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz",
"integrity": "sha1-Sm+gc5nCa7pH8LJJa00PtAjFVQ0="
},
"caseless": {
"version": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz",
"integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c="
},
"chalk": {
"version": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"requires": {
"ansi-styles": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"has-ansi": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
"strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"supports-color": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"
}
},
"chokidar": {
"version": "https://registry.npmjs.org/chokidar/-/chokidar-1.5.2.tgz",
"integrity": "sha1-KT5yhkDMk92Cd0JDNLPG1K06NIo=",
"requires": {
"anymatch": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz",
"async-each": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"fsevents": "https://registry.npmjs.org/fsevents/-/fsevents-1.0.15.tgz",
"glob-parent": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"is-binary-path": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
"is-glob": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"readdirp": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz"
}
},
"cli": {
"version": "https://registry.npmjs.org/cli/-/cli-0.11.3.tgz",
"integrity": "sha1-ewzT3pkORSklZnwNuv/cn38qmhU=",
"requires": {
"exit": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
"glob": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz"
}
},
"cliui": {
"version": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
"integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
"requires": {
"string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
"strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"wrap-ansi": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.0.0.tgz"
}
},
"code-point-at": {
"version": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
},
"coffee-script": {
"version": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.11.1.tgz",
"integrity": "sha1-vxxHrWREOg2V0S3ysUfMCk2q1uk="
},
"colour": {
"version": "https://registry.npmjs.org/colour/-/colour-0.7.1.tgz",
"integrity": "sha1-nLFpkX7F0SwHNtPoaFdG3xyt93g="
},
"combined-stream": {
"version": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
"requires": {
"delayed-stream": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
}
},
"commander": {
"version": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz",
"integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=",
"requires": {
"graceful-readlink": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"
}
},
"concat-map": {
"version": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
},
"concat-stream": {
"version": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz",
"integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=",
"requires": {
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
"typedarray": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"
},
"dependencies": {
"readable-stream": {
"version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
"integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=",
"requires": {
"core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"isarray": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
"string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
"util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
}
}
}
},
"configstore": {
"version": "https://registry.npmjs.org/configstore/-/configstore-1.4.0.tgz",
"integrity": "sha1-w1eB0FAdJowlxUuLF/YkDopPsCE=",
"requires": {
"graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.10.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"object-assign": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz",
"os-tmpdir": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
"osenv": "https://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz",
"uuid": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz",
"write-file-atomic": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.2.0.tgz",
"xdg-basedir": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz"
},
"dependencies": {
"object-assign": {
"version": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz",
"integrity": "sha1-ejs9DpgGPUP0wD8uiubNUahog6A="
}
}
},
"content-disposition": {
"version": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.1.tgz",
"integrity": "sha1-h0dsamfI2qh+Muh2Ft+IO6f7Bxs="
},
"content-type": {
"version": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz",
"integrity": "sha1-t9ETrueo3Se9IRM8TcJSnfFyHu0="
},
"cookie": {
"version": "https://registry.npmjs.org/cookie/-/cookie-0.1.5.tgz",
"integrity": "sha1-armUiksa4hlSzSWIUwpHItQETXw="
},
"cookie-session": {
"version": "https://registry.npmjs.org/cookie-session/-/cookie-session-1.2.0.tgz",
"integrity": "sha1-nfK+uecjmY5w0eMf2jeyigvPN/8=",
"requires": {
"cookies": "https://registry.npmjs.org/cookies/-/cookies-0.5.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"on-headers": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz"
}
},
"cookie-signature": {
"version": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
},
"cookies": {
"version": "https://registry.npmjs.org/cookies/-/cookies-0.5.0.tgz",
"integrity": "sha1-FkysRqHTyjs7h0J0FMJJMdg4ECU=",
"requires": {
"keygrip": "https://registry.npmjs.org/keygrip/-/keygrip-1.0.1.tgz"
}
},
"core-util-is": {
"version": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
"create-error-class": {
"version": "https://registry.npmjs.org/create-error-class/-/create-error-class-2.0.1.tgz",
"integrity": "sha1-qHWe1cjSFKRh6B0Y5wqssz3WPJw=",
"requires": {
"capture-stack-trace": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
}
},
"cryptiles": {
"version": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz",
"integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=",
"requires": {
"boom": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"
}
},
"ctype": {
"version": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz",
"integrity": "sha1-gsGMJGH3QRTvFsE1IkrQuRRMoS8="
},
"dashdash": {
"version": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.0.tgz",
"integrity": "sha1-KeSGxUGL8PNWA0qZPVFoajPoQUE=",
"requires": {
"assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
}
},
"deasync": {
"version": "https://registry.npmjs.org/deasync/-/deasync-0.1.9.tgz",
"integrity": "sha1-9Y3Un6YxEMdL6oQFqQqCi+JtOiQ=",
"requires": {
"bindings": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz",
"nan": "https://registry.npmjs.org/nan/-/nan-2.4.0.tgz"
}
},
"debug": {
"version": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"requires": {
"ms": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz"
}
},
"debuglog": {
"version": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz",
"integrity": "sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI="
},
"decamelize": {
"version": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
},
"deep-equal": {
"version": "https://registry.npmjs.org/deep-equal/-/deep-equal-0.1.2.tgz",
"integrity": "sha1-skbCuApXCkfBG+HZvRBw7IeLh84="
},
"deep-extend": {
"version": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.1.tgz",
"integrity": "sha1-7+QRPQgIX05vlod1mBD4B0aeIlM="
},
"defined": {
"version": "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz",
"integrity": "sha1-817qfXBekzuvE7LwOz+D2SFAOz4="
},
"delayed-stream": {
"version": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
},
"depd": {
"version": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz",
"integrity": "sha1-4b2Cxqq2ztlluXuIsX7T5SjKGMM="
},
"destroy": {
"version": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
},
"dicer": {
"version": "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz",
"integrity": "sha1-WZbAhrszIYyBLAkL3cCc0S+stw8=",
"requires": {
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"streamsearch": "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz"
},
"dependencies": {
"isarray": {
"version": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
},
"readable-stream": {
"version": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
"requires": {
"core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"isarray": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"
}
}
}
},
"dns-zonefile": {
"version": "https://registry.npmjs.org/dns-zonefile/-/dns-zonefile-0.1.10.tgz",
"integrity": "sha1-L08WtwF8iZgs1ALiGWcyb7udLqM="
},
"dotenv": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz",
"integrity": "sha1-hk7xN5rO1Vzm+V3r7NzhefegzR0="
},
"duplexify": {
"version": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.0.tgz",
"integrity": "sha1-GqdzAC4VeEV+nZ1KULDMquvL1gQ=",
"requires": {
"end-of-stream": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.1.5.tgz",
"stream-shift": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz"
}
},
"dustjs-helpers": {
"version": "https://registry.npmjs.org/dustjs-helpers/-/dustjs-helpers-1.7.3.tgz",
"integrity": "sha1-AlE0mncyMODdZ9ws6F9Sig+5Xa0="
},
"dustjs-linkedin": {
"version": "https://registry.npmjs.org/dustjs-linkedin/-/dustjs-linkedin-2.7.4.tgz",
"integrity": "sha1-EkTaOOd0v1KNKrSZZtIhDAvJx8Q=",
"requires": {
"chokidar": "https://registry.npmjs.org/chokidar/-/chokidar-1.5.2.tgz",
"cli": "https://registry.npmjs.org/cli/-/cli-0.11.3.tgz"
}
},
"ecc-jsbn": {
"version": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
"integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
"optional": true,
"requires": {
"jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz"
}
},
"ecdsa-sig-formatter": {
"version": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.7.tgz",
"integrity": "sha1-MTfpdqHWIyUX4lE+BOMveby98SY=",
"requires": {
"base64-url": "https://registry.npmjs.org/base64-url/-/base64-url-1.3.3.tgz"
}
},
"ee-first": {
"version": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
"ejs": {
"version": "2.5.7",
"resolved": "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz",
"integrity": "sha1-zIcsFoiArjxxiXYv1f/ACJbJUYo="
},
"end-of-stream": {
"version": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz",
"integrity": "sha1-1FlucCc0qT5A6a+GQxnqvZn/Lw4=",
"requires": {
"once": "https://registry.npmjs.org/once/-/once-1.3.3.tgz"
},
"dependencies": {
"once": {
"version": "https://registry.npmjs.org/once/-/once-1.3.3.tgz",
"integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=",
"requires": {
"wrappy": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
}
}
}
},
"error-ex": {
"version": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz",
"integrity": "sha1-5ntD8+gsluo6WE/+4Ln8MyXYAtk=",
"requires": {
"is-arrayish": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
}
},
"escape-html": {
"version": "https://registry.npmjs.org/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="
},
"etag": {
"version": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz",
"integrity": "sha1-A9MLX2fdbmMtKUXTDWZScxo01dg="
},
"exit": {
"version": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
"integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw="
},
"expand-brackets": {
"version": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz",
"integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=",
"requires": {
"is-posix-bracket": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"
}
},
"expand-range": {
"version": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
"integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=",
"requires": {
"fill-range": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz"
}
},
"express": {
"version": "https://registry.npmjs.org/express/-/express-4.13.4.tgz",
"integrity": "sha1-PAt288d1kMg0VzkGHsC9O6Bn7CQ=",
"requires": {
"accepts": "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz",
"array-flatten": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"content-disposition": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.1.tgz",
"content-type": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz",
"cookie": "https://registry.npmjs.org/cookie/-/cookie-0.1.5.tgz",
"cookie-signature": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"depd": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz",
"escape-html": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
"etag": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz",
"finalhandler": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.1.tgz",
"fresh": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz",
"merge-descriptors": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
"methods": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
"on-finished": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
"parseurl": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz",
"path-to-regexp": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
"proxy-addr": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.0.10.tgz",
"qs": "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz",
"range-parser": "https://registry.npmjs.org/range-parser/-/range-parser-1.0.3.tgz",
"send": "https://registry.npmjs.org/send/-/send-0.13.1.tgz",
"serve-static": "https://registry.npmjs.org/serve-static/-/serve-static-1.10.3.tgz",
"type-is": "https://registry.npmjs.org/type-is/-/type-is-1.6.13.tgz",
"utils-merge": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz",
"vary": "https://registry.npmjs.org/vary/-/vary-1.0.1.tgz"
}
},
"extend": {
"version": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz",
"integrity": "sha1-WkdDU7nzNT3dgXbf03uRyDpG8dQ="
},
"extglob": {
"version": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz",
"integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=",
"requires": {
"is-extglob": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"
}
},
"extsprintf": {
"version": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
"integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
},
"fast-crc32c": {
"version": "https://registry.npmjs.org/fast-crc32c/-/fast-crc32c-1.0.4.tgz",
"integrity": "sha1-qLVm6aouI7a0EWzz2NB/X1ItVOM=",
"requires": {
"sse4_crc32": "https://registry.npmjs.org/sse4_crc32/-/sse4_crc32-5.1.1.tgz"
}
},
"filename-regex": {
"version": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz",
"integrity": "sha1-mW4+gEebmLmJfxWopYs9CE6SZ3U="
},
"fill-range": {
"version": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz",
"integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=",
"requires": {
"is-number": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz",
"isobject": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"randomatic": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.5.tgz",
"repeat-element": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
"repeat-string": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
}
},
"finalhandler": {
"version": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.1.tgz",
"integrity": "sha1-haF8bFmpRxfSYtYSMNSw6+PUoU0=",
"requires": {
"debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"escape-html": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
"on-finished": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
"unpipe": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
}
},
"for-in": {
"version": "https://registry.npmjs.org/for-in/-/for-in-0.1.6.tgz",
"integrity": "sha1-yfluib+tGKVFr17D7TUqHZ5bTcg="
},
"for-own": {
"version": "https://registry.npmjs.org/for-own/-/for-own-0.1.4.tgz",
"integrity": "sha1-AUm0GjkIjHUV9R6+HBOG1F+TUHI=",
"requires": {
"for-in": "https://registry.npmjs.org/for-in/-/for-in-0.1.6.tgz"
}
},
"forever-agent": {
"version": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
},
"form-data": {
"version": "https://registry.npmjs.org/form-data/-/form-data-2.1.1.tgz",
"integrity": "sha1-St8DQuGnmvoehMjDIKn/yCOSofM=",
"requires": {
"asynckit": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"combined-stream": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
"mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.12.tgz"
}
},
"forwarded": {
"version": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz",
"integrity": "sha1-Ge+YdMSuHCl7zweP3mOgm2aoQ2M="
},
"fresh": {
"version": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz",
"integrity": "sha1-ZR+DjiJCTnVm3hYdg1jKoZn4PU8="
},
"freshy": {
"version": "https://registry.npmjs.org/freshy/-/freshy-1.0.2.tgz",
"integrity": "sha1-JimwfjqzLxHhIFrXiGS1s0cZ3nw=",
"requires": {
"caller": "https://registry.npmjs.org/caller/-/caller-0.0.1.tgz",
"debuglog": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"resolve": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"
}
},
"fs.realpath": {
"version": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
},
"fsevents": {
"version": "https://registry.npmjs.org/fsevents/-/fsevents-1.0.15.tgz",
"integrity": "sha1-+mP1kPPCrZEnXklyps6lRfsKrkQ=",
"optional": true,
"requires": {
"nan": "https://registry.npmjs.org/nan/-/nan-2.4.0.tgz",
"node-pre-gyp": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.29.tgz"
},
"dependencies": {
"abbrev": {
"version": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz",
"integrity": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=",
"optional": 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=",
"optional": true
},
"aproba": {
"version": "https://registry.npmjs.org/aproba/-/aproba-1.0.4.tgz",
"integrity": "sha1-JxNoB3XnYUyLoYbAZdTi5S0QcsA=",
"optional": true
},
"are-we-there-yet": {
"version": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz",
"integrity": "sha1-gORw6VoIR5T+GJkmLFZnxuiN4bM=",
"optional": true,
"requires": {
"delegates": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.1.4.tgz"
}
},
"asn1": {
"version": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=",
"optional": true
},
"assert-plus": {
"version": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
"integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=",
"optional": true
},
"async": {
"version": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
"optional": true
},
"aws-sign2": {
"version": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz",
"integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=",
"optional": true
},
"aws4": {
"version": "https://registry.npmjs.org/aws4/-/aws4-1.4.1.tgz",
"integrity": "sha1-/efVKSRm0jDl7g9OA42d+qsI/GE=",
"optional": true
},
"balanced-match": {
"version": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
"integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
},
"bl": {
"version": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz",
"integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=",
"optional": true,
"requires": {
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"
},
"dependencies": {
"readable-stream": {
"version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
"integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=",
"optional": true,
"requires": {
"core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
"isarray": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
"string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
"util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
}
}
}
},
"block-stream": {
"version": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz",
"integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=",
"requires": {
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
}
},
"boom": {
"version": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
"integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
"requires": {
"hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"
}
},
"brace-expansion": {
"version": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.5.tgz",
"integrity": "sha1-9bStV04st8zB64Pm/nm47K33pSY=",
"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"
}
},
"buffer-shims": {
"version": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz",
"integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E="
},
"caseless": {
"version": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz",
"integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=",
"optional": true
},
"chalk": {
"version": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"optional": true,
"requires": {
"ansi-styles": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"has-ansi": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
"strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"supports-color": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"
}
},
"code-point-at": {
"version": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.0.0.tgz",
"integrity": "sha1-9psZLT99keOC5Lcb3bd4eGGasMY=",
"requires": {
"number-is-nan": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz"
}
},
"combined-stream": {
"version": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
"requires": {
"delayed-stream": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
}
},
"commander": {
"version": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz",
"integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=",
"optional": true,
"requires": {
"graceful-readlink": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"
}
},
"concat-map": {
"version": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
},
"console-control-strings": {
"version": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
"integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4="
},
"core-util-is": {
"version": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
"cryptiles": {
"version": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz",
"integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=",
"optional": true,
"requires": {
"boom": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"
}
},
"dashdash": {
"version": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.0.tgz",
"integrity": "sha1-KeSGxUGL8PNWA0qZPVFoajPoQUE=",
"optional": true,
"requires": {
"assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"