This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package-lock.json
7510 lines (7510 loc) · 327 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": "ember-sqlite-adapter",
"version": "0.12.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"abbrev": {
"version": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz",
"integrity": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=",
"dev": true
},
"accepts": {
"version": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz",
"integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=",
"dev": true,
"requires": {
"mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.13.tgz",
"negotiator": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz"
}
},
"acorn": {
"version": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
"integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo="
},
"after": {
"version": "https://registry.npmjs.org/after/-/after-0.8.1.tgz",
"integrity": "sha1-q11PuIP1loFtNRX495HAr0ht1ic=",
"dev": true
},
"align-text": {
"version": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"requires": {
"kind-of": "https://registry.npmjs.org/kind-of/-/kind-of-3.1.0.tgz",
"longest": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
"repeat-string": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
}
},
"alter": {
"version": "https://registry.npmjs.org/alter/-/alter-0.2.0.tgz",
"integrity": "sha1-x1iICGF1cgNKrmJICvJrHU0cs80=",
"requires": {
"stable": "https://registry.npmjs.org/stable/-/stable-0.1.5.tgz"
}
},
"amd-name-resolver": {
"version": "https://registry.npmjs.org/amd-name-resolver/-/amd-name-resolver-0.0.5.tgz",
"integrity": "sha1-dpYtrIdu0zEbBdKcaljBTh7zMEs=",
"dev": true,
"requires": {
"ensure-posix-path": "https://registry.npmjs.org/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz"
}
},
"amdefine": {
"version": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU="
},
"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.0.0.tgz",
"integrity": "sha1-xQYbbg74qBd15Q9dZhUb9r83EQc="
},
"ansi-styles": {
"version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
},
"ansicolors": {
"version": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.2.1.tgz",
"integrity": "sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8=",
"dev": true
},
"ansistyles": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz",
"integrity": "sha1-XeYEFb2gcbs3EnhUyGT0GyMlRTk=",
"dev": true
},
"aproba": {
"version": "https://registry.npmjs.org/aproba/-/aproba-1.0.4.tgz",
"integrity": "sha1-JxNoB3XnYUyLoYbAZdTi5S0QcsA=",
"dev": 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=",
"dev": true,
"requires": {
"delegates": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
"readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.2.tgz"
},
"dependencies": {
"isarray": {
"version": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
"dev": true
},
"readable-stream": {
"version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.2.tgz",
"integrity": "sha1-qeb+w8fdqF+LsbO6cChgRVb8gl4=",
"dev": true,
"requires": {
"buffer-shims": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz",
"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"
}
}
}
},
"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-equal": {
"version": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
"integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM="
},
"array-flatten": {
"version": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
"dev": true
},
"array-to-error": {
"version": "https://registry.npmjs.org/array-to-error/-/array-to-error-1.1.1.tgz",
"integrity": "sha1-1ogSkm0UCXogVXmmZ+6vGFakTAc=",
"dev": true,
"requires": {
"array-to-sentence": "https://registry.npmjs.org/array-to-sentence/-/array-to-sentence-1.1.0.tgz"
}
},
"array-to-sentence": {
"version": "https://registry.npmjs.org/array-to-sentence/-/array-to-sentence-1.1.0.tgz",
"integrity": "sha1-yASVba+lMjJJWyBalFJ1OiWNOfw=",
"dev": true
},
"arraybuffer.slice": {
"version": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz",
"integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco=",
"dev": true
},
"asap": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
"dev": true
},
"asn1": {
"version": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=",
"dev": true
},
"assert-plus": {
"version": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
"integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=",
"dev": true
},
"ast-traverse": {
"version": "https://registry.npmjs.org/ast-traverse/-/ast-traverse-0.1.1.tgz",
"integrity": "sha1-ac8rg4bxnc2hux4F1o/jWdiJfeY="
},
"ast-types": {
"version": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.2.tgz",
"integrity": "sha1-LMGZedFcZVEIv1ZTI7jn7jh1H2s="
},
"async": {
"version": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
"dev": true
},
"async-disk-cache": {
"version": "https://registry.npmjs.org/async-disk-cache/-/async-disk-cache-1.0.9.tgz",
"integrity": "sha1-I7r7gjGE9GNAfkdOjV+HiZ9yymM=",
"requires": {
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"istextorbinary": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-2.1.0.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz"
}
},
"async-some": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/async-some/-/async-some-1.0.2.tgz",
"integrity": "sha1-TYqBYg1ZWHkbW5j4AtMgd3bpVQk=",
"dev": true,
"requires": {
"dezalgo": "1.0.3"
}
},
"asynckit": {
"version": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
"dev": true
},
"aws-sign2": {
"version": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz",
"integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=",
"dev": true
},
"aws4": {
"version": "https://registry.npmjs.org/aws4/-/aws4-1.5.0.tgz",
"integrity": "sha1-Cin/t5wxyecS7rCH6OemS0pW11U=",
"dev": true
},
"babel-core": {
"version": "https://registry.npmjs.org/babel-core/-/babel-core-5.8.38.tgz",
"integrity": "sha1-H8ruedfmG3ULALjlT238nQr4ZVg=",
"requires": {
"babel-plugin-constant-folding": "https://registry.npmjs.org/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz",
"babel-plugin-dead-code-elimination": "https://registry.npmjs.org/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz",
"babel-plugin-eval": "https://registry.npmjs.org/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz",
"babel-plugin-inline-environment-variables": "https://registry.npmjs.org/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz",
"babel-plugin-jscript": "https://registry.npmjs.org/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz",
"babel-plugin-member-expression-literals": "https://registry.npmjs.org/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz",
"babel-plugin-property-literals": "https://registry.npmjs.org/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz",
"babel-plugin-proto-to-assign": "https://registry.npmjs.org/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz",
"babel-plugin-react-constant-elements": "https://registry.npmjs.org/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz",
"babel-plugin-react-display-name": "https://registry.npmjs.org/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz",
"babel-plugin-remove-console": "https://registry.npmjs.org/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz",
"babel-plugin-remove-debugger": "https://registry.npmjs.org/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz",
"babel-plugin-runtime": "https://registry.npmjs.org/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz",
"babel-plugin-undeclared-variables-check": "https://registry.npmjs.org/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz",
"babel-plugin-undefined-to-void": "https://registry.npmjs.org/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-5.8.38.tgz",
"bluebird": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz",
"chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"convert-source-map": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.3.0.tgz",
"core-js": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"detect-indent": "https://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz",
"esutils": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"fs-readdir-recursive": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz",
"globals": "https://registry.npmjs.org/globals/-/globals-6.4.1.tgz",
"home-or-tmp": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-1.0.0.tgz",
"is-integer": "https://registry.npmjs.org/is-integer/-/is-integer-1.0.6.tgz",
"js-tokens": "https://registry.npmjs.org/js-tokens/-/js-tokens-1.0.1.tgz",
"json5": "https://registry.npmjs.org/json5/-/json5-0.4.0.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz",
"output-file-sync": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz",
"path-exists": "https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.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.6.tgz",
"regenerator": "https://registry.npmjs.org/regenerator/-/regenerator-0.8.40.tgz",
"regexpu": "https://registry.npmjs.org/regexpu/-/regexpu-1.3.0.tgz",
"repeating": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz",
"resolve": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
"shebang-regex": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.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",
"source-map-support": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz",
"to-fast-properties": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.2.tgz",
"trim-right": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
"try-resolve": "https://registry.npmjs.org/try-resolve/-/try-resolve-1.0.1.tgz"
}
},
"babel-plugin-constant-folding": {
"version": "https://registry.npmjs.org/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz",
"integrity": "sha1-g2HTZMmORJw2kr26Ue/whEKQqo4="
},
"babel-plugin-dead-code-elimination": {
"version": "https://registry.npmjs.org/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz",
"integrity": "sha1-X3xFEnTc18zNv7s+C4XdKBIfD2U="
},
"babel-plugin-eval": {
"version": "https://registry.npmjs.org/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz",
"integrity": "sha1-ovrtJc5r5preS/7CY/cBaRlZUNo="
},
"babel-plugin-feature-flags": {
"version": "https://registry.npmjs.org/babel-plugin-feature-flags/-/babel-plugin-feature-flags-0.2.3.tgz",
"integrity": "sha1-gdge13vaIBQJj6gkOrzwOlUcvU0=",
"dev": true,
"requires": {
"json-stable-stringify": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"
}
},
"babel-plugin-filter-imports": {
"version": "https://registry.npmjs.org/babel-plugin-filter-imports/-/babel-plugin-filter-imports-0.2.1.tgz",
"integrity": "sha1-eE+WqJLy9+0szwlVaIvYkWzS4hI=",
"dev": true,
"requires": {
"json-stable-stringify": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"
}
},
"babel-plugin-htmlbars-inline-precompile": {
"version": "https://registry.npmjs.org/babel-plugin-htmlbars-inline-precompile/-/babel-plugin-htmlbars-inline-precompile-0.1.0.tgz",
"integrity": "sha1-t4RyO9HxCHlrVvr58cBetcpEKYM=",
"dev": true
},
"babel-plugin-inline-environment-variables": {
"version": "https://registry.npmjs.org/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz",
"integrity": "sha1-H1jOkSB61qgmqL9kX6/mj/X+P/4="
},
"babel-plugin-jscript": {
"version": "https://registry.npmjs.org/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz",
"integrity": "sha1-jzQsOCduh6R9X6CovT1etsytj8w="
},
"babel-plugin-member-expression-literals": {
"version": "https://registry.npmjs.org/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz",
"integrity": "sha1-zF7bD6qNyScXDnTW0cAkQAIWJNM="
},
"babel-plugin-property-literals": {
"version": "https://registry.npmjs.org/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz",
"integrity": "sha1-AlIwGQAZKYCxwRjv6kjOk6q4MzY="
},
"babel-plugin-proto-to-assign": {
"version": "https://registry.npmjs.org/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz",
"integrity": "sha1-xJ56/QL1d7xNoF6i3wAiUM980SM=",
"requires": {
"lodash": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"
}
},
"babel-plugin-react-constant-elements": {
"version": "https://registry.npmjs.org/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz",
"integrity": "sha1-lGc26DeEKcvDSdz/YvUcFDs041o="
},
"babel-plugin-react-display-name": {
"version": "https://registry.npmjs.org/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz",
"integrity": "sha1-dU/jiSboQkpOexWrbqYTne4FFPw="
},
"babel-plugin-remove-console": {
"version": "https://registry.npmjs.org/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz",
"integrity": "sha1-2PJFVsOgUAXUKqqv0neH9T/wE6c="
},
"babel-plugin-remove-debugger": {
"version": "https://registry.npmjs.org/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz",
"integrity": "sha1-/S6jzWGkKK0fO5yJiC/0KT6MFMc="
},
"babel-plugin-runtime": {
"version": "https://registry.npmjs.org/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz",
"integrity": "sha1-v3x9lm3Vbs1cF/ocslPJrLflSq8="
},
"babel-plugin-undeclared-variables-check": {
"version": "https://registry.npmjs.org/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz",
"integrity": "sha1-XPGqU52BP/ZOmWQSkK9iCWX2Xe4=",
"requires": {
"leven": "https://registry.npmjs.org/leven/-/leven-1.0.2.tgz"
}
},
"babel-plugin-undefined-to-void": {
"version": "https://registry.npmjs.org/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz",
"integrity": "sha1-f1eO+LeN+uYAM4XYQXph7aBuL4E="
},
"babel5-plugin-strip-class-callcheck": {
"version": "https://registry.npmjs.org/babel5-plugin-strip-class-callcheck/-/babel5-plugin-strip-class-callcheck-5.1.0.tgz",
"integrity": "sha1-d9SkDIYU02e4ohpTkIFZgG26X5E=",
"dev": true
},
"babel5-plugin-strip-heimdall": {
"version": "https://registry.npmjs.org/babel5-plugin-strip-heimdall/-/babel5-plugin-strip-heimdall-5.0.2.tgz",
"integrity": "sha1-4f4ZHDTeeWhlZNUKhvQhe432KcE=",
"dev": true
},
"babylon": {
"version": "https://registry.npmjs.org/babylon/-/babylon-5.8.38.tgz",
"integrity": "sha1-7JsSCxG/bM1Bc6GL8hfmC3mFn/0="
},
"backbone": {
"version": "https://registry.npmjs.org/backbone/-/backbone-1.3.3.tgz",
"integrity": "sha1-TMgOp8sWMaxHSInOQPL4vGg7KZk=",
"dev": true,
"requires": {
"underscore": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"
}
},
"backo2": {
"version": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
"integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=",
"dev": true
},
"balanced-match": {
"version": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
"integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
},
"base64-arraybuffer": {
"version": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz",
"integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=",
"dev": true
},
"base64id": {
"version": "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz",
"integrity": "sha1-As4P3u4M709ACA4ec+g08LG/zj8=",
"dev": true
},
"basic-auth": {
"version": "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz",
"integrity": "sha1-Awk1sB3nyblKgksp8/zLdQ06UpA=",
"dev": true
},
"bcrypt-pbkdf": {
"version": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz",
"integrity": "sha1-PKdrhSQccXC/fZcD57mqdGMAQNQ=",
"dev": true,
"optional": true,
"requires": {
"tweetnacl": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.4.tgz"
}
},
"benchmark": {
"version": "https://registry.npmjs.org/benchmark/-/benchmark-1.0.0.tgz",
"integrity": "sha1-Lx4vpMNZ8REiqhgwgiGOlX45DHM=",
"dev": true
},
"better-assert": {
"version": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz",
"integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=",
"dev": true,
"requires": {
"callsite": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"
}
},
"binaryextensions": {
"version": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.0.0.tgz",
"integrity": "sha1-5ZfRp6ajVYotHHJBoWyZll5qpA8="
},
"blank-object": {
"version": "https://registry.npmjs.org/blank-object/-/blank-object-1.0.2.tgz",
"integrity": "sha1-+ZB5P76ajI3QE/syGUIL7IHV9Lk="
},
"blob": {
"version": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz",
"integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=",
"dev": true
},
"block-stream": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz",
"integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=",
"dev": true,
"requires": {
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
}
},
"bluebird": {
"version": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz",
"integrity": "sha1-U0uQM8AiyVecVro7Plpcqvu2UOE="
},
"body-parser": {
"version": "https://registry.npmjs.org/body-parser/-/body-parser-1.14.2.tgz",
"integrity": "sha1-EBXLH+LEQ4WCWVgdtTMy+NDPUPk=",
"dev": true,
"requires": {
"bytes": "https://registry.npmjs.org/bytes/-/bytes-2.2.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.3.1.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-5.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.14.tgz"
},
"dependencies": {
"bytes": {
"version": "https://registry.npmjs.org/bytes/-/bytes-2.2.0.tgz",
"integrity": "sha1-/TVGSkA/b5EXwt42Cez/nK4ABYg=",
"dev": true
},
"debug": {
"version": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz"
}
},
"http-errors": {
"version": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz",
"integrity": "sha1-GX4izevUGYWF6GlO9nhhl7ke2UI=",
"dev": true,
"requires": {
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"statuses": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz"
}
},
"iconv-lite": {
"version": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz",
"integrity": "sha1-H4irpKsLFQjoMSrMOTRfNumS4vI=",
"dev": true
},
"ms": {
"version": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
},
"qs": {
"version": "https://registry.npmjs.org/qs/-/qs-5.2.0.tgz",
"integrity": "sha1-qfMRQq9GjLcrJbMBNrokVoNJFr4=",
"dev": true
}
}
},
"boom": {
"version": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
"integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
"dev": true,
"requires": {
"hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"
}
},
"bower": {
"version": "https://registry.npmjs.org/bower/-/bower-1.8.0.tgz",
"integrity": "sha1-Vdvr7wrZFVOC2enT5JfBNyNFtEo=",
"dev": true
},
"bower-config": {
"version": "https://registry.npmjs.org/bower-config/-/bower-config-1.4.0.tgz",
"integrity": "sha1-FsOMETX4BxwZ8lk41hsNjL8Y0/E=",
"dev": true,
"requires": {
"graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
"mout": "https://registry.npmjs.org/mout/-/mout-1.0.0.tgz",
"optimist": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
"osenv": "https://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz",
"untildify": "https://registry.npmjs.org/untildify/-/untildify-2.1.0.tgz"
}
},
"bower-endpoint-parser": {
"version": "https://registry.npmjs.org/bower-endpoint-parser/-/bower-endpoint-parser-0.2.2.tgz",
"integrity": "sha1-ALVlrb+rby01rd3pd+l5Yqy8s/Y=",
"dev": true
},
"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"
}
},
"breakable": {
"version": "https://registry.npmjs.org/breakable/-/breakable-1.0.0.tgz",
"integrity": "sha1-eEp5eRWjjq0nutRWtVcstLuqeME="
},
"broccoli-asset-rev": {
"version": "https://registry.npmjs.org/broccoli-asset-rev/-/broccoli-asset-rev-2.5.0.tgz",
"integrity": "sha1-9fZurJYr+fCGKGkh8Orqq20A2Bk=",
"dev": true,
"requires": {
"broccoli-asset-rewrite": "https://registry.npmjs.org/broccoli-asset-rewrite/-/broccoli-asset-rewrite-1.1.0.tgz",
"broccoli-filter": "https://registry.npmjs.org/broccoli-filter/-/broccoli-filter-1.2.4.tgz",
"json-stable-stringify": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
"matcher-collection": "https://registry.npmjs.org/matcher-collection/-/matcher-collection-1.0.4.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz"
}
},
"broccoli-asset-rewrite": {
"version": "https://registry.npmjs.org/broccoli-asset-rewrite/-/broccoli-asset-rewrite-1.1.0.tgz",
"integrity": "sha1-d6XaVhV6oxjFkRMkXouvtGF/iDA=",
"dev": true,
"requires": {
"broccoli-filter": "https://registry.npmjs.org/broccoli-filter/-/broccoli-filter-1.2.4.tgz"
}
},
"broccoli-babel-transpiler": {
"version": "https://registry.npmjs.org/broccoli-babel-transpiler/-/broccoli-babel-transpiler-5.6.1.tgz",
"integrity": "sha1-lxhNyxQLQKpX8/84Mwr8zGddCjw=",
"requires": {
"babel-core": "https://registry.npmjs.org/babel-core/-/babel-core-5.8.38.tgz",
"broccoli-funnel": "https://registry.npmjs.org/broccoli-funnel/-/broccoli-funnel-1.1.0.tgz",
"broccoli-merge-trees": "https://registry.npmjs.org/broccoli-merge-trees/-/broccoli-merge-trees-1.2.1.tgz",
"broccoli-persistent-filter": "https://registry.npmjs.org/broccoli-persistent-filter/-/broccoli-persistent-filter-1.2.11.tgz",
"clone": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz",
"hash-for-dep": "https://registry.npmjs.org/hash-for-dep/-/hash-for-dep-1.0.3.tgz",
"json-stable-stringify": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"
},
"dependencies": {
"clone": {
"version": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz",
"integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8="
}
}
},
"broccoli-caching-writer": {
"version": "https://registry.npmjs.org/broccoli-caching-writer/-/broccoli-caching-writer-2.3.1.tgz",
"integrity": "sha1-uTz1j5Jk8AMHWGjbBXdPTn8lvQc=",
"dev": true,
"requires": {
"broccoli-kitchen-sink-helpers": "https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.2.9.tgz",
"broccoli-plugin": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.1.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz",
"walk-sync": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.2.7.tgz"
},
"dependencies": {
"broccoli-kitchen-sink-helpers": {
"version": "https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.2.9.tgz",
"integrity": "sha1-peCYbtjXb7WYS2jD8EUNOpbjbsw=",
"dev": true,
"requires": {
"glob": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"
}
},
"broccoli-plugin": {
"version": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.1.0.tgz",
"integrity": "sha1-c+LPoF+OoeP8FCDEDD2efcckvwI=",
"dev": true,
"requires": {
"promise-map-series": "https://registry.npmjs.org/promise-map-series/-/promise-map-series-0.2.3.tgz",
"quick-temp": "https://registry.npmjs.org/quick-temp/-/quick-temp-0.1.6.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz"
}
},
"walk-sync": {
"version": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.2.7.tgz",
"integrity": "sha1-tJvk7mhnZXrrc2l4tWop0Q+jmWk=",
"dev": true,
"requires": {
"ensure-posix-path": "https://registry.npmjs.org/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz",
"matcher-collection": "https://registry.npmjs.org/matcher-collection/-/matcher-collection-1.0.4.tgz"
}
}
}
},
"broccoli-clean-css": {
"version": "https://registry.npmjs.org/broccoli-clean-css/-/broccoli-clean-css-1.1.0.tgz",
"integrity": "sha1-nbFD2a9+CuecJuOsWpuy1yDqGfo=",
"dev": true,
"requires": {
"broccoli-persistent-filter": "https://registry.npmjs.org/broccoli-persistent-filter/-/broccoli-persistent-filter-1.2.11.tgz",
"clean-css-promise": "https://registry.npmjs.org/clean-css-promise/-/clean-css-promise-0.1.1.tgz",
"inline-source-map-comment": "https://registry.npmjs.org/inline-source-map-comment/-/inline-source-map-comment-1.0.5.tgz",
"json-stable-stringify": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"
}
},
"broccoli-concat": {
"version": "https://registry.npmjs.org/broccoli-concat/-/broccoli-concat-2.3.8.tgz",
"integrity": "sha1-WQzcwCG7kFtsEh2HwtHVffRKKkg=",
"dev": true,
"requires": {
"broccoli-caching-writer": "https://registry.npmjs.org/broccoli-caching-writer/-/broccoli-caching-writer-2.3.1.tgz",
"broccoli-kitchen-sink-helpers": "https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.3.1.tgz",
"broccoli-stew": "https://registry.npmjs.org/broccoli-stew/-/broccoli-stew-1.4.0.tgz",
"fast-sourcemap-concat": "https://registry.npmjs.org/fast-sourcemap-concat/-/fast-sourcemap-concat-1.1.0.tgz",
"fs-extra": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz",
"lodash.merge": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.0.tgz",
"lodash.omit": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz",
"lodash.uniq": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"
},
"dependencies": {
"fs-extra": {
"version": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz",
"integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=",
"dev": true,
"requires": {
"graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
"jsonfile": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
"klaw": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz"
}
}
}
},
"broccoli-config-loader": {
"version": "https://registry.npmjs.org/broccoli-config-loader/-/broccoli-config-loader-1.0.0.tgz",
"integrity": "sha1-w89ez6/8BDOMbx1dONw2uuqhMbo=",
"dev": true,
"requires": {
"broccoli-caching-writer": "https://registry.npmjs.org/broccoli-caching-writer/-/broccoli-caching-writer-2.3.1.tgz"
}
},
"broccoli-config-replace": {
"version": "https://registry.npmjs.org/broccoli-config-replace/-/broccoli-config-replace-1.1.2.tgz",
"integrity": "sha1-bqh52SpbrWNNETKbUfxfSq/anAA=",
"dev": true,
"requires": {
"broccoli-kitchen-sink-helpers": "https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.3.1.tgz",
"broccoli-plugin": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"fs-extra": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.24.0.tgz"
},
"dependencies": {
"fs-extra": {
"version": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.24.0.tgz",
"integrity": "sha1-1OQ0KpZnXLeEZjOmCZJJMytTmVI=",
"dev": true,
"requires": {
"graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
"jsonfile": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz"
}
}
}
},
"broccoli-file-creator": {
"version": "https://registry.npmjs.org/broccoli-file-creator/-/broccoli-file-creator-1.1.1.tgz",
"integrity": "sha1-GzW2fSFavfrdjUnutpSTw55sNFA=",
"dev": true,
"requires": {
"broccoli-kitchen-sink-helpers": "https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.2.9.tgz",
"broccoli-plugin": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"broccoli-writer": "https://registry.npmjs.org/broccoli-writer/-/broccoli-writer-0.1.1.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.0.21.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz"
},
"dependencies": {
"broccoli-kitchen-sink-helpers": {
"version": "https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.2.9.tgz",
"integrity": "sha1-peCYbtjXb7WYS2jD8EUNOpbjbsw=",
"dev": true,
"requires": {
"glob": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"
}
},
"rsvp": {
"version": "https://registry.npmjs.org/rsvp/-/rsvp-3.0.21.tgz",
"integrity": "sha1-ScWI/hjvKTvNCrn05nVuasQzNZ8=",
"dev": true
}
}
},
"broccoli-filter": {
"version": "https://registry.npmjs.org/broccoli-filter/-/broccoli-filter-1.2.4.tgz",
"integrity": "sha1-QJr7lLmjptqfrIE06R4gX0DMczA=",
"dev": true,
"requires": {
"broccoli-kitchen-sink-helpers": "https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.3.1.tgz",
"broccoli-plugin": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"copy-dereference": "https://registry.npmjs.org/copy-dereference/-/copy-dereference-1.0.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"promise-map-series": "https://registry.npmjs.org/promise-map-series/-/promise-map-series-0.2.3.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz",
"walk-sync": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.1.tgz"
}
},
"broccoli-funnel": {
"version": "https://registry.npmjs.org/broccoli-funnel/-/broccoli-funnel-1.1.0.tgz",
"integrity": "sha1-37kaN8kCRWRW3kpAoYgZSNZbJ9k=",
"requires": {
"array-equal": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
"blank-object": "https://registry.npmjs.org/blank-object/-/blank-object-1.0.2.tgz",
"broccoli-plugin": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"exists-sync": "https://registry.npmjs.org/exists-sync/-/exists-sync-0.0.4.tgz",
"fast-ordered-set": "https://registry.npmjs.org/fast-ordered-set/-/fast-ordered-set-1.0.3.tgz",
"fs-tree-diff": "https://registry.npmjs.org/fs-tree-diff/-/fs-tree-diff-0.5.5.tgz",
"heimdalljs": "https://registry.npmjs.org/heimdalljs/-/heimdalljs-0.2.3.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"path-posix": "https://registry.npmjs.org/path-posix/-/path-posix-1.0.0.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz",
"walk-sync": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.1.tgz"
},
"dependencies": {
"minimatch": {
"version": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"integrity": "sha1-Kk5AkLlrLbBqnX3wEFWmKnfJt3Q=",
"requires": {
"brace-expansion": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz"
}
}
}
},
"broccoli-funnel-reducer": {
"version": "https://registry.npmjs.org/broccoli-funnel-reducer/-/broccoli-funnel-reducer-1.0.0.tgz",
"integrity": "sha1-ETZbKnha7JsXlyo234fu8kxcwOo=",
"dev": true
},
"broccoli-jshint": {
"version": "https://registry.npmjs.org/broccoli-jshint/-/broccoli-jshint-1.2.0.tgz",
"integrity": "sha1-jNVl0RoEv9MsuPhaD37eHlvnpqI=",
"dev": true,
"requires": {
"broccoli-persistent-filter": "https://registry.npmjs.org/broccoli-persistent-filter/-/broccoli-persistent-filter-1.2.11.tgz",
"chalk": "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz",
"findup-sync": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz",
"jshint": "https://registry.npmjs.org/jshint/-/jshint-2.9.4.tgz",
"json-stable-stringify": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.4.2.tgz"
},
"dependencies": {
"ansi-styles": {
"version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz",
"integrity": "sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg=",
"dev": true
},
"chalk": {
"version": "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz",
"integrity": "sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8=",
"dev": true,
"requires": {
"ansi-styles": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz",
"has-color": "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz",
"strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"
}
},
"findup-sync": {
"version": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz",
"integrity": "sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=",
"dev": true,
"requires": {
"glob": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz"
}
},
"minimist": {
"version": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
"dev": true
},
"mkdirp": {
"version": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.4.2.tgz",
"integrity": "sha1-QnyMGOzjmLky9vZm9OHlt3QOeMg=",
"dev": true,
"requires": {
"minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"
}
},
"strip-ansi": {
"version": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz",
"integrity": "sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE=",
"dev": true
}
}
},
"broccoli-kitchen-sink-helpers": {
"version": "https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.3.1.tgz",
"integrity": "sha1-d8fBgZS5ZkFj7E/O4nk0RJJuDAY=",
"requires": {
"glob": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"
}
},
"broccoli-merge-trees": {
"version": "https://registry.npmjs.org/broccoli-merge-trees/-/broccoli-merge-trees-1.2.1.tgz",
"integrity": "sha1-FqdJTtVtvmFhH2wtSBfPuq0qMFU=",
"requires": {
"broccoli-plugin": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"can-symlink": "https://registry.npmjs.org/can-symlink/-/can-symlink-1.0.0.tgz",
"fast-ordered-set": "https://registry.npmjs.org/fast-ordered-set/-/fast-ordered-set-1.0.3.tgz",
"fs-tree-diff": "https://registry.npmjs.org/fs-tree-diff/-/fs-tree-diff-0.5.5.tgz",
"heimdalljs": "https://registry.npmjs.org/heimdalljs/-/heimdalljs-0.2.3.tgz",
"heimdalljs-logger": "https://registry.npmjs.org/heimdalljs-logger/-/heimdalljs-logger-0.1.7.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz"
}
},
"broccoli-persistent-filter": {
"version": "https://registry.npmjs.org/broccoli-persistent-filter/-/broccoli-persistent-filter-1.2.11.tgz",
"integrity": "sha1-lcxrCw6w3M5fjmrhj2o8xFoGv0A=",
"requires": {
"async-disk-cache": "https://registry.npmjs.org/async-disk-cache/-/async-disk-cache-1.0.9.tgz",
"blank-object": "https://registry.npmjs.org/blank-object/-/blank-object-1.0.2.tgz",
"broccoli-plugin": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"fs-tree-diff": "https://registry.npmjs.org/fs-tree-diff/-/fs-tree-diff-0.5.5.tgz",
"hash-for-dep": "https://registry.npmjs.org/hash-for-dep/-/hash-for-dep-1.0.3.tgz",
"heimdalljs": "https://registry.npmjs.org/heimdalljs/-/heimdalljs-0.2.3.tgz",
"heimdalljs-logger": "https://registry.npmjs.org/heimdalljs-logger/-/heimdalljs-logger-0.1.7.tgz",
"md5-hex": "https://registry.npmjs.org/md5-hex/-/md5-hex-1.3.0.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"promise-map-series": "https://registry.npmjs.org/promise-map-series/-/promise-map-series-0.2.3.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz",
"walk-sync": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.1.tgz"
}
},
"broccoli-plugin": {
"version": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"integrity": "sha1-vucEqOQtoIy1jlE6qkNu+38O8e4=",
"requires": {
"promise-map-series": "https://registry.npmjs.org/promise-map-series/-/promise-map-series-0.2.3.tgz",
"quick-temp": "https://registry.npmjs.org/quick-temp/-/quick-temp-0.1.6.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz"
}
},
"broccoli-sane-watcher": {
"version": "https://registry.npmjs.org/broccoli-sane-watcher/-/broccoli-sane-watcher-1.1.5.tgz",
"integrity": "sha1-8rCvnPCvt0x6Sc2I6xHGhp7owMA=",
"dev": true,
"requires": {
"broccoli-slow-trees": "https://registry.npmjs.org/broccoli-slow-trees/-/broccoli-slow-trees-1.1.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz",
"sane": "https://registry.npmjs.org/sane/-/sane-1.4.1.tgz"
}
},
"broccoli-slow-trees": {
"version": "https://registry.npmjs.org/broccoli-slow-trees/-/broccoli-slow-trees-1.1.0.tgz",
"integrity": "sha1-QmxXJOAIEH5Fc/c+ipynApFrePc=",
"dev": true
},
"broccoli-source": {
"version": "https://registry.npmjs.org/broccoli-source/-/broccoli-source-1.1.0.tgz",
"integrity": "sha1-VPDoLItz9GWAy7xPV48LMvyo+Ak=",
"dev": true
},
"broccoli-sri-hash": {
"version": "https://registry.npmjs.org/broccoli-sri-hash/-/broccoli-sri-hash-2.1.2.tgz",
"integrity": "sha1-vGmQXtejga0yXMDQLe0HEyjr8/M=",
"dev": true,
"requires": {
"broccoli-caching-writer": "https://registry.npmjs.org/broccoli-caching-writer/-/broccoli-caching-writer-2.3.1.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz",
"sri-toolbox": "https://registry.npmjs.org/sri-toolbox/-/sri-toolbox-0.2.0.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz"
}
},
"broccoli-stew": {
"version": "https://registry.npmjs.org/broccoli-stew/-/broccoli-stew-1.4.0.tgz",
"integrity": "sha1-G9sKGATWKkGdGQq8JqyzyRh4FU0=",
"dev": true,
"requires": {
"broccoli-funnel": "https://registry.npmjs.org/broccoli-funnel/-/broccoli-funnel-1.1.0.tgz",
"broccoli-merge-trees": "https://registry.npmjs.org/broccoli-merge-trees/-/broccoli-merge-trees-1.2.1.tgz",
"broccoli-persistent-filter": "https://registry.npmjs.org/broccoli-persistent-filter/-/broccoli-persistent-filter-1.2.11.tgz",
"chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"ensure-posix-path": "https://registry.npmjs.org/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz",
"fs-extra": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"resolve": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz",
"walk-sync": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.1.tgz"
},
"dependencies": {
"fs-extra": {
"version": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz",
"integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=",
"dev": true,
"requires": {
"graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
"jsonfile": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
"klaw": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz"
}
},
"minimatch": {
"version": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"integrity": "sha1-Kk5AkLlrLbBqnX3wEFWmKnfJt3Q=",
"dev": true,
"requires": {
"brace-expansion": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz"
}
}
}
},
"broccoli-uglify-sourcemap": {
"version": "https://registry.npmjs.org/broccoli-uglify-sourcemap/-/broccoli-uglify-sourcemap-1.4.2.tgz",
"integrity": "sha1-HigK+9+qcAsvQhVfbEoDbDfmHKc=",
"dev": true,
"requires": {
"broccoli-plugin": "https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
"lodash.merge": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.0.tgz",
"matcher-collection": "https://registry.npmjs.org/matcher-collection/-/matcher-collection-1.0.4.tgz",
"mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"source-map-url": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.3.0.tgz",
"symlink-or-copy": "https://registry.npmjs.org/symlink-or-copy/-/symlink-or-copy-1.1.8.tgz",
"uglify-js": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz",
"walk-sync": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.1.3.tgz"
},
"dependencies": {
"walk-sync": {
"version": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.1.3.tgz",
"integrity": "sha1-igcmGgC9ps+xviXp8QD61XVG9YM=",
"dev": true
}
}
},
"broccoli-viz": {
"version": "https://registry.npmjs.org/broccoli-viz/-/broccoli-viz-2.0.1.tgz",
"integrity": "sha1-Pz7S+4PjaKpTBvrkYIAd6lUuQNs=",
"dev": true
},
"broccoli-writer": {
"version": "https://registry.npmjs.org/broccoli-writer/-/broccoli-writer-0.1.1.tgz",
"integrity": "sha1-1NcaqPKvvGejhmuRotp5CEuWqy0=",
"dev": true,
"requires": {
"quick-temp": "https://registry.npmjs.org/quick-temp/-/quick-temp-0.1.6.tgz",
"rsvp": "https://registry.npmjs.org/rsvp/-/rsvp-3.3.3.tgz"
}
},
"bser": {
"version": "https://registry.npmjs.org/bser/-/bser-1.0.2.tgz",
"integrity": "sha1-OBEWlwsqbe6lZG3RXdcnhES1YWk=",