-
Notifications
You must be signed in to change notification settings - Fork 0
/
allpackages.json
5945 lines (5945 loc) · 292 KB
/
allpackages.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
{
"accounts-base": {
"_id": "PrGQBYBMkzna7uqTF",
"packageName": "accounts-base",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "1.9.0",
"earliestCompatibleVersion": "1.0.0",
"description": "A user account system",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/accounts-base) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/accounts-base)\n***\n\nMeteor's user account system. This package implements the basic functions necessary for user accounts and lets other packages register login services. Some of these services are in the following packages:\n\n- `accounts-password`\n- `accounts-facebook`\n- `accounts-google`\n- `accounts-github`\n- `accounts-twitter`\n- `accounts-meetup`\n- `accounts-weibo`\n\nThere are also login services available in community packages.\n\nFor more information, see the [Meteor docs](http://docs.meteor.com/#accounts_api) and the Meteor Accounts [project page](https://www.meteor.com/accounts).",
"exports": [
{
"name": "Accounts",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"callback-hook": {
"_id": "d6srN6JFX9hwYWoaW",
"packageName": "callback-hook",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "1.3.0",
"earliestCompatibleVersion": "1.0.0",
"description": "Register callbacks on a hook",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/callback-hook) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/callback-hook)\n***\n\nThis is an internal Meteor package.",
"exports": [
{
"name": "Hook",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)"
},
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1578526063225/2LTgbbWQ7L/callback-hook-1.3.0-source.tgz",
"tarballHash": "wTy9LmlsurujRvt+iqCJCrVA7x5Ja7n9LQ/QBczyrSg=",
"treeHash": "IdaowS4hjhp7TtdsFAOFPJO40M0472sjuNC5up2JPzs="
},
"readme": {
"hash": "t1GELMSEJI0m+n2EGZILdYebQGaLZrSKuYVo9t7NWxg=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1578526063226/Xm5SphsDSo/callback-hook-1.3.0-readme.md"
},
"lastUpdated": "2020-01-08T23:27:43.753Z",
"published": "2020-01-08T23:27:43.753Z"
},
"check": {
"_id": "xodTgo3Tnnf2MSukg",
"packageName": "check",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.3.1",
"earliestCompatibleVersion": "1.0.0",
"description": "Check whether a value matches a pattern",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/check) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/check)\n***\n\n`check` is a lightweight package for argument checking and general pattern matching. Use it like this:\n\n```\nMeteor.publish(\"chats-in-room\", function (roomId) {\n // Make sure roomId is a string, not an arbitrary mongo selector object.\n check(roomId, String);\n return Chats.find({room: roomId});\n});\n\nMeteor.methods({addChat: function (roomId, message) {\n check(roomId, String);\n check(message, {\n text: String,\n timestamp: Date,\n // Optional, but if present must be an array of strings.\n tags: Match.Optional([String])\n });\n\n // ... do something with the message ...\n}});\n```\n\nFor more details see the [`check` section](http://docs.meteor.com/#check_package) of the Meteor docs.",
"exports": [
{
"name": "check",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
},
{
"name": "Match",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)",
"ejson": {
"_id": "iiEP9pz6SJCrumuhE",
"packageName": "ejson",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "1.1.1",
"earliestCompatibleVersion": "1.0.0",
"description": "Extended and Extensible JSON library",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/ejson) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/ejson)\n***\n\nEJSON is an extension of JSON to support more types. It supports all JSON-safe\ntypes, as well as:\n\n - **Date** - JavaScript `Date`\n - **Binary** - JavaScript `Uint8Array` or the\n result of [`EJSON.newBinary`](http://docs.meteor.com/#ejson_new_binary)\n - **User-defined types** - see [`EJSON.addType`](http://docs.meteor.com/#ejson_add_type)\n\nAll EJSON serializations are also valid JSON. For example an object with a date\nand a binary buffer would be serialized in EJSON as:\n\n {\n \"d\": {\"$date\": 1358205756553},\n \"b\": {\"$binary\": \"c3VyZS4=\"}\n }\n\nFor more details, see the [EJSON section](http://docs.meteor.com/#ejson) of the Meteor docs.",
"exports": [
{
"name": "EJSON",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"base64": {
"_id": "KxSSNtkyPXXRqF7Fm",
"packageName": "base64",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.0.12",
"earliestCompatibleVersion": "1.0.0",
"description": "Base64 encoding and decoding",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/base64) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/base64)\n***\n\nThis is an internal Meteor package.",
"exports": [
{
"name": "Base64",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)"
},
"releaseName": "[email protected]",
"compilerVersion": "meteor/32",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1563209871548/WWsauXE8B9/base64-1.0.12-source.tgz",
"tarballHash": "3gf50Fijtwn1J+hJ86Ba1edFu3VwMNK24AqbeH5AHHQ=",
"treeHash": "nxSRufgj5AggqG37swWZn5XrT2NqrOpzfQ6oxwQSu/I="
},
"readme": {
"hash": "IQPN7LdWeBmeg2SCPT7CmNL+5lfl0z25PogOmPinIfQ=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1563209871548/uuBpxo9jQ7/base64-1.0.12-readme.md"
},
"lastUpdated": "2019-07-15T16:57:52.184Z",
"published": "2019-07-15T16:57:52.184Z"
},
"ecmascript": "0.15.1-(top level)"
},
"releaseName": "[email protected]",
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1576844026369/BPGQaHtAhp/ejson-1.1.1-source.tgz",
"tarballHash": "X8pQKJU19BQNZdTIJUIEb6cop35QFwQA84/t1uSwIsY=",
"treeHash": "PMVviedyaPjovbDJ/qPLOa7eNtx0gQ2fYerm3Kpj72A="
},
"readme": {
"hash": "4cm+pOKQYPI9puSlGenb4L8xmOx2hbxkC5zVTQULQwk=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1576844026369/PdoWD9H947/ejson-1.1.1-readme.md"
},
"lastUpdated": "2019-12-20T12:13:49.263Z",
"published": "2019-12-20T12:13:49.263Z"
}
},
"releaseName": "[email protected]",
"compilerVersion": "meteor/30",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1520451166847/TWerhgDbQF/check-1.3.1-source.tgz",
"tarballHash": "HhUgYUh+q2oMFLc+9a73FG4utuh+AXsVafisYM0ttYw=",
"treeHash": "GtObwRw81lMP+/WMuwl16crML5YOUOuT3RrYjh2no8E="
},
"readme": {
"hash": "uZlpB+mcJ6lG3vemNZqre2SBlXF7sZ6Ra3EYAr6Md4Q=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1520451166847/wjyXz2T9rM/check-1.3.1-readme.md"
},
"lastUpdated": "2018-03-07T19:32:47.481Z",
"published": "2018-03-07T19:32:47.481Z"
},
"ddp": {
"_id": "KAe6XSG6yHZ8ByPK4",
"packageName": "ddp",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.4.0",
"earliestCompatibleVersion": "1.0.0",
"description": "Meteor's latency-compensated distributed data framework",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/ddp) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/ddp)\n***\n\nDDP (Distributed Data Protocol) is the stateful websocket protocol\nthat Meteor uses to communicate between the client and the server. For\nmore information about DDP, see the [DDP project\npage](https://www.meteor.com/ddp) or the [DDP\nspecification](https://github.com/meteor/meteor/blob/devel/packages/ddp/DDP.md).\n\nThis package is used by nearly every Meteor application and provides a\nfull implementation of DDP in JavaScript. API documentation is on the\n[main Meteor documentation page](http://docs.meteor.com/), under\n\"Publish and subscribe\", \"Methods\", and \"Server connections\". Note in\nparticular that clients can use\n[`DDP.connect`](http://docs.meteor.com/#ddp_connect) to open a DDP\nconnection to any DDP service on the Internet.",
"exports": [
{
"name": "DDP",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
},
{
"name": "DDPServer",
"architectures": [
"os"
]
}
],
"dependencies": {
"ddp-client": {
"_id": "bpAtAyjmcmBSskRfF",
"packageName": "ddp-client",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "2.4.0",
"earliestCompatibleVersion": "2.0.0",
"description": "Meteor's latency-compensated distributed data client",
"exports": [
{
"name": "DDP",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"callback-hook": "1.3.0-(expanded above)",
"check": "1.3.1-(expanded above)",
"ddp-common": {
"_id": "QGMEa8hmKNCsRHkDQ",
"packageName": "ddp-common",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.4.0",
"earliestCompatibleVersion": "1.0.0",
"description": "Code shared beween ddp-client and ddp-server",
"exports": [
{
"name": "DDPCommon",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
}
],
"dependencies": {
"check": "1.3.1-(expanded above)",
"ecmascript": "0.15.1-(top level)",
"ejson": "1.1.1-(expanded above)",
"random": {
"_id": "JoDuZSSCmXSm5YuxP",
"packageName": "random",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "1.2.0",
"earliestCompatibleVersion": "1.0.0",
"description": "Random number generator and utilities",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/random) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/random)\n***\n\nThe `random` package provides several functions for generating random\nnumbers. It uses a cryptographically strong pseudorandom number generator when\npossible, but falls back to a weaker random number generator when\ncryptographically strong randomness is not available (on older browsers or on\nservers that don't have enough entropy to seed the cryptographically strong\ngenerator).\n\n- `Random.id([n])` - Returns a unique identifier, such as `\"Jjwjg6gouWLXhMGKW\"`, that is\nlikely to be unique in the whole world. The optional argument `n`\nspecifies the length of the identifier in characters and defaults to 17.\n\n- `Random.secret([n])` - Returns a random string of printable characters with 6 bits of\nentropy per character. The optional argument `n` specifies the length of\nthe secret string and defaults to 43 characters, or 256 bits of\nentropy. Use `Random.secret` for security-critical secrets that are\nintended for machine, rather than human, consumption.\n\n- `Random.fraction()` - Returns a number between 0 and 1, like `Math.random`.\n\n- `Random.choice(arrayOrString)` - Returns a random element of the given array or string.",
"exports": [
{
"name": "Random",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)"
},
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1584032760742/X7bMkr7oPS/random-1.2.0-source.tgz",
"tarballHash": "hx/F/sfQQret+CBpiggKhKZBFS0JVAcFlIaiTU1pFos=",
"treeHash": "nEOhPqYr1ysdzEWfdWVFu8Cm7lNq9/BPCoIsWZcESBM="
},
"readme": {
"hash": "yVejcGAV+MAQH11dNhgL2TGHAoT7HgzjX5oRhSss3H4=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1584032760743/2v2f69zEJc/random-1.2.0-readme.md"
},
"lastUpdated": "2020-03-12T17:06:02.988Z",
"published": "2020-03-12T17:06:02.988Z"
},
"retry": {
"_id": "5qn67ijhTu9H9Y2oc",
"packageName": "retry",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.1.0",
"earliestCompatibleVersion": "1.0.0",
"description": "Retry logic with exponential backoff",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/retry) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/retry)\n***\n\nThis is an internal Meteor package.",
"exports": [
{
"name": "Retry",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)",
"random": "1.2.0-(expanded above)"
},
"compilerVersion": "meteor/30",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1516481963231/vuP7aR4aN9/retry-1.1.0-source.tgz",
"tarballHash": "CCeDhy8KK0ZfmFkghhZfIlMp0garDHXCgL8KuZ3lbxI=",
"treeHash": "vmrF7KzMoZAvWtcMBpnxrh6aYNCImD38TQ3OpIC3rSY="
},
"readme": {
"hash": "MUloTiVe2NWRY3WutvsW9xa4kB3bUkOMwlp0tshuml4=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1516481963231/LuHJk9Lau8/retry-1.1.0-readme.md"
},
"lastUpdated": "2018-01-20T20:59:23.704Z",
"published": "2018-01-20T20:59:23.704Z"
},
"tracker": "1.2.0-(top level)"
},
"compilerVersion": "meteor/30",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1516481908526/YpWw4DJyoD/ddp-common-1.4.0-source.tgz",
"tarballHash": "2IYqTk/0nCoiefd+JndC2EY3JCsIseL1RReg+JXbB3Q=",
"treeHash": "qJqa+YGGLw+Xsh2/u1NuGHlJQ/Vc+RgpQ14DIkH/mCo="
},
"readme": {
"hash": "47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1516481908526/JDQxgY9bEJ/ddp-common-1.4.0-readme.md"
},
"lastUpdated": "2018-01-20T20:58:28.960Z",
"published": "2018-01-20T20:58:28.960Z"
},
"diff-sequence": {
"_id": "4Ec3h78xabni5aK7M",
"packageName": "diff-sequence",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.1.1",
"earliestCompatibleVersion": "1.0.0",
"description": "An implementation of a diff algorithm on arrays and objects.",
"exports": [
{
"name": "DiffSequence",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)",
"ejson": "1.1.1-(expanded above)"
},
"releaseName": "[email protected]",
"compilerVersion": "meteor/31",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1542073585665/FuNcSwsTQ5/diff-sequence-1.1.1-source.tgz",
"tarballHash": "NvRiPGMEUJwtWlmEz1qxIdviyxciyhmF6YPGBcqqagM=",
"treeHash": "OsSzoeFeNIQhDLjSnhtwhaYs4ATIIuRcJ3Zioc2tno4="
},
"readme": {
"hash": "47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1542073585666/7iKXg9yZCP/diff-sequence-1.1.1-readme.md"
},
"lastUpdated": "2018-11-13T01:46:26.286Z",
"published": "2018-11-13T01:46:26.286Z"
},
"ecmascript": "0.15.1-(top level)",
"ejson": "1.1.1-(expanded above)",
"id-map": {
"_id": "YWsc2T9JfyuEozpW9",
"packageName": "id-map",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.1.0",
"earliestCompatibleVersion": "1.0.0",
"description": "Dictionary data structure allowing non-string keys",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/id-map) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/id-map)\n***\n\nThis is an internal Meteor package.",
"exports": [
{
"name": "IdMap",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)",
"ejson": "1.1.1-(expanded above)"
},
"compilerVersion": "meteor/30",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1516481933853/uJDvACfhay/id-map-1.1.0-source.tgz",
"tarballHash": "sSr0s9yPteEzWuDEpsdXkE9Vs43ZK3p1m00gjUjRK3o=",
"treeHash": "DsHotWWbu+HKPCEo+XSkmgvgimXUGAlZhDACse259E0="
},
"readme": {
"hash": "hOu9uuUddQxIW0033VNtV1d6HzybIe4EpLjXlRblKAw=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1516481933853/5Ezp6huJ5u/id-map-1.1.0-readme.md"
},
"lastUpdated": "2018-01-20T20:58:54.269Z",
"published": "2018-01-20T20:58:54.269Z"
},
"mongo-id": {
"_id": "hynXMKkXZ5uRvzrt6",
"packageName": "mongo-id",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.0.7",
"earliestCompatibleVersion": "1.0.0",
"description": "JS simulation of MongoDB ObjectIDs",
"exports": [
{
"name": "MongoID",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)",
"ejson": "1.1.1-(expanded above)",
"id-map": "1.1.0-(expanded above)",
"random": "1.2.0-(expanded above)"
},
"releaseName": "[email protected]",
"compilerVersion": "meteor/30",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1520451189615/2LiamukWnS/mongo-id-1.0.7-source.tgz",
"tarballHash": "MItTHJd9yjD6ghvAnHOVvYgfhEeJ+fZboejf6cC8NF4=",
"treeHash": "fo5DrbraqxDdbTUJogaLa0+5YeP2ZIQFaRzSFCMWbmo="
},
"readme": {
"hash": "47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1520451189615/mt9ujF4E4d/mongo-id-1.0.7-readme.md"
},
"lastUpdated": "2018-03-07T19:33:10.242Z",
"published": "2018-03-07T19:33:10.242Z"
},
"random": "1.2.0-(expanded above)",
"reload": {
"_id": "r2dg7be99oWFrLmB5",
"packageName": "reload",
"publishedBy": {
"username": "renanccastro",
"id": "cojbEuA36A85ZbBDH"
},
"version": "1.3.1",
"earliestCompatibleVersion": "1.0.0",
"description": "Reload the page while preserving application state.",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/reload) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/reload)\n***\n\nThe `reload` package handles the process of *migrating* an app:\nserializing the app's state, then shutting down and restarting the app\n(for example, to load updated client code or to move the client\nsession from one JavaScript virtual machine to another), and finally\nrestoring its state.\n\nPackages that want to participate in the migration process register\nwith `reload`. They can make the migration process wait until they are\nready and include whatever state they may possess in the serialization\nand deserialization process.\n\n`reload` is part of the [Webapp](https://github.com/meteor/meteor/tree/master/packages/webapp) project.",
"exports": [
{
"name": "Reload",
"architectures": [
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)"
},
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/cojbEuA36A85ZbBDH/1607092942668/KPw5knGYCG/reload-1.3.1-source.tgz",
"tarballHash": "S00SX6DRFseRqlVqXTM6KnyJQVC/JLvMPdFteAZk310=",
"treeHash": "qzB98R9O0DPtJ1HaUPuLstfnmdu0mAnvnMU0Y2GiAU8="
},
"readme": {
"hash": "94USd0+VoqeMMzykmnY1HhfgUPlkawLvDAoxfxnnjDk=",
"url": "https://warehouse.meteor.com/readme/cojbEuA36A85ZbBDH/1607092942668/aiLpkY5pPc/reload-1.3.1-readme.md"
},
"lastUpdated": "2020-12-04T14:42:24.403Z",
"published": "2020-12-04T14:42:24.403Z"
},
"retry": "1.1.0-(expanded above)",
"socket-stream-client": {
"_id": "g7kJDewisxPr4t2rT",
"packageName": "socket-stream-client",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "0.3.1",
"earliestCompatibleVersion": "0.0.0",
"description": "Provides the ClientStream abstraction used by ddp-client",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/socket-stream-client) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/socket-stream-client)\n***\n\nThis package provides the `ClientStream` abstraction used by the\n[`ddp-client`](https://github.com/meteor/meteor/tree/devel/packages/ddp-client)\npackage.",
"exports": [],
"dependencies": {
"ecmascript": "0.15.1-(top level)",
"modern-browsers": {
"_id": "5tYYk9scoTatdPQzt",
"packageName": "modern-browsers",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "0.1.5",
"earliestCompatibleVersion": "0.0.0",
"description": "API for defining the boundary between modern and legacy JavaScript clients",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/modern-browsers) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/modern-browsers)\n***\n\nAPI for defining the boundary between modern and legacy JavaScript\nclients, with runtime support for choosing between the `web.browser`",
"exports": [],
"dependencies": {
"modules": {
"_id": "Ju7PYAr9YBufvHfY7",
"packageName": "modules",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "0.16.0",
"earliestCompatibleVersion": "0.0.0",
"description": "CommonJS module system",
"longDescription": "Using JavaScript modules in Meteor\r\nES2015 module support for Meteor\r\n\r\nRead more at https://docs.meteor.com/packages/modules.html\r",
"exports": [
{
"name": "meteorInstall",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
},
{
"name": "meteorBabelHelpers",
"architectures": [
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"modules-runtime": {
"_id": "9NKRzLHBnQDtC9z9C",
"packageName": "modules-runtime",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "0.12.0",
"earliestCompatibleVersion": "0.0.0",
"description": "CommonJS module system",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/modules-runtime) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/modules-runtime)\n***\n\nThis package implements the `meteorInstall` function that is used and\nre-exported by the `modules` package. Do not depend directly on this\npackage (unless you know what you're doing); depend instead on the",
"exports": [
{
"name": "meteorInstall",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"meteor": {
"constraint": "1.9.3",
"references": [
{
"arch": "os"
},
{
"arch": "web.browser"
},
{
"arch": "web.browser.legacy"
},
{
"arch": "web.cordova"
}
]
}
},
"git": "https://github.com/benjamn/install",
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1578526132532/kAc7KB2u25/modules-runtime-0.12.0-source.tgz",
"tarballHash": "yJ5cz9J/Qt2+WAQoS5aL7SH/z94kW/y+b5Ztwmf3UGQ=",
"treeHash": "FnkbyXISYTIaeF5rb2x/a3mfPkW1zYUj8XTnhFI4ZNY="
},
"readme": {
"hash": "gr7QTb3EN4B+WgYo1Xq/Mt8eZpVb5MtSIUkTkWl3UTE=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1578526132532/ZTGj7irzza/modules-runtime-0.12.0-readme.md"
},
"lastUpdated": "2020-01-08T23:28:53.007Z",
"published": "2020-01-08T23:28:53.007Z"
}
},
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1611145874527/BPZA2c3WRz/modules-0.16.0-source.tgz",
"tarballHash": "K7D+RiX6sCR/7iBsZv+d3RCjg096ZdLzjDxS2xpSuvw=",
"treeHash": "yaBCZzZQyJvl3w+850ZdBiKpI+V5+y5cP6eHNaYeqQo="
},
"readme": {
"hash": "TzyaOqdmmL7z4HKZ34DnrrquEwx/mXkh60EWveew7Is=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1611145874527/mMRjs7aYAA/modules-0.16.0-readme.md"
},
"lastUpdated": "2021-01-20T12:31:17.226Z",
"published": "2021-01-20T12:31:17.226Z"
}
},
"releaseName": "[email protected]",
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1578675952028/w3F4AZNauj/modern-browsers-0.1.5-source.tgz",
"tarballHash": "ptb+q1nEbCWnoga7cdoDCecLNQYgL+vdmX4jh8cAliQ=",
"treeHash": "9/RYN6HpS20bELvFggWeeHBcGKOnhY6NI96AxOYGExk="
},
"readme": {
"hash": "h73MvUX24PUtxIC5MjYQosS0LlquncFXS97bhnkyd1Q=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1578675952029/KRNeGpCviL/modern-browsers-0.1.5-readme.md"
},
"lastUpdated": "2020-01-10T17:05:52.777Z",
"published": "2020-01-10T17:05:52.777Z"
},
"retry": "1.1.0-(expanded above)"
},
"releaseName": "[email protected]",
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1595016660119/SmKhLkGQvb/socket-stream-client-0.3.1-source.tgz",
"tarballHash": "tTKCjRFjkAUyWdwceexTVsoErfdeLDn2/jaT7FdVyDQ=",
"treeHash": "o1qrt1G4ki660e2cOT4JFEzoGTxHXkKdISt3GjOX/zY="
},
"readme": {
"hash": "TsH0m7BrM8C7RQyohss9EPwow0GWG+hzIxH2hdCzQq0=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1595016660119/HyKkC5xs7M/socket-stream-client-0.3.1-readme.md"
},
"lastUpdated": "2020-07-17T20:11:03.347Z",
"published": "2020-07-17T20:11:03.347Z"
},
"tracker": "1.2.0-(top level)"
},
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1611145809350/jxTETjv65w/ddp-client-2.4.0-source.tgz",
"tarballHash": "4mOt4jLlwEtcGs2pNrO4UbMYMtADF4d4VWEZaZ3WKOA=",
"treeHash": "wRFWvNxAbEWMBwYYh6b3AH83Akp5dALU39UN2iJD4U0="
},
"readme": {
"hash": "47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1611145809350/jDYiwYGWPh/ddp-client-2.4.0-readme.md"
},
"lastUpdated": "2021-01-20T12:30:12.922Z",
"published": "2021-01-20T12:30:12.922Z"
},
"ddp-server": {
"_id": "nTxQDs5ortpMyfr72",
"packageName": "ddp-server",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "2.3.2",
"earliestCompatibleVersion": "2.0.0",
"description": "Meteor's latency-compensated distributed data server",
"exports": [
{
"name": "DDPServer",
"architectures": [
"os"
]
}
],
"dependencies": {
"callback-hook": "1.3.0-(expanded above)",
"check": "1.3.1-(expanded above)",
"ddp-client": "2.4.0-(expanded above)",
"ddp-common": "1.4.0-(expanded above)",
"diff-sequence": "1.1.1-(expanded above)",
"ecmascript": "0.15.1-(top level)",
"ejson": "1.1.1-(expanded above)",
"mongo-id": "1.0.7-(expanded above)",
"random": "1.2.0-(expanded above)",
"retry": "1.1.0-(expanded above)",
"routepolicy": {
"_id": "As3PEoMHsWRCLZien",
"packageName": "routepolicy",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.1.0",
"earliestCompatibleVersion": "1.0.0",
"description": "route policy declarations",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/routepolicy) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/routepolicy)\n***\n\nRoutePolicy, part of [Webapp](https://github.com/meteor/meteor/tree/master/packages/webapp), is a\nlow-level API for declaring the offline access semantics that apply to\nportions of the app's URL space. This is information is necessary when\ngenerating HTML5 Appcache manifests.\n\nFor example, [DDP](https://www.meteor.com/ddp) uses sockjs to emulate\nwebsockets when they are not available. sockjs emulates websockets\nusing HTTP long polling, and it uses URLs under `/sockjs` to perform\nthis long polling. So the [ddp](https://atmospherejs.com/meteor/ddp)\npackage uses RoutePolicy to declare that the `/sockjs` route is of\ntype \"network\" and should always be fetched live from the Internet and\nnever included in the appcache.\n\nFor more information, see the comments in the source.",
"exports": [
{
"name": "RoutePolicy",
"architectures": [
"os"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)",
"underscore": {
"_id": "PYCnvHQrLnrgT7Wih",
"packageName": "underscore",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.0.10",
"earliestCompatibleVersion": "1.0.0",
"description": "Collection of small helpers: _.map, _.each, ...",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/underscore) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/underscore)\n***\n\nUnderscore.js is a popular library that provides various utility functions to\nsimplify processing arrays, objects and functions.\n\nTo learn more about underscore, see\n[the underscore project site](http://underscorejs.org/).",
"exports": [
{
"name": "_",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
}
],
"dependencies": {
"meteor": {
"constraint": "1.6.0",
"references": [
{
"arch": "os",
"unordered": true
},
{
"arch": "web.browser",
"unordered": true
},
{
"arch": "web.cordova",
"unordered": true
}
]
}
},
"compilerVersion": "meteor/24",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1477416623560/vZx9dJH8Fb/underscore-1.0.10-source.tgz",
"tarballHash": "PAZgVfrGWo5SUFq8wslkltb6uUa61oCL/jIDLSEOj00=",
"treeHash": "PmeLq4P6yDYKtjsyNPgaLN6uQsJjAc2Mr97nflYgxmg="
},
"readme": {
"hash": "L4hHk1LlfHwa88AFf35UHzV0WP+/db3fB8FXQVtX4S4=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1477416623560/7ZDn7CJu2C/underscore-1.0.10-readme.md"
},
"lastUpdated": "2016-10-25T17:30:25.075Z",
"published": "2016-10-25T17:30:25.075Z"
},
"webapp": {
"_id": "3WBsvcznNeCYZMZPq",
"packageName": "webapp",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "1.10.1",
"earliestCompatibleVersion": "1.0.0",
"description": "Serves a Meteor app over HTTP",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/webapp) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/webapp)\n***\n\nThe `webapp` package contains the core functionality that makes a\nMeteor project into a web application. It is a \"value added HTTP\nserver\" that includes not just a web server, but also advanced app\nserving functionality like over-the-air mobile app updates and HTML5\nAppcache support. For more information, see the [Webapp project\npage](https://github.com/meteor/meteor/tree/master/packages/webapp).",
"exports": [
{
"name": "WebApp",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
},
{
"name": "WebAppInternals",
"architectures": [
"os"
]
},
{
"name": "main",
"architectures": [
"os"
]
}
],
"dependencies": {
"boilerplate-generator": {
"_id": "eQ739GfxEuL5jfpQF",
"packageName": "boilerplate-generator",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "1.7.1",
"earliestCompatibleVersion": "1.0.0",
"description": "Generates the boilerplate html from program's manifest",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/boilerplate-generator) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/boilerplate-generator)\n***\n\nThis is an internal Meteor package.",
"exports": [
{
"name": "Boilerplate",
"architectures": [
"os"
]
}
],
"dependencies": {
"ecmascript": "0.15.1-(top level)",
"underscore": {
"_id": "PYCnvHQrLnrgT7Wih",
"packageName": "underscore",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "1.0.10",
"earliestCompatibleVersion": "1.0.0",
"description": "Collection of small helpers: _.map, _.each, ...",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/underscore) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/underscore)\n***\n\nUnderscore.js is a popular library that provides various utility functions to\nsimplify processing arrays, objects and functions.\n\nTo learn more about underscore, see\n[the underscore project site](http://underscorejs.org/).",
"exports": [
{
"name": "_",
"architectures": [
"os",
"web.browser",
"web.cordova"
]
}
],
"dependencies": {
"meteor": {
"constraint": "1.6.0",
"references": [
{
"arch": "os",
"unordered": true
},
{
"arch": "web.browser",
"unordered": true
},
{
"arch": "web.cordova",
"unordered": true
}
]
}
},
"compilerVersion": "meteor/24",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1477416623560/vZx9dJH8Fb/underscore-1.0.10-source.tgz",
"tarballHash": "PAZgVfrGWo5SUFq8wslkltb6uUa61oCL/jIDLSEOj00=",
"treeHash": "PmeLq4P6yDYKtjsyNPgaLN6uQsJjAc2Mr97nflYgxmg="
},
"readme": {
"hash": "L4hHk1LlfHwa88AFf35UHzV0WP+/db3fB8FXQVtX4S4=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1477416623560/7ZDn7CJu2C/underscore-1.0.10-readme.md"
},
"lastUpdated": "2016-10-25T17:30:25.075Z",
"published": "2016-10-25T17:30:25.075Z"
}
},
"releaseName": "[email protected]",
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1599669270213/hanmzHag5E/boilerplate-generator-1.7.1-source.tgz",
"tarballHash": "xEvg5/+U7KYq0bPq0EowEljdDf2qr6r0RR3QWJSlq10=",
"treeHash": "LxNsxuqyX6z7mhH9GRuFT9tmgSmCLKzjII72fmVCrLY="
},
"readme": {
"hash": "D9gX+Wjzmeug53o2GtkokyJw6qfYeLsh5VNzHfFydHE=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1599669270213/AAi96aEjjH/boilerplate-generator-1.7.1-readme.md"
},
"lastUpdated": "2020-09-09T16:34:32.668Z",
"published": "2020-09-09T16:34:32.668Z"
},
"ecmascript": "0.15.1-(top level)",
"inter-process-messaging": {
"_id": "vR4wKLPrKwS2zHodH",
"packageName": "inter-process-messaging",
"publishedBy": {
"username": "filipenevola",
"id": "ttiPaydfDZjCARxAH"
},
"version": "0.1.1",
"earliestCompatibleVersion": "0.0.0",
"description": "Support for sending messages from the build process to the server process",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/inter-process-messaging) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/inter-process-messaging)\n***\n\nSupport for sending messages between a parent process and a child process\nthat was spawned (by the parent) with [an IPC\nchannel](https://nodejs.org/api/child_process.html#child_process_options_stdio).",
"exports": [],
"dependencies": {
"modules": "0.16.0-(expanded above)",
"promise": {
"_id": "vWywkMHTCe2xXnTgh",
"packageName": "promise",
"publishedBy": {
"username": "benjamn",
"id": "Aw5o5YMrAYo9bGgRY"
},
"version": "0.11.2",
"earliestCompatibleVersion": "0.0.0",
"description": "ECMAScript 2015 Promise polyfill with Fiber support",
"longDescription": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/promise) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/promise)\n***\n\nECMAScript 2015 Promise polyfill with Fiber support\n\nThe static methods `Promise.async` and `Promise.await` implement the\nrelaxed `async` and `await` functions proposed in this talk: [Why Fibers",
"exports": [
{
"name": "Promise",
"architectures": [
"os",
"web.browser",
"web.browser.legacy",
"web.cordova"
]
}
],
"dependencies": {
"modern-browsers": "0.1.5-(expanded above)",
"modules": "0.16.0-(expanded above)"
},
"git": "https://github.com/meteor/promise",
"releaseName": "[email protected]",
"compilerVersion": "meteor/31",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/Aw5o5YMrAYo9bGgRY/1544117582931/8jJBkoyKsp/promise-0.11.2-source.tgz",
"tarballHash": "EiygF68EjOlWGsuOMl9YlnM/FjIrQqCnfqvV7VD1g3Y=",
"treeHash": "7P1ZwNWX6Hs5V9dU6HfBGukH6y5ruL89ru0oZOEESos="
},
"readme": {
"hash": "js03/h/vrEiDtcOQvN58XcTgfaoDZuHxm2odj6kSY5g=",
"url": "https://warehouse.meteor.com/readme/Aw5o5YMrAYo9bGgRY/1544117582931/3nYA6mgLyG/promise-0.11.2-readme.md"
},
"lastUpdated": "2018-12-06T17:33:03.742Z",
"published": "2018-12-06T17:33:03.742Z"
}
},
"compilerVersion": "meteor/34",
"ecRecordFormat": "1.0",
"source": {
"url": "https://warehouse.meteor.com/sources/ttiPaydfDZjCARxAH/1584032684109/5TmXvAgQnL/inter-process-messaging-0.1.1-source.tgz",
"tarballHash": "2eZTNDr3ysXh8YjJ9EIRid9T6s2AnEXVFgWI1iEilRI=",
"treeHash": "qi46egIsOHdUyGqkhsUNpuPLvhL95X5tnu/A56waN9g="
},
"readme": {
"hash": "NKvxKGYCRQtraGOv23HJZORUt2/NXLUKmWzVNGtUzmI=",
"url": "https://warehouse.meteor.com/readme/ttiPaydfDZjCARxAH/1584032684109/ocYM7tdioX/inter-process-messaging-0.1.1-readme.md"
},
"lastUpdated": "2020-03-12T17:04:45.767Z",
"published": "2020-03-12T17:04:45.767Z"