-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathjspm.config.js
863 lines (862 loc) · 38.2 KB
/
jspm.config.js
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
SystemJS.config({
paths: {
"github:": "jspm_packages/github/",
"npm:": "jspm_packages/npm/",
"src/": "src/",
"dist/jspm.bundle.js": "https://rawgit.com/aurelia-ui-toolkits/demo-materialize/gh-pages/dist/jspm.bundle.js"
},
browserConfig: {
"bundles": {
"dist/jspm.bundle.js": [
"src/shared/logger.ts",
"npm:aurelia-framework@1.3.0/aurelia-framework.js",
"npm:aurelia-framework@1.3.0.json",
"npm:aurelia-logging@1.5.0/aurelia-logging.js",
"npm:aurelia-logging@1.5.0.json",
"npm:aurelia-pal@1.8.0/aurelia-pal.js",
"npm:aurelia-pal@1.8.0.json",
"npm:aurelia-path@1.1.1/aurelia-path.js",
"npm:aurelia-path@1.1.1.json",
"npm:aurelia-task-queue@1.3.1/aurelia-task-queue.js",
"npm:aurelia-task-queue@1.3.1.json",
"npm:aurelia-loader@1.0.0/aurelia-loader.js",
"npm:aurelia-loader@1.0.0.json",
"npm:aurelia-metadata@1.0.4/aurelia-metadata.js",
"npm:aurelia-metadata@1.0.4.json",
"npm:aurelia-templating@1.8.2/aurelia-templating.js",
"npm:aurelia-templating@1.8.2.json",
"npm:aurelia-binding@2.1.2/aurelia-binding.js",
"npm:aurelia-binding@2.1.2.json",
"npm:aurelia-dependency-injection@1.4.1/aurelia-dependency-injection.js",
"npm:aurelia-dependency-injection@1.4.1.json",
"github:frankwallis/plugin-typescript@9.0.0.json",
"src/shared/logger.html!github:systemjs/plugin-text@0.0.4/text.js",
"github:systemjs/plugin-text@0.0.4.json",
"npm:materialize-css@next/dist/js/materialize.js",
"npm:materialize-css@next.json",
"npm:materialize-css@next/dist/css/materialize.css!github:systemjs/plugin-css@0.1.37/css.js",
"github:systemjs/plugin-css@0.1.37.json",
"npm:aurelia-templating-router@1.3.2/aurelia-templating-router.js",
"npm:aurelia-templating-router@1.3.2.json",
"npm:aurelia-templating-router@1.3.2/route-href.js",
"npm:aurelia-router@1.6.2/aurelia-router.js",
"npm:aurelia-router@1.6.2.json",
"npm:aurelia-event-aggregator@1.0.1/aurelia-event-aggregator.js",
"npm:aurelia-event-aggregator@1.0.1.json",
"npm:aurelia-history@1.1.0/aurelia-history.js",
"npm:aurelia-history@1.1.0.json",
"npm:aurelia-route-recognizer@1.2.0/aurelia-route-recognizer.js",
"npm:aurelia-route-recognizer@1.2.0.json",
"npm:aurelia-templating-router@1.3.2/router-view.js",
"npm:aurelia-templating-router@1.3.2/route-loader.js",
"npm:aurelia-templating-resources@1.7.1/aurelia-templating-resources.js",
"npm:aurelia-templating-resources@1.7.1.json",
"npm:aurelia-templating-resources@1.7.1/aurelia-hide-style.js",
"npm:aurelia-templating-resources@1.7.1/analyze-view-factory.js",
"npm:aurelia-templating-resources@1.7.1/repeat-utilities.js",
"npm:aurelia-templating-resources@1.7.1/number-repeat-strategy.js",
"npm:aurelia-templating-resources@1.7.1/set-repeat-strategy.js",
"npm:aurelia-templating-resources@1.7.1/map-repeat-strategy.js",
"npm:aurelia-templating-resources@1.7.1/array-repeat-strategy.js",
"npm:aurelia-templating-resources@1.7.1/null-repeat-strategy.js",
"npm:aurelia-templating-resources@1.7.1/html-resource-plugin.js",
"npm:aurelia-templating-resources@1.7.1/dynamic-element.js",
"npm:aurelia-templating-resources@1.7.1/repeat-strategy-locator.js",
"npm:aurelia-templating-resources@1.7.1/abstract-repeater.js",
"npm:aurelia-templating-resources@1.7.1/update-trigger-binding-behavior.js",
"npm:aurelia-templating-resources@1.7.1/binding-signaler.js",
"npm:aurelia-templating-resources@1.7.1/signal-binding-behavior.js",
"npm:aurelia-templating-resources@1.7.1/self-binding-behavior.js",
"npm:aurelia-templating-resources@1.7.1/debounce-binding-behavior.js",
"npm:aurelia-templating-resources@1.7.1/throttle-binding-behavior.js",
"npm:aurelia-templating-resources@1.7.1/binding-mode-behaviors.js",
"npm:aurelia-templating-resources@1.7.1/attr-binding-behavior.js",
"npm:aurelia-templating-resources@1.7.1/html-sanitizer.js",
"npm:aurelia-templating-resources@1.7.1/css-resource.js",
"npm:aurelia-templating-resources@1.7.1/focus.js",
"npm:aurelia-templating-resources@1.7.1/replaceable.js",
"npm:aurelia-templating-resources@1.7.1/sanitize-html.js",
"npm:aurelia-templating-resources@1.7.1/hide.js",
"npm:aurelia-templating-resources@1.7.1/show.js",
"npm:aurelia-templating-resources@1.7.1/repeat.js",
"npm:aurelia-templating-resources@1.7.1/with.js",
"npm:aurelia-templating-resources@1.7.1/else.js",
"npm:aurelia-templating-resources@1.7.1/if-core.js",
"npm:aurelia-templating-resources@1.7.1/if.js",
"npm:aurelia-templating-resources@1.7.1/compose.js",
"npm:aurelia-templating-binding@1.4.3/aurelia-templating-binding.js",
"npm:aurelia-templating-binding@1.4.3.json",
"npm:aurelia-pal-browser@1.8.0/aurelia-pal-browser.js",
"npm:aurelia-pal-browser@1.8.0.json",
"npm:aurelia-materialize-bridge@1.2.8/well/md-well.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8.json",
"npm:aurelia-materialize-bridge@1.2.8/validation/validation-container.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/timepicker/timepicker.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/tap-target/tap-target.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/switch/switch.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/switch/switch.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/slider/slider.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/slider/slider.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/sidenav/sidenav.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/sidenav/sidenav.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/range/range.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/range/range.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/radio/radio.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/progress/progress.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/pagination/pagination.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/navbar/navbar.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/navbar/navbar.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/lookup/lookup.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/lookup/lookup.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/input/input.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/input/input.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/index.js",
"npm:aurelia-materialize-bridge@1.2.8/exports.js",
"npm:aurelia-materialize-bridge@1.2.8/config-builder.js",
"npm:aurelia-materialize-bridge@1.2.8/aurelia.js",
"npm:aurelia-materialize-bridge@1.2.8/common/colors-service.js",
"npm:aurelia-materialize-bridge@1.2.8/common/shade-blend-convert.js",
"npm:tslib@1.9.3/tslib.js",
"npm:tslib@1.9.3.json",
"npm:aurelia-materialize-bridge@1.2.8/common/attribute-manager.js",
"npm:aurelia-materialize-bridge@1.2.8/common/util.js",
"npm:aurelia-typed-observable-plugin@0.4.2/index.js",
"npm:aurelia-typed-observable-plugin@0.4.2.json",
"npm:aurelia-materialize-bridge@1.2.8/validation/validationRenderer.js",
"npm:aurelia-validation@1.2.2/aurelia-validation.js",
"npm:aurelia-validation@1.2.2.json",
"npm:aurelia-validation@1.2.2/implementation/validation-rules.js",
"npm:aurelia-validation@1.2.2/util.js",
"npm:aurelia-validation@1.2.2/implementation/validation-messages.js",
"npm:aurelia-validation@1.2.2/implementation/validation-message-parser.js",
"npm:aurelia-validation@1.2.2/implementation/expression-visitor.js",
"npm:aurelia-validation@1.2.2/implementation/rules.js",
"npm:aurelia-validation@1.2.2/implementation/standard-validator.js",
"npm:aurelia-validation@1.2.2/validate-result.js",
"npm:aurelia-validation@1.2.2/validator.js",
"npm:aurelia-validation@1.2.2/validation-renderer-custom-attribute.js",
"npm:aurelia-validation@1.2.2/validation-controller.js",
"npm:aurelia-validation@1.2.2/validate-event.js",
"npm:aurelia-validation@1.2.2/property-accessor-parser.js",
"npm:aurelia-validation@1.2.2/property-info.js",
"npm:aurelia-validation@1.2.2/validate-trigger.js",
"npm:aurelia-validation@1.2.2/validation-errors-custom-attribute.js",
"npm:aurelia-validation@1.2.2/validation-controller-factory.js",
"npm:aurelia-validation@1.2.2/validate-binding-behavior.js",
"npm:aurelia-validation@1.2.2/validate-binding-behavior-base.js",
"npm:aurelia-validation@1.2.2/get-target-dom-element.js",
"npm:aurelia-materialize-bridge@1.2.8/common/events.js",
"npm:aurelia-materialize-bridge@1.2.8/common/constants.js",
"npm:aurelia-materialize-bridge@1.2.8/well/md-well.js",
"npm:aurelia-materialize-bridge@1.2.8/waves/waves.js",
"npm:aurelia-materialize-bridge@1.2.8/wait-cursor/wait-cursor.js",
"npm:aurelia-materialize-bridge@1.2.8/validation/validation-container.js",
"npm:aurelia-materialize-bridge@1.2.8/tooltip/tooltip.js",
"npm:aurelia-materialize-bridge@1.2.8/toast/toastService.js",
"npm:aurelia-materialize-bridge@1.2.8/timepicker/timepicker.js",
"npm:aurelia-materialize-bridge@1.2.8/tap-target/tap-target.js",
"npm:aurelia-materialize-bridge@1.2.8/tabs/tabs.js",
"npm:aurelia-materialize-bridge@1.2.8/switch/switch.js",
"npm:aurelia-materialize-bridge@1.2.8/slider/slider.js",
"npm:aurelia-materialize-bridge@1.2.8/sidenav/sidenav.js",
"npm:aurelia-materialize-bridge@1.2.8/sidenav/sidenav-collapse.js",
"npm:aurelia-materialize-bridge@1.2.8/select/select.js",
"npm:aurelia-materialize-bridge@1.2.8/scrollspy/scrollspy.js",
"npm:aurelia-materialize-bridge@1.2.8/range/range.js",
"npm:aurelia-materialize-bridge@1.2.8/radio/radio.js",
"npm:aurelia-materialize-bridge@1.2.8/pushpin/pushpin.js",
"npm:aurelia-materialize-bridge@1.2.8/progress/progress.js",
"npm:aurelia-materialize-bridge@1.2.8/parallax/parallax.js",
"npm:aurelia-materialize-bridge@1.2.8/pagination/pagination.js",
"npm:aurelia-materialize-bridge@1.2.8/navbar/navbar.js",
"npm:aurelia-materialize-bridge@1.2.8/modal/modal.js",
"npm:aurelia-materialize-bridge@1.2.8/lookup/lookup.js",
"npm:aurelia-materialize-bridge@1.2.8/common/discardable-promise.js",
"npm:aurelia-materialize-bridge@1.2.8/lookup/lookup-state.js",
"npm:aurelia-materialize-bridge@1.2.8/input/input.js",
"npm:aurelia-materialize-bridge@1.2.8/input/input-prefix.js",
"npm:aurelia-materialize-bridge@1.2.8/footer/footer.js",
"npm:aurelia-materialize-bridge@1.2.8/file/file.js",
"npm:aurelia-materialize-bridge@1.2.8/fab/fab.js",
"npm:aurelia-materialize-bridge@1.2.8/dropdown/dropdown.js",
"npm:aurelia-materialize-bridge@1.2.8/dropdown/dropdown-element.js",
"npm:aurelia-materialize-bridge@1.2.8/datepicker/datepicker.js",
"npm:aurelia-materialize-bridge@1.2.8/colors/md-colors-legacy.js",
"npm:aurelia-materialize-bridge@1.2.8/colors/md-colors.js",
"npm:aurelia-materialize-bridge@1.2.8/colors/color-value-converters.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/md-collection-selector.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/collection.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/collection-item.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/collection-header.js",
"npm:aurelia-materialize-bridge@1.2.8/collapsible/collapsible.js",
"npm:aurelia-materialize-bridge@1.2.8/chip/chips.js",
"npm:aurelia-materialize-bridge@1.2.8/chip/chip.js",
"npm:aurelia-materialize-bridge@1.2.8/checkbox/checkbox.js",
"npm:aurelia-materialize-bridge@1.2.8/char-counter/char-counter.js",
"npm:aurelia-materialize-bridge@1.2.8/carousel/carousel.js",
"npm:aurelia-materialize-bridge@1.2.8/carousel/carousel-item.js",
"npm:aurelia-materialize-bridge@1.2.8/card/card.js",
"npm:aurelia-materialize-bridge@1.2.8/button/button.js",
"npm:aurelia-materialize-bridge@1.2.8/breadcrumbs/instructionFilter.js",
"npm:aurelia-materialize-bridge@1.2.8/breadcrumbs/breadcrumbs.js",
"npm:aurelia-materialize-bridge@1.2.8/box/box.js",
"npm:aurelia-materialize-bridge@1.2.8/badge/badge.js",
"npm:aurelia-materialize-bridge@1.2.8/autocomplete/autocomplete.js",
"npm:aurelia-materialize-bridge@1.2.8/polyfills/pad-start.js",
"npm:aurelia-materialize-bridge@1.2.8/polyfills/remove.js",
"npm:aurelia-materialize-bridge@1.2.8/polyfills/append.js",
"npm:aurelia-materialize-bridge@1.2.8/augmentation/aurelia-typed-observable.js",
"npm:aurelia-materialize-bridge@1.2.8/augmentation/materialize.js",
"npm:aurelia-materialize-bridge@1.2.8/augmentation/element.js",
"npm:aurelia-materialize-bridge@1.2.8/file/file.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/fab/fab.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/dropdown/dropdown-element.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/datepicker/datepicker.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/colors/md-colors.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/colors/md-colors-legacy.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/md-collection-selector.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/md-collection-selector.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/collection.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/collection-item.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/collection-item.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/collection-header.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/collection/collection-header.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/click-counter/click-counter.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/chip/chip.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/chip/chip.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/checkbox/checkbox.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/carousel/carousel.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/carousel/carousel.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/carousel/carousel-item.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/card/card.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/card/card.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/breadcrumbs/breadcrumbs.html!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-materialize-bridge@1.2.8/breadcrumbs/breadcrumbs.css!github:systemjs/plugin-text@0.0.4/text.js",
"npm:aurelia-logging-console@1.0.0/aurelia-logging-console.js",
"npm:aurelia-logging-console@1.0.0.json",
"npm:aurelia-loader-default@1.0.4/aurelia-loader-default.js",
"npm:aurelia-loader-default@1.0.4.json",
"npm:aurelia-history-browser@1.2.0/aurelia-history-browser.js",
"npm:aurelia-history-browser@1.2.0.json",
"npm:aurelia-fetch-client@1.4.0/aurelia-fetch-client.js",
"npm:aurelia-fetch-client@1.4.0.json",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/aurelia-dialog.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0.json",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/dialog-controller.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/dialog-cancel-error.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/dialog-close-error.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/lifecycle.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/renderer.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/dialog-service.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/dialog-settings.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/attach-focus.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/ux-dialog-footer.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/ux-dialog-body.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/ux-dialog-header.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/ux-dialog.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/dialog-configuration.js",
"npm:aurelia-dialog@1.0.0-rc.2.0.0/dialog-renderer.js",
"npm:aurelia-bootstrapper@2.3.0/aurelia-bootstrapper.js",
"npm:aurelia-bootstrapper@2.3.0.json",
"npm:aurelia-polyfills@1.3.0/aurelia-polyfills.js",
"npm:aurelia-polyfills@1.3.0.json",
"github:systemjs/plugin-text@0.0.4/text.js",
"github:frankwallis/plugin-typescript@9.0.0/plugin.js",
"npm:typescript@2.8.1/lib/typescript.js",
"npm:typescript@2.8.1.json",
"npm:source-map-support@0.5.6/source-map-support.js",
"npm:source-map-support@0.5.6.json",
"npm:jspm-nodelibs-process@0.2.1/process.js",
"npm:jspm-nodelibs-process@0.2.1.json",
"npm:jspm-nodelibs-module@0.2.1.json",
"npm:buffer-from@1.1.0/index.js",
"npm:buffer-from@1.1.0.json",
"npm:jspm-nodelibs-buffer@0.2.3/global.js",
"npm:jspm-nodelibs-buffer@0.2.3.json",
"npm:buffer@5.1.0/index.js",
"npm:buffer@5.1.0.json",
"npm:ieee754@1.1.12/index.js",
"npm:ieee754@1.1.12.json",
"npm:base64-js@1.3.0/index.js",
"npm:base64-js@1.3.0.json",
"npm:jspm-nodelibs-fs@0.2.1/fs.js",
"npm:jspm-nodelibs-fs@0.2.1.json",
"npm:jspm-nodelibs-path@0.2.3/path.js",
"npm:jspm-nodelibs-path@0.2.3.json",
"npm:source-map@0.6.1/source-map.js",
"npm:source-map@0.6.1.json",
"npm:source-map@0.6.1/lib/source-node.js",
"npm:source-map@0.6.1/lib/util.js",
"npm:source-map@0.6.1/lib/source-map-generator.js",
"npm:source-map@0.6.1/lib/mapping-list.js",
"npm:source-map@0.6.1/lib/array-set.js",
"npm:source-map@0.6.1/lib/base64-vlq.js",
"npm:source-map@0.6.1/lib/base64.js",
"npm:source-map@0.6.1/lib/source-map-consumer.js",
"npm:source-map@0.6.1/lib/quick-sort.js",
"npm:source-map@0.6.1/lib/binary-search.js",
"npm:crypto-browserify@3.12.0/index.js",
"npm:crypto-browserify@3.12.0.json",
"npm:randomfill@1.0.4/browser.js",
"npm:randomfill@1.0.4.json",
"npm:randombytes@2.0.6/browser.js",
"npm:randombytes@2.0.6.json",
"npm:safe-buffer@5.1.2/index.js",
"npm:safe-buffer@5.1.2.json",
"npm:public-encrypt@4.0.2/browser.js",
"npm:public-encrypt@4.0.2.json",
"npm:public-encrypt@4.0.2/privateDecrypt.js",
"npm:public-encrypt@4.0.2/withPublic.js",
"npm:bn.js@4.11.8/lib/bn.js",
"npm:bn.js@4.11.8.json",
"npm:create-hash@1.2.0/browser.js",
"npm:create-hash@1.2.0.json",
"npm:cipher-base@1.0.4/index.js",
"npm:cipher-base@1.0.4.json",
"npm:inherits@2.0.3/inherits_browser.js",
"npm:inherits@2.0.3.json",
"npm:string_decoder@0.10.31/index.js",
"npm:string_decoder@0.10.31.json",
"npm:jspm-nodelibs-string_decoder@0.2.2.json",
"npm:stream-browserify@2.0.1/index.js",
"npm:stream-browserify@2.0.1.json",
"npm:readable-stream@2.3.6/passthrough.js",
"npm:readable-stream@2.3.6.json",
"npm:readable-stream@2.3.6/readable-browser.js",
"npm:readable-stream@2.3.6/lib/_stream_passthrough.js",
"npm:core-util-is@1.0.2/lib/util.js",
"npm:core-util-is@1.0.2.json",
"npm:readable-stream@2.3.6/lib/_stream_transform.js",
"npm:readable-stream@2.3.6/lib/_stream_duplex.js",
"npm:readable-stream@2.3.6/lib/_stream_writable.js",
"npm:readable-stream@2.3.6/lib/internal/streams/destroy.js",
"npm:process-nextick-args@2.0.0/index.js",
"npm:process-nextick-args@2.0.0.json",
"npm:readable-stream@2.3.6/lib/internal/streams/stream-browser.js",
"npm:jspm-nodelibs-events@0.2.2/events.js",
"npm:jspm-nodelibs-events@0.2.2.json",
"npm:util-deprecate@1.0.2/browser.js",
"npm:util-deprecate@1.0.2.json",
"npm:readable-stream@2.3.6/lib/_stream_readable.js",
"npm:string_decoder@1.1.1/lib/string_decoder.js",
"npm:string_decoder@1.1.1.json",
"npm:readable-stream@2.3.6/lib/internal/streams/BufferList.js",
"npm:isarray@1.0.0/index.js",
"npm:isarray@1.0.0.json",
"npm:readable-stream@2.3.6/transform.js",
"npm:readable-stream@2.3.6/duplex-browser.js",
"npm:readable-stream@2.3.6/writable-browser.js",
"npm:jspm-nodelibs-stream@0.2.1.json",
"npm:sha.js@2.4.11/index.js",
"npm:sha.js@2.4.11.json",
"npm:sha.js@2.4.11/sha512.js",
"npm:sha.js@2.4.11/hash.js",
"npm:sha.js@2.4.11/sha384.js",
"npm:sha.js@2.4.11/sha256.js",
"npm:sha.js@2.4.11/sha224.js",
"npm:sha.js@2.4.11/sha1.js",
"npm:sha.js@2.4.11/sha.js",
"npm:ripemd160@2.0.2/index.js",
"npm:ripemd160@2.0.2.json",
"npm:hash-base@3.0.4/index.js",
"npm:hash-base@3.0.4.json",
"npm:md5.js@1.3.4/index.js",
"npm:md5.js@1.3.4.json",
"npm:browserify-rsa@4.0.1/index.js",
"npm:browserify-rsa@4.0.1.json",
"npm:public-encrypt@4.0.2/xor.js",
"npm:public-encrypt@4.0.2/mgf.js",
"npm:parse-asn1@5.1.1/index.js",
"npm:parse-asn1@5.1.1.json",
"npm:pbkdf2@3.0.16/browser.js",
"npm:pbkdf2@3.0.16.json",
"npm:pbkdf2@3.0.16/lib/sync-browser.js",
"npm:pbkdf2@3.0.16/lib/default-encoding.js",
"npm:pbkdf2@3.0.16/lib/precondition.js",
"npm:create-hash@1.2.0/md5.js",
"npm:pbkdf2@3.0.16/lib/async.js",
"npm:browserify-aes@1.2.0/browser.js",
"npm:browserify-aes@1.2.0.json",
"npm:browserify-aes@1.2.0/modes/list.json",
"npm:browserify-aes@1.2.0/decrypter.js",
"npm:evp_bytestokey@1.0.3/index.js",
"npm:evp_bytestokey@1.0.3.json",
"npm:browserify-aes@1.2.0/aes.js",
"npm:browserify-aes@1.2.0/streamCipher.js",
"npm:browserify-aes@1.2.0/modes/index.js",
"npm:browserify-aes@1.2.0/modes/ctr.js",
"npm:browserify-aes@1.2.0/incr32.js",
"npm:buffer-xor@1.0.3/index.js",
"npm:buffer-xor@1.0.3.json",
"npm:browserify-aes@1.2.0/modes/ofb.js",
"npm:browserify-aes@1.2.0/modes/cfb1.js",
"npm:browserify-aes@1.2.0/modes/cfb8.js",
"npm:browserify-aes@1.2.0/modes/cfb.js",
"npm:browserify-aes@1.2.0/modes/cbc.js",
"npm:browserify-aes@1.2.0/modes/ecb.js",
"npm:browserify-aes@1.2.0/authCipher.js",
"npm:browserify-aes@1.2.0/ghash.js",
"npm:browserify-aes@1.2.0/encrypter.js",
"npm:parse-asn1@5.1.1/fixProc.js",
"npm:parse-asn1@5.1.1/aesid.json",
"npm:parse-asn1@5.1.1/asn1.js",
"npm:parse-asn1@5.1.1/certificate.js",
"npm:asn1.js@4.10.1/lib/asn1.js",
"npm:asn1.js@4.10.1.json",
"npm:asn1.js@4.10.1/lib/asn1/encoders/index.js",
"npm:asn1.js@4.10.1/lib/asn1/encoders/pem.js",
"npm:asn1.js@4.10.1/lib/asn1/encoders/der.js",
"npm:asn1.js@4.10.1/lib/asn1/decoders/index.js",
"npm:asn1.js@4.10.1/lib/asn1/decoders/pem.js",
"npm:asn1.js@4.10.1/lib/asn1/decoders/der.js",
"npm:asn1.js@4.10.1/lib/asn1/constants/index.js",
"npm:asn1.js@4.10.1/lib/asn1/constants/der.js",
"npm:asn1.js@4.10.1/lib/asn1/base/index.js",
"npm:asn1.js@4.10.1/lib/asn1/base/node.js",
"npm:minimalistic-assert@1.0.1/index.js",
"npm:minimalistic-assert@1.0.1.json",
"npm:asn1.js@4.10.1/lib/asn1/base/buffer.js",
"npm:asn1.js@4.10.1/lib/asn1/base/reporter.js",
"npm:asn1.js@4.10.1/lib/asn1/api.js",
"npm:jspm-nodelibs-vm@0.2.1/vm.js",
"npm:jspm-nodelibs-vm@0.2.1.json",
"npm:public-encrypt@4.0.2/publicEncrypt.js",
"npm:create-ecdh@4.0.3/browser.js",
"npm:create-ecdh@4.0.3.json",
"npm:elliptic@6.4.0/lib/elliptic.js",
"npm:elliptic@6.4.0.json",
"npm:elliptic@6.4.0/lib/elliptic/eddsa/index.js",
"npm:elliptic@6.4.0/lib/elliptic/eddsa/signature.js",
"npm:elliptic@6.4.0/lib/elliptic/eddsa/key.js",
"npm:hash.js@1.1.5/lib/hash.js",
"npm:hash.js@1.1.5.json",
"npm:hash.js@1.1.5/lib/hash/hmac.js",
"npm:hash.js@1.1.5/lib/hash/utils.js",
"npm:hash.js@1.1.5/lib/hash/ripemd.js",
"npm:hash.js@1.1.5/lib/hash/common.js",
"npm:hash.js@1.1.5/lib/hash/sha.js",
"npm:hash.js@1.1.5/lib/hash/sha/512.js",
"npm:hash.js@1.1.5/lib/hash/sha/384.js",
"npm:hash.js@1.1.5/lib/hash/sha/256.js",
"npm:hash.js@1.1.5/lib/hash/sha/common.js",
"npm:hash.js@1.1.5/lib/hash/sha/224.js",
"npm:hash.js@1.1.5/lib/hash/sha/1.js",
"npm:elliptic@6.4.0/lib/elliptic/ec/index.js",
"npm:elliptic@6.4.0/lib/elliptic/ec/signature.js",
"npm:elliptic@6.4.0/lib/elliptic/ec/key.js",
"npm:hmac-drbg@1.0.1/lib/hmac-drbg.js",
"npm:hmac-drbg@1.0.1.json",
"npm:minimalistic-crypto-utils@1.0.1/lib/utils.js",
"npm:minimalistic-crypto-utils@1.0.1.json",
"npm:elliptic@6.4.0/lib/elliptic/curves.js",
"npm:elliptic@6.4.0/lib/elliptic/precomputed/secp256k1.js",
"npm:elliptic@6.4.0/lib/elliptic/curve/index.js",
"npm:elliptic@6.4.0/lib/elliptic/curve/edwards.js",
"npm:elliptic@6.4.0/lib/elliptic/curve/mont.js",
"npm:elliptic@6.4.0/lib/elliptic/curve/short.js",
"npm:elliptic@6.4.0/lib/elliptic/curve/base.js",
"npm:brorand@1.1.0/index.js",
"npm:brorand@1.1.0.json",
"npm:elliptic@6.4.0/lib/elliptic/utils.js",
"npm:elliptic@6.4.0/package.json",
"npm:browserify-sign@4.0.4/browser/index.js",
"npm:browserify-sign@4.0.4.json",
"npm:browserify-sign@4.0.4/browser/algorithms.json",
"npm:browserify-sign@4.0.4/browser/verify.js",
"npm:browserify-sign@4.0.4/browser/curves.json",
"npm:browserify-sign@4.0.4/browser/sign.js",
"npm:create-hmac@1.1.7/browser.js",
"npm:create-hmac@1.1.7.json",
"npm:create-hmac@1.1.7/legacy.js",
"npm:diffie-hellman@5.0.3/browser.js",
"npm:diffie-hellman@5.0.3.json",
"npm:diffie-hellman@5.0.3/lib/dh.js",
"npm:diffie-hellman@5.0.3/lib/generatePrime.js",
"npm:miller-rabin@4.0.1/lib/mr.js",
"npm:miller-rabin@4.0.1.json",
"npm:diffie-hellman@5.0.3/lib/primes.json",
"npm:browserify-cipher@1.0.1/browser.js",
"npm:browserify-cipher@1.0.1.json",
"npm:browserify-des@1.0.2/modes.js",
"npm:browserify-des@1.0.2.json",
"npm:browserify-des@1.0.2/index.js",
"npm:des.js@1.0.0/lib/des.js",
"npm:des.js@1.0.0.json",
"npm:des.js@1.0.0/lib/des/ede.js",
"npm:des.js@1.0.0/lib/des/cbc.js",
"npm:des.js@1.0.0/lib/des/des.js",
"npm:des.js@1.0.0/lib/des/cipher.js",
"npm:des.js@1.0.0/lib/des/utils.js",
"npm:browserify-sign@4.0.4/algos.js",
"npm:jspm-nodelibs-crypto@0.2.1.json",
"npm:os-browserify@0.3.0/browser.js",
"npm:os-browserify@0.3.0.json",
"npm:jspm-nodelibs-os@0.2.2.json"
]
}
},
transpiler: "plugin-typescript",
typescriptOptions: {
"target": "es5",
"lib": [
"es2017",
"dom"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
packages: {
"src": {
"main": "configure.ts",
"defaultExtension": "ts",
"meta": {
"*.ts": {
"loader": "plugin-typescript"
}
}
}
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"assert": "npm:jspm-nodelibs-assert@0.2.1",
"aurelia-binding": "npm:aurelia-binding@2.1.2",
"aurelia-bootstrapper": "npm:aurelia-bootstrapper@2.3.0",
"aurelia-dependency-injection": "npm:aurelia-dependency-injection@1.4.1",
"aurelia-dialog": "npm:aurelia-dialog@1.0.0-rc.2.0.0",
"aurelia-event-aggregator": "npm:aurelia-event-aggregator@1.0.1",
"aurelia-fetch-client": "npm:aurelia-fetch-client@1.4.0",
"aurelia-framework": "npm:aurelia-framework@1.3.0",
"aurelia-history": "npm:aurelia-history@1.1.0",
"aurelia-history-browser": "npm:aurelia-history-browser@1.2.0",
"aurelia-loader": "npm:aurelia-loader@1.0.0",
"aurelia-loader-default": "npm:aurelia-loader-default@1.0.4",
"aurelia-logging": "npm:aurelia-logging@1.5.0",
"aurelia-logging-console": "npm:aurelia-logging-console@1.0.0",
"aurelia-materialize-bridge": "npm:aurelia-materialize-bridge@1.2.8",
"aurelia-metadata": "npm:aurelia-metadata@1.0.4",
"aurelia-pal": "npm:aurelia-pal@1.8.0",
"aurelia-pal-browser": "npm:aurelia-pal-browser@1.8.0",
"aurelia-path": "npm:aurelia-path@1.1.1",
"aurelia-polyfills": "npm:aurelia-polyfills@1.3.0",
"aurelia-route-recognizer": "npm:aurelia-route-recognizer@1.2.0",
"aurelia-router": "npm:aurelia-router@1.6.2",
"aurelia-task-queue": "npm:aurelia-task-queue@1.3.1",
"aurelia-templating": "npm:aurelia-templating@1.8.2",
"aurelia-templating-binding": "npm:aurelia-templating-binding@1.4.3",
"aurelia-templating-resources": "npm:aurelia-templating-resources@1.7.1",
"aurelia-templating-router": "npm:aurelia-templating-router@1.3.2",
"aurelia-typed-observable-plugin": "npm:aurelia-typed-observable-plugin@0.4.2",
"aurelia-validation": "npm:aurelia-validation@1.2.2",
"buffer": "npm:jspm-nodelibs-buffer@0.2.3",
"constants": "npm:jspm-nodelibs-constants@0.2.1",
"crypto": "npm:jspm-nodelibs-crypto@0.2.1",
"css": "github:systemjs/plugin-css@0.1.37",
"events": "npm:jspm-nodelibs-events@0.2.2",
"fs": "npm:jspm-nodelibs-fs@0.2.1",
"materialize-css": "npm:materialize-css@next",
"module": "npm:jspm-nodelibs-module@0.2.1",
"net": "npm:jspm-nodelibs-net@0.2.1",
"os": "npm:jspm-nodelibs-os@0.2.2",
"path": "npm:jspm-nodelibs-path@0.2.3",
"plugin-typescript": "github:frankwallis/plugin-typescript@9.0.0",
"process": "npm:jspm-nodelibs-process@0.2.1",
"stream": "npm:jspm-nodelibs-stream@0.2.1",
"string_decoder": "npm:jspm-nodelibs-string_decoder@0.2.2",
"text": "github:systemjs/plugin-text@0.0.4",
"tslib": "npm:tslib@1.9.3",
"typescript": "npm:typescript@2.8.1",
"util": "npm:jspm-nodelibs-util@0.2.2",
"vm": "npm:jspm-nodelibs-vm@0.2.1"
},
packages: {
"npm:typescript@2.8.1": {
"map": {
"source-map-support": "npm:source-map-support@0.5.6"
}
},
"npm:aurelia-binding@2.1.2": {
"map": {
"aurelia-logging": "npm:aurelia-logging@1.5.0",
"aurelia-metadata": "npm:aurelia-metadata@1.0.4",
"aurelia-pal": "npm:aurelia-pal@1.8.0",
"aurelia-task-queue": "npm:aurelia-task-queue@1.3.1"
}
},
"npm:aurelia-fetch-client@1.4.0": {
"map": {
"aurelia-pal": "npm:aurelia-pal@1.8.0"
}
},
"npm:jspm-nodelibs-os@0.2.2": {
"map": {
"os-browserify": "npm:os-browserify@0.3.0"
}
},
"npm:jspm-nodelibs-buffer@0.2.3": {
"map": {
"buffer": "npm:buffer@5.1.0"
}
},
"npm:jspm-nodelibs-string_decoder@0.2.2": {
"map": {
"string_decoder": "npm:string_decoder@0.10.31"
}
},
"npm:jspm-nodelibs-stream@0.2.1": {
"map": {
"stream-browserify": "npm:stream-browserify@2.0.1"
}
},
"npm:jspm-nodelibs-crypto@0.2.1": {
"map": {
"crypto-browserify": "npm:crypto-browserify@3.12.0"
}
},
"npm:source-map-support@0.5.6": {
"map": {
"buffer-from": "npm:buffer-from@1.1.0",
"source-map": "npm:source-map@0.6.1"
}
},
"npm:buffer@5.1.0": {
"map": {
"base64-js": "npm:base64-js@1.3.0",
"ieee754": "npm:ieee754@1.1.12"
}
},
"npm:stream-browserify@2.0.1": {
"map": {
"readable-stream": "npm:readable-stream@2.3.6",
"inherits": "npm:inherits@2.0.3"
}
},
"npm:crypto-browserify@3.12.0": {
"map": {
"inherits": "npm:inherits@2.0.3",
"browserify-cipher": "npm:browserify-cipher@1.0.1",
"create-ecdh": "npm:create-ecdh@4.0.3",
"browserify-sign": "npm:browserify-sign@4.0.4",
"diffie-hellman": "npm:diffie-hellman@5.0.3",
"public-encrypt": "npm:public-encrypt@4.0.2",
"create-hmac": "npm:create-hmac@1.1.7",
"randomfill": "npm:randomfill@1.0.4",
"randombytes": "npm:randombytes@2.0.6",
"create-hash": "npm:create-hash@1.2.0",
"pbkdf2": "npm:pbkdf2@3.0.16"
}
},
"npm:readable-stream@2.3.6": {
"map": {
"string_decoder": "npm:string_decoder@1.1.1",
"inherits": "npm:inherits@2.0.3",
"util-deprecate": "npm:util-deprecate@1.0.2",
"process-nextick-args": "npm:process-nextick-args@2.0.0",
"isarray": "npm:isarray@1.0.0",
"safe-buffer": "npm:safe-buffer@5.1.2",
"core-util-is": "npm:core-util-is@1.0.2"
}
},
"npm:browserify-sign@4.0.4": {
"map": {
"create-hash": "npm:create-hash@1.2.0",
"create-hmac": "npm:create-hmac@1.1.7",
"inherits": "npm:inherits@2.0.3",
"elliptic": "npm:elliptic@6.4.0",
"parse-asn1": "npm:parse-asn1@5.1.1",
"bn.js": "npm:bn.js@4.11.8",
"browserify-rsa": "npm:browserify-rsa@4.0.1"
}
},
"npm:diffie-hellman@5.0.3": {
"map": {
"randombytes": "npm:randombytes@2.0.6",
"bn.js": "npm:bn.js@4.11.8",
"miller-rabin": "npm:miller-rabin@4.0.1"
}
},
"npm:public-encrypt@4.0.2": {
"map": {
"create-hash": "npm:create-hash@1.2.0",
"randombytes": "npm:randombytes@2.0.6",
"parse-asn1": "npm:parse-asn1@5.1.1",
"bn.js": "npm:bn.js@4.11.8",
"browserify-rsa": "npm:browserify-rsa@4.0.1"
}
},
"npm:create-hmac@1.1.7": {
"map": {
"create-hash": "npm:create-hash@1.2.0",
"inherits": "npm:inherits@2.0.3",
"safe-buffer": "npm:safe-buffer@5.1.2",
"cipher-base": "npm:cipher-base@1.0.4",
"sha.js": "npm:sha.js@2.4.11",
"ripemd160": "npm:ripemd160@2.0.2"
}
},
"npm:randomfill@1.0.4": {
"map": {
"randombytes": "npm:randombytes@2.0.6",
"safe-buffer": "npm:safe-buffer@5.1.2"
}
},
"npm:create-hash@1.2.0": {
"map": {
"inherits": "npm:inherits@2.0.3",
"cipher-base": "npm:cipher-base@1.0.4",
"md5.js": "npm:md5.js@1.3.4",
"sha.js": "npm:sha.js@2.4.11",
"ripemd160": "npm:ripemd160@2.0.2"
}
},
"npm:pbkdf2@3.0.16": {
"map": {
"create-hash": "npm:create-hash@1.2.0",
"create-hmac": "npm:create-hmac@1.1.7",
"safe-buffer": "npm:safe-buffer@5.1.2",
"sha.js": "npm:sha.js@2.4.11",
"ripemd160": "npm:ripemd160@2.0.2"
}
},
"npm:create-ecdh@4.0.3": {
"map": {
"elliptic": "npm:elliptic@6.4.0",
"bn.js": "npm:bn.js@4.11.8"
}
},
"npm:randombytes@2.0.6": {
"map": {
"safe-buffer": "npm:safe-buffer@5.1.2"
}
},
"npm:string_decoder@1.1.1": {
"map": {
"safe-buffer": "npm:safe-buffer@5.1.2"
}
},
"npm:browserify-cipher@1.0.1": {
"map": {
"browserify-des": "npm:browserify-des@1.0.2",
"evp_bytestokey": "npm:evp_bytestokey@1.0.3",
"browserify-aes": "npm:browserify-aes@1.2.0"
}
},
"npm:browserify-des@1.0.2": {
"map": {
"cipher-base": "npm:cipher-base@1.0.4",
"inherits": "npm:inherits@2.0.3",
"safe-buffer": "npm:safe-buffer@5.1.2",
"des.js": "npm:des.js@1.0.0"
}
},
"npm:elliptic@6.4.0": {
"map": {
"bn.js": "npm:bn.js@4.11.8",
"inherits": "npm:inherits@2.0.3",
"brorand": "npm:brorand@1.1.0",
"minimalistic-assert": "npm:minimalistic-assert@1.0.1",
"minimalistic-crypto-utils": "npm:minimalistic-crypto-utils@1.0.1",
"hash.js": "npm:hash.js@1.1.5",
"hmac-drbg": "npm:hmac-drbg@1.0.1"
}
},
"npm:evp_bytestokey@1.0.3": {
"map": {
"md5.js": "npm:md5.js@1.3.4",
"safe-buffer": "npm:safe-buffer@5.1.2"
}
},
"npm:parse-asn1@5.1.1": {
"map": {
"browserify-aes": "npm:browserify-aes@1.2.0",
"create-hash": "npm:create-hash@1.2.0",
"evp_bytestokey": "npm:evp_bytestokey@1.0.3",
"pbkdf2": "npm:pbkdf2@3.0.16",
"asn1.js": "npm:asn1.js@4.10.1"
}
},
"npm:browserify-aes@1.2.0": {
"map": {
"cipher-base": "npm:cipher-base@1.0.4",
"create-hash": "npm:create-hash@1.2.0",
"evp_bytestokey": "npm:evp_bytestokey@1.0.3",
"inherits": "npm:inherits@2.0.3",
"safe-buffer": "npm:safe-buffer@5.1.2",
"buffer-xor": "npm:buffer-xor@1.0.3"
}
},
"npm:browserify-rsa@4.0.1": {
"map": {
"bn.js": "npm:bn.js@4.11.8",
"randombytes": "npm:randombytes@2.0.6"
}
},
"npm:cipher-base@1.0.4": {
"map": {
"inherits": "npm:inherits@2.0.3",
"safe-buffer": "npm:safe-buffer@5.1.2"
}
},
"npm:md5.js@1.3.4": {
"map": {
"inherits": "npm:inherits@2.0.3",
"hash-base": "npm:hash-base@3.0.4"
}
},
"npm:sha.js@2.4.11": {
"map": {
"inherits": "npm:inherits@2.0.3",
"safe-buffer": "npm:safe-buffer@5.1.2"
}
},
"npm:miller-rabin@4.0.1": {
"map": {
"bn.js": "npm:bn.js@4.11.8",
"brorand": "npm:brorand@1.1.0"
}
},
"npm:ripemd160@2.0.2": {
"map": {
"inherits": "npm:inherits@2.0.3",
"hash-base": "npm:hash-base@3.0.4"
}
},
"npm:des.js@1.0.0": {
"map": {
"inherits": "npm:inherits@2.0.3",
"minimalistic-assert": "npm:minimalistic-assert@1.0.1"
}
},
"npm:hash.js@1.1.5": {
"map": {
"inherits": "npm:inherits@2.0.3",
"minimalistic-assert": "npm:minimalistic-assert@1.0.1"
}
},
"npm:hash-base@3.0.4": {
"map": {
"inherits": "npm:inherits@2.0.3",
"safe-buffer": "npm:safe-buffer@5.1.2"
}
},
"npm:asn1.js@4.10.1": {
"map": {
"bn.js": "npm:bn.js@4.11.8",
"inherits": "npm:inherits@2.0.3",
"minimalistic-assert": "npm:minimalistic-assert@1.0.1"
}
},
"npm:hmac-drbg@1.0.1": {
"map": {
"minimalistic-crypto-utils": "npm:minimalistic-crypto-utils@1.0.1",
"hash.js": "npm:hash.js@1.1.5",
"minimalistic-assert": "npm:minimalistic-assert@1.0.1"
}
}
}
});