-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
714 lines (712 loc) · 26.2 KB
/
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
System.config({
"paths": {
"*": "*.js",
"app/*": "lib/*.js",
"github:*": "jspm_packages/github/*.js",
"npm:*": "jspm_packages/npm/*.js"
}
});
System.config({
"map": {
"6to5": "npm:6to5@3.5.3",
"bootstrap": "github:twbs/bootstrap@3.3.1",
"react": "npm:react@0.12.2",
"react-bootstrap": "npm:react-bootstrap@0.13.3",
"react-router": "npm:react-router@0.11.6",
"riot": "npm:riot@2.0.7",
"riotcontrol": "npm:riotcontrol@0.0.1",
"riotjs": "npm:riotjs@1.0.4",
"github:jspm/nodelibs-assert@0.1.0": {
"assert": "npm:assert@1.3.0"
},
"github:jspm/nodelibs-buffer@0.1.0": {
"buffer": "npm:buffer@3.0.1"
},
"github:jspm/nodelibs-constants@0.1.0": {
"constants-browserify": "npm:constants-browserify@0.0.1"
},
"github:jspm/nodelibs-crypto@0.1.0": {
"crypto-browserify": "npm:crypto-browserify@3.9.12"
},
"github:jspm/nodelibs-events@0.1.0": {
"events-browserify": "npm:events-browserify@0.0.1"
},
"github:jspm/nodelibs-http@1.7.0": {
"Base64": "npm:Base64@0.2.1",
"events": "github:jspm/nodelibs-events@0.1.0",
"inherits": "npm:inherits@2.0.1",
"stream": "github:jspm/nodelibs-stream@0.1.0",
"url": "github:jspm/nodelibs-url@0.1.0",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"github:jspm/nodelibs-os@0.1.0": {
"os-browserify": "npm:os-browserify@0.1.2"
},
"github:jspm/nodelibs-path@0.1.0": {
"path-browserify": "npm:path-browserify@0.0.0"
},
"github:jspm/nodelibs-process@0.1.1": {
"process": "npm:process@0.10.0"
},
"github:jspm/nodelibs-querystring@0.1.0": {
"querystring": "npm:querystring@0.2.0"
},
"github:jspm/nodelibs-stream@0.1.0": {
"stream-browserify": "npm:stream-browserify@1.0.0"
},
"github:jspm/nodelibs-string_decoder@0.1.0": {
"string_decoder": "npm:string_decoder@0.10.31"
},
"github:jspm/nodelibs-tty@0.1.0": {
"tty-browserify": "npm:tty-browserify@0.0.0"
},
"github:jspm/nodelibs-url@0.1.0": {
"url": "npm:url@0.10.2"
},
"github:jspm/nodelibs-util@0.1.0": {
"util": "npm:util@0.10.3"
},
"github:jspm/nodelibs-vm@0.1.0": {
"vm-browserify": "npm:vm-browserify@0.0.4"
},
"github:twbs/bootstrap@3.3.1": {
"css": "github:systemjs/plugin-css@0.1.0",
"jquery": "github:components/jquery@2.1.3"
},
"npm:6to5@3.5.3": {
"acorn-6to5": "npm:acorn-6to5@0.11.1-28",
"assert": "github:jspm/nodelibs-assert@0.1.0",
"ast-types": "npm:ast-types@0.6.10",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"chalk": "npm:chalk@0.5.1",
"chokidar": "npm:chokidar@0.12.6",
"commander": "npm:commander@2.6.0",
"core-js": "npm:core-js@0.4.10",
"debug": "npm:debug@2.1.1",
"detect-indent": "npm:detect-indent@3.0.0",
"estraverse": "npm:estraverse@1.9.1",
"esutils": "npm:esutils@1.1.6",
"events": "github:jspm/nodelibs-events@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"fs-readdir-recursive": "npm:fs-readdir-recursive@0.1.0",
"globals": "npm:globals@5.1.0",
"js-tokenizer": "npm:js-tokenizer@1.3.3",
"kexec": "npm:kexec@1.0.0",
"lodash": "npm:lodash@3.0.0",
"net": "github:jspm/nodelibs-net@0.1.0",
"os": "github:jspm/nodelibs-os@0.1.0",
"output-file-sync": "npm:output-file-sync@1.1.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"private": "npm:private@0.1.6",
"process": "github:jspm/nodelibs-process@0.1.1",
"regenerator-6to5": "npm:regenerator-6to5@0.8.9-8",
"regexpu": "npm:regexpu@1.1.0",
"roadrunner": "npm:roadrunner@1.0.4",
"source-map": "npm:source-map@0.1.43",
"source-map-support": "npm:source-map-support@0.2.9",
"stream": "github:jspm/nodelibs-stream@0.1.0",
"string_decoder": "github:jspm/nodelibs-string_decoder@0.1.0",
"supports-color": "npm:supports-color@1.2.0",
"systemjs-json": "github:systemjs/plugin-json@0.1.0",
"tty": "github:jspm/nodelibs-tty@0.1.0",
"useragent": "npm:useragent@2.1.5",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:acorn-6to5@0.11.1-28": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:amdefine@0.1.0": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"module": "github:jspm/nodelibs-module@0.1.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:anymatch@1.1.0": {
"minimatch": "npm:minimatch@1.0.0"
},
"npm:asn1.js-rfc3280@1.0.0": {
"asn1.js": "npm:asn1.js@1.0.3"
},
"npm:asn1.js@1.0.3": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"bn.js": "npm:bn.js@1.3.0",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"inherits": "npm:inherits@2.0.1",
"minimalistic-assert": "npm:minimalistic-assert@1.0.0",
"vm": "github:jspm/nodelibs-vm@0.1.0"
},
"npm:assert@1.3.0": {
"util": "npm:util@0.10.3"
},
"npm:ast-types@0.6.10": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:binary-extensions@1.1.0": {
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:browserify-aes@1.0.0": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"create-hash": "npm:create-hash@1.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"inherits": "npm:inherits@2.0.1",
"stream": "github:jspm/nodelibs-stream@0.1.0",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:browserify-rsa@1.1.1": {
"bn.js": "npm:bn.js@1.3.0",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"constants": "github:jspm/nodelibs-constants@0.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0"
},
"npm:browserify-sign@2.8.0": {
"bn.js": "npm:bn.js@1.3.0",
"browserify-rsa": "npm:browserify-rsa@1.1.1",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"elliptic": "npm:elliptic@1.0.1",
"inherits": "npm:inherits@2.0.1",
"parse-asn1": "npm:parse-asn1@2.0.0",
"stream": "github:jspm/nodelibs-stream@0.1.0"
},
"npm:buffer@3.0.1": {
"base64-js": "npm:base64-js@0.0.8",
"ieee754": "npm:ieee754@1.1.4",
"is-array": "npm:is-array@1.0.1"
},
"npm:camelcase-keys@1.0.0": {
"camelcase": "npm:camelcase@1.0.2",
"map-obj": "npm:map-obj@1.0.0"
},
"npm:chalk@0.5.1": {
"ansi-styles": "npm:ansi-styles@1.1.0",
"escape-string-regexp": "npm:escape-string-regexp@1.0.2",
"has-ansi": "npm:has-ansi@0.1.0",
"strip-ansi": "npm:strip-ansi@0.3.0",
"supports-color": "npm:supports-color@0.2.0"
},
"npm:chokidar@0.12.6": {
"async-each": "npm:async-each@0.1.6",
"events": "github:jspm/nodelibs-events@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"fsevents": "npm:fsevents@0.3.5",
"os": "github:jspm/nodelibs-os@0.1.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"readdirp": "npm:readdirp@1.3.0"
},
"npm:chokidar@1.0.0-rc3": {
"anymatch": "npm:anymatch@1.1.0",
"async-each": "npm:async-each@0.1.6",
"events": "github:jspm/nodelibs-events@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"fsevents": "npm:fsevents@0.3.5",
"glob-parent": "npm:glob-parent@1.0.0",
"is-binary-path": "npm:is-binary-path@1.0.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"readdirp": "npm:readdirp@1.3.0"
},
"npm:commander@2.5.1": {
"child_process": "github:jspm/nodelibs-child_process@0.1.0",
"events": "github:jspm/nodelibs-events@0.1.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:commander@2.6.0": {
"child_process": "github:jspm/nodelibs-child_process@0.1.0",
"events": "github:jspm/nodelibs-events@0.1.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:commoner@0.10.1": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"child_process": "github:jspm/nodelibs-child_process@0.1.0",
"commander": "npm:commander@2.5.1",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"events": "github:jspm/nodelibs-events@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"glob": "npm:glob@4.2.2",
"graceful-fs": "npm:graceful-fs@3.0.5",
"iconv-lite": "npm:iconv-lite@0.4.7",
"install": "npm:install@0.1.8",
"mkdirp": "npm:mkdirp@0.5.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"private": "npm:private@0.1.6",
"process": "github:jspm/nodelibs-process@0.1.1",
"q": "npm:q@1.1.2",
"recast": "npm:recast@0.9.17",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:constants-browserify@0.0.1": {
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:core-js@0.4.10": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:core-util-is@1.0.1": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0"
},
"npm:create-ecdh@1.0.3": {
"bn.js": "npm:bn.js@1.3.0",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"elliptic": "npm:elliptic@1.0.1"
},
"npm:create-hash@1.1.0": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"inherits": "npm:inherits@2.0.1",
"ripemd160": "npm:ripemd160@1.0.0",
"sha.js": "npm:sha.js@2.3.6",
"stream": "github:jspm/nodelibs-stream@0.1.0"
},
"npm:create-hmac@1.1.3": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"create-hash": "npm:create-hash@1.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"inherits": "npm:inherits@2.0.1",
"stream": "github:jspm/nodelibs-stream@0.1.0"
},
"npm:crypto-browserify@3.9.12": {
"browserify-aes": "npm:browserify-aes@1.0.0",
"browserify-sign": "npm:browserify-sign@2.8.0",
"create-ecdh": "npm:create-ecdh@1.0.3",
"create-hash": "npm:create-hash@1.1.0",
"create-hmac": "npm:create-hmac@1.1.3",
"diffie-hellman": "npm:diffie-hellman@3.0.1",
"inherits": "npm:inherits@2.0.1",
"pbkdf2-compat": "npm:pbkdf2-compat@3.0.1",
"public-encrypt": "npm:public-encrypt@1.1.2",
"randombytes": "npm:randombytes@2.0.1"
},
"npm:debug@2.1.1": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"ms": "npm:ms@0.6.2",
"net": "github:jspm/nodelibs-net@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"tty": "github:jspm/nodelibs-tty@0.1.0",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:detect-indent@3.0.0": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"get-stdin": "npm:get-stdin@3.0.2",
"minimist": "npm:minimist@1.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"repeating": "npm:repeating@1.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:diffie-hellman@3.0.1": {
"bn.js": "npm:bn.js@1.3.0",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"miller-rabin": "npm:miller-rabin@1.1.5",
"process": "github:jspm/nodelibs-process@0.1.1",
"randombytes": "npm:randombytes@2.0.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:elliptic@1.0.1": {
"bn.js": "npm:bn.js@1.3.0",
"brorand": "npm:brorand@1.0.5",
"hash.js": "npm:hash.js@1.0.2",
"inherits": "npm:inherits@2.0.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:envify@3.2.0": {
"jstransform": "npm:jstransform@7.0.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"through": "npm:through@2.3.6"
},
"npm:esprima-fb@10001.1.0-dev-harmony-fb": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:esprima-fb@7001.1.0-dev-harmony-fb": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:events-browserify@0.0.1": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:fs-readdir-recursive@0.1.0": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"path": "github:jspm/nodelibs-path@0.1.0"
},
"npm:fsevents@0.3.5": {
"events": "github:jspm/nodelibs-events@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"nan": "npm:nan@1.5.3",
"process": "github:jspm/nodelibs-process@0.1.1",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:get-stdin@3.0.2": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:glob-parent@1.0.0": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"is-glob": "npm:is-glob@0.3.0",
"path": "github:jspm/nodelibs-path@0.1.0"
},
"npm:glob@4.2.2": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"events": "github:jspm/nodelibs-events@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"inflight": "npm:inflight@1.0.4",
"inherits": "npm:inherits@2.0.1",
"minimatch": "npm:minimatch@1.0.0",
"once": "npm:once@1.3.1",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:globals@5.1.0": {
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:graceful-fs@2.0.3": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"constants": "github:jspm/nodelibs-constants@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"process": "github:jspm/nodelibs-process@0.1.1",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:graceful-fs@3.0.5": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"constants": "github:jspm/nodelibs-constants@0.1.0",
"module": "github:jspm/nodelibs-module@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"util": "github:jspm/nodelibs-util@0.1.0",
"vm": "github:jspm/nodelibs-vm@0.1.0"
},
"npm:has-ansi@0.1.0": {
"ansi-regex": "npm:ansi-regex@0.2.1",
"process": "github:jspm/nodelibs-process@0.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:hash.js@1.0.2": {
"inherits": "npm:inherits@2.0.1"
},
"npm:iconv-lite@0.4.7": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"stream": "github:jspm/nodelibs-stream@0.1.0",
"string_decoder": "github:jspm/nodelibs-string_decoder@0.1.0",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:indent-string@1.2.0": {
"get-stdin": "npm:get-stdin@3.0.2",
"minimist": "npm:minimist@1.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"repeating": "npm:repeating@1.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:inflight@1.0.4": {
"once": "npm:once@1.3.1",
"process": "github:jspm/nodelibs-process@0.1.1",
"wrappy": "npm:wrappy@1.0.1"
},
"npm:inherits@2.0.1": {
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:install@0.1.8": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:is-binary-path@1.0.0": {
"binary-extensions": "npm:binary-extensions@1.1.0",
"path": "github:jspm/nodelibs-path@0.1.0"
},
"npm:js-tokenizer@1.3.3": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:jstransform@7.0.0": {
"base62": "npm:base62@0.1.1",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"esprima-fb": "npm:esprima-fb@7001.1.0-dev-harmony-fb",
"process": "github:jspm/nodelibs-process@0.1.1",
"source-map": "npm:source-map@0.1.31"
},
"npm:kexec@1.0.0": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:lodash@3.0.0": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:lru-cache@2.2.4": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:meow@2.1.0": {
"camelcase-keys": "npm:camelcase-keys@1.0.0",
"indent-string": "npm:indent-string@1.2.0",
"minimist": "npm:minimist@1.1.0",
"object-assign": "npm:object-assign@2.0.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:miller-rabin@1.1.5": {
"bn.js": "npm:bn.js@1.3.0",
"brorand": "npm:brorand@1.0.5"
},
"npm:minimatch@0.2.14": {
"lru-cache": "npm:lru-cache@2.5.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"sigmund": "npm:sigmund@1.0.0"
},
"npm:minimatch@1.0.0": {
"lru-cache": "npm:lru-cache@2.5.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"sigmund": "npm:sigmund@1.0.0"
},
"npm:mkdirp@0.5.0": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"minimist": "npm:minimist@0.0.8",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:nan@1.5.3": {
"path": "github:jspm/nodelibs-path@0.1.0"
},
"npm:once@1.3.1": {
"wrappy": "npm:wrappy@1.0.1"
},
"npm:os-browserify@0.1.2": {
"os": "github:jspm/nodelibs-os@0.1.0"
},
"npm:output-file-sync@1.1.0": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"mkdirp": "npm:mkdirp@0.5.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"xtend": "npm:xtend@4.0.0"
},
"npm:parse-asn1@2.0.0": {
"asn1.js": "npm:asn1.js@1.0.3",
"asn1.js-rfc3280": "npm:asn1.js-rfc3280@1.0.0",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"pemstrip": "npm:pemstrip@0.0.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:path-browserify@0.0.0": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:pbkdf2-compat@3.0.1": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"child_process": "github:jspm/nodelibs-child_process@0.1.0",
"create-hmac": "npm:create-hmac@1.1.3",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:public-encrypt@1.1.2": {
"bn.js": "npm:bn.js@1.3.0",
"browserify-rsa": "npm:browserify-rsa@1.1.1",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"parse-asn1": "npm:parse-asn1@2.0.0"
},
"npm:punycode@1.3.2": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:q@1.1.2": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:qs@2.2.2": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0"
},
"npm:randombytes@2.0.1": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"crypto": "github:jspm/nodelibs-crypto@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:react-bootstrap@0.13.3": {
"react": "npm:react@0.12.2"
},
"npm:react-router@0.11.6": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"qs": "npm:qs@2.2.2",
"react": "npm:react@0.12.2",
"when": "npm:when@3.4.6"
},
"npm:react@0.12.2": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"envify": "npm:envify@3.2.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:readable-stream@1.0.33": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"core-util-is": "npm:core-util-is@1.0.1",
"events": "github:jspm/nodelibs-events@0.1.0",
"inherits": "npm:inherits@2.0.1",
"isarray": "npm:isarray@0.0.1",
"process": "github:jspm/nodelibs-process@0.1.1",
"stream": "github:jspm/nodelibs-stream@0.1.0",
"string_decoder": "npm:string_decoder@0.10.31"
},
"npm:readdirp@1.3.0": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"graceful-fs": "npm:graceful-fs@2.0.3",
"minimatch": "npm:minimatch@0.2.14",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"readable-stream": "npm:readable-stream@1.0.33",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:recast@0.9.17": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"ast-types": "npm:ast-types@0.6.10",
"esprima-fb": "npm:esprima-fb@10001.1.0-dev-harmony-fb",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"private": "npm:private@0.1.6",
"process": "github:jspm/nodelibs-process@0.1.1",
"source-map": "npm:source-map@0.1.43"
},
"npm:regenerator-6to5@0.8.9-8": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"ast-types": "npm:ast-types@0.6.10",
"commoner": "npm:commoner@0.10.1",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"path": "github:jspm/nodelibs-path@0.1.0",
"private": "npm:private@0.1.6",
"process": "github:jspm/nodelibs-process@0.1.1",
"through": "npm:through@2.3.6",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:regexpu@1.1.0": {
"process": "github:jspm/nodelibs-process@0.1.1",
"recast": "npm:recast@0.9.17",
"regenerate": "npm:regenerate@1.2.1",
"regjsgen": "npm:regjsgen@0.2.0",
"regjsparser": "npm:regjsparser@0.1.3",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:regjsparser@0.1.3": {
"jsesc": "npm:jsesc@0.5.0"
},
"npm:repeating@1.1.1": {
"is-finite": "npm:is-finite@1.0.0",
"meow": "npm:meow@2.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:riot@2.0.7": {
"chokidar": "npm:chokidar@1.0.0-rc3",
"minimist": "npm:minimist@1.1.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"shelljs": "npm:shelljs@0.3.0"
},
"npm:ripemd160@1.0.0": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:roadrunner@1.0.4": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"module": "github:jspm/nodelibs-module@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:sha.js@2.3.6": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"inherits": "npm:inherits@2.0.1",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:shelljs@0.3.0": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"child_process": "github:jspm/nodelibs-child_process@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"os": "github:jspm/nodelibs-os@0.1.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:sigmund@1.0.0": {
"http": "github:jspm/nodelibs-http@1.7.0",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:source-map-support@0.2.9": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"child_process": "github:jspm/nodelibs-child_process@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"http": "github:jspm/nodelibs-http@1.7.0",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1",
"querystring": "github:jspm/nodelibs-querystring@0.1.0",
"source-map": "npm:source-map@0.1.32"
},
"npm:source-map@0.1.31": {
"amdefine": "npm:amdefine@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:source-map@0.1.32": {
"amdefine": "npm:amdefine@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:source-map@0.1.43": {
"amdefine": "npm:amdefine@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:stream-browserify@1.0.0": {
"events": "github:jspm/nodelibs-events@0.1.0",
"inherits": "npm:inherits@2.0.1",
"readable-stream": "npm:readable-stream@1.0.33"
},
"npm:string_decoder@0.10.31": {
"buffer": "github:jspm/nodelibs-buffer@0.1.0"
},
"npm:strip-ansi@0.3.0": {
"ansi-regex": "npm:ansi-regex@0.2.1",
"fs": "github:jspm/nodelibs-fs@0.1.1",
"process": "github:jspm/nodelibs-process@0.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:supports-color@0.2.0": {
"process": "github:jspm/nodelibs-process@0.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:supports-color@1.2.0": {
"process": "github:jspm/nodelibs-process@0.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:through@2.3.6": {
"process": "github:jspm/nodelibs-process@0.1.1",
"stream": "github:jspm/nodelibs-stream@0.1.0"
},
"npm:url@0.10.2": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"punycode": "npm:punycode@1.3.2",
"querystring": "github:jspm/nodelibs-querystring@0.1.0",
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:useragent@2.1.5": {
"fs": "github:jspm/nodelibs-fs@0.1.1",
"lru-cache": "npm:lru-cache@2.2.4",
"path": "github:jspm/nodelibs-path@0.1.0",
"systemjs-json": "github:systemjs/plugin-json@0.1.0",
"vm": "github:jspm/nodelibs-vm@0.1.0"
},
"npm:util@0.10.3": {
"inherits": "npm:inherits@2.0.1",
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:vm-browserify@0.0.4": {
"indexof": "npm:indexof@0.0.1"
},
"npm:when@3.4.6": {
"process": "github:jspm/nodelibs-process@0.1.1"
}
}
});