-
Notifications
You must be signed in to change notification settings - Fork 71
/
catalog.json
1113 lines (1113 loc) · 37.4 KB
/
catalog.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
{
"!": "This file is generated by 'tusk create-catalog', copied from '.tusk', and committed only so that it may be downloaded from Github with 'tusk update'.",
"version": 1,
"packages": {
"narwhal": {
"name": "narwhal",
"description": "A general purpose JavaScript platform",
"keywords": [
"javascript",
"engine",
"platform"
],
"author": "Tom Robinson (http://tlrobinson.net/)",
"contributors": [
"Tom Robinson (http://tlrobinson.net/) <[email protected]>",
"Kris Kowal (http://askawizard.blogspot.com/) <[email protected]>",
"George Moschovitis (http://blog.gmosx.com/)",
"Kevin Dangoor (http://www.blueskyonmars.com/)",
"Hannes Wallnöfer",
"Sébastien Pierre",
"Irakli Gozalishvili (http://rfobic.wordpress.com/)",
"Christoph Dorn (http://www.christophdorn.com/)",
"Zach Carter",
"Nathan L. Smith",
"Jan Varwig",
"Mark Porter",
"Isaac Z. Schlueter (http://blog.izs.me/)",
"Kris Zyp (http://www.sitepen.com/blog/author/kzyp/)",
"Nathan Stott (http://nathan.whiteboard-it.com) <[email protected]>",
"Toby Ho (http://tobyho.com) <[email protected]>"
],
"lib": [
"lib"
],
"lean": [
"lib",
"engines"
],
"githubName": "narwhal",
"type": "zip",
"location": "http://github.com/tlrobinson/narwhal/zipball/master"
},
"narwhal-jsc": {
"name": "narwhal-jsc",
"dependencies": [
"narwhal"
],
"engine": "jsc",
"author": "Tom Robinson (http://tlrobinson.net/)",
"description": "JavaScriptCore engine support for Narwhal",
"keywords": [
"narwhal",
"engine",
"jsc",
"javascriptcore",
"webkit"
],
"githubName": "narwhal-jsc",
"type": "zip",
"location": "http://github.com/tlrobinson/narwhal-jsc/zipball/master"
},
"narwhal-v8": {
"name": "narwhal-v8",
"dependencies": [
"narwhal"
],
"engine": "v8",
"author": "Tom Robinson (http://tlrobinson.net/)",
"description": "V8 engine support for Narwhal",
"keywords": [
"narwhal",
"engine",
"v8",
"google"
],
"githubName": "narwhal-v8",
"type": "zip",
"location": "http://github.com/tlrobinson/narwhal-v8/zipball/master"
},
"narwhal-johnson": {
"name": "narwhal-johnson",
"dependencies": [
"narwhal"
],
"engine": "johnson",
"author": "Tom Robinson (http://tlrobinson.net/)",
"description": "Johnson (Ruby-JavaScript bridge, using SpiderMonkey) engine support for Narwhal",
"keywords": [
"narwhal",
"engine",
"johnson",
"ruby",
"spidermonkey",
"mozilla"
],
"githubName": "narwhal-johnson",
"type": "zip",
"location": "http://github.com/tlrobinson/narwhal-johnson/zipball/master"
},
"narwhal-xulrunner": {
"name": "narwhal-xulrunner",
"engine": "xulrunner",
"dependencies": [
"narwhal"
],
"author": "Irakli Gozalishvili (http://rfobic.wordpress.com/)",
"description": "XULRunner engine support for Narwhal",
"keywords": [
"narwhal",
"engine",
"xulrunner",
"mozilla",
"extension"
],
"githubName": "narwhal-xulrunner",
"type": "zip",
"location": "http://github.com/Gozala/narwhal-xulrunner/zipball/master"
},
"narwhal-jaxer": {
"name": "narwhal-jaxer",
"author": "Nathan L. Smith <[email protected]>",
"keywords": [
"jaxer",
"engine",
"mozilla",
"spidermonkey",
"embedded"
],
"engine": "jaxer",
"dependencies": [
"narwhal-xulrunner",
"narwhal"
],
"githubName": "narwhal-jaxer",
"type": "zip",
"location": "http://github.com/smith/narwhal-jaxer/zipball/master"
},
"narwhal-moar-monkeys": {
"name": "narwhal-moar-monkeys",
"preload": "global-moar-monkeys",
"githubName": "narwhal-moar-monkeys",
"type": "zip",
"location": "http://github.com/kriskowal/narwhal-moar-monkeys/zipball/master"
},
"jack": {
"name": "jack",
"dependencies": [
"narwhal"
],
"jars": [
"jars/simple-4.1.10.jar"
],
"author": "Tom Robinson (http://tlrobinson.net/)",
"description": "A library of JSGI middleware, handlers, and utilities, based on Rack",
"keywords": [
"web server",
"server",
"jsgi",
"rack",
"wsgi"
],
"version": "0.1.2",
"githubName": "jack",
"type": "zip",
"location": "http://github.com/tlrobinson/jack/zipball/master"
},
"nitro": {
"name": "nitro",
"description": "A Web Application Framework",
"keywords": [
"web",
"framework",
"jsgi"
],
"author": "George Moschovitis",
"email": "[email protected]",
"dependencies": [
"jack",
"template"
],
"contributors": [
"Kris Kowal (http://askawizard.blogspot.com/)"
],
"lib": "lib",
"main": "examples/simple/jackconfig",
"lean": [
"lib"
],
"githubName": "nitro",
"type": "zip",
"location": "http://github.com/gmosx/nitro/zipball/master"
},
"chiron": {
"author": "Kris Kowal",
"description": "A system of interoperable JavaScript modules, including a Pythonic type system and types",
"keywords": [
"type system",
"types",
"interoperable",
"events",
"caching",
"cache"
],
"contributors": [
"Steven Levithan"
],
"dependencies": [],
"githubName": "chiron",
"type": "zip",
"location": "http://github.com/kriskowal/chiron/zipball/master"
},
"narcissus": {
"author": "Brendan Eich <[email protected]>",
"description": "JavaScript implemented in JavaScript",
"keywords": [
"javascript",
"interpreter",
"parser"
],
"contributors": [
"Kris Kowal <[email protected]>",
"Andy Chu <[email protected]>"
],
"license": "MPL 1.1/GPL 2.0/LGPL 2.1",
"githubName": "narcissus",
"type": "zip",
"location": "http://github.com/kriskowal/narcissus/zipball/master"
},
"creolejs": {
"author": "Ivan Fomichev",
"description": "A JavaScript implementation of the CreoleWiki language, for browsers.",
"keywords": [
"browser",
"markup",
"wiki",
"creole",
"javascript",
"dom-based"
],
"contributors": [
"Chris Purcell",
"Kris Kowal"
],
"js": "src",
"githubName": "creolejs",
"type": "zip",
"location": "http://github.com/kriskowal/creolejs/zipball/master"
},
"browserjs": {
"name": "browserjs",
"version": "0.1",
"dependencies": [
"narwhal"
],
"author": "Tom Robinson (http://tlrobinson.net/)",
"description": "A simulated web browser environment, includes XMLHttpRequest, timeouts, console, a DOM, etc",
"keywords": [
"browser",
"web browser",
"dom",
"xmlhttprequest"
],
"githubName": "browserjs",
"type": "zip",
"location": "http://github.com/kriszyp/browserjs/zipball/master"
},
"inspec": {
"name": "inspec",
"author": "Aaron Qian (http://aaronqian.com/)",
"url": "http://github.com/aq1018/inspec",
"dependencies": [
"narwhal"
],
"license": "MIT",
"description": "BDD test framwork inspired by rspec",
"keywords": [
"bdd",
"tdd",
"test framework",
"spec"
],
"githubName": "inspec",
"type": "zip",
"location": "http://github.com/aq1018/inspec/zipball/master"
},
"kupo": {
"name": "kupo_site",
"author": "Jan Varwig",
"githubName": "kupo",
"type": "zip",
"location": "http://github.com/janv/kupo/zipball/master"
},
"appengine": {
"name": "appengine",
"description": "A port of the Python AppEngine API to JavaScript",
"keywords": [
"google",
"appengine",
"cloud",
"datastore"
],
"author": "George Moschovitis",
"email": "[email protected]",
"contributors": [],
"lib": "lib",
"githubName": "appengine",
"type": "zip",
"location": "http://github.com/gmosx/appengine/zipball/master"
},
"jack-servlet": {
"name": "jack-servelet",
"dependencies": [
"narwhal",
"jack"
],
"author": "Tom Robinson (http://tlrobinson.net/)",
"description": "A Java servlet for running JSGI applications",
"keywords": [
"jack",
"java",
"servlet",
"jsgi"
],
"githubName": "jack-servlet",
"type": "zip",
"location": "http://github.com/tlrobinson/jack-servlet/zipball/master"
},
"appengine-java-sdk": {
"name": "gae",
"title": "Google App Engine Java SDK",
"description": "Java components necessary for deploying applications on Google's App Engine.",
"author": "Google",
"version": "1.2.2",
"dependencies": [
"jack-servlet",
"jack",
"narwhal"
],
"lib": [],
"type": "zip",
"location": "http://googleappengine.googlecode.com/files/appengine-java-sdk-1.2.2.zip"
},
"env": {
"githubName": "env-js",
"type": "zip",
"location": "http://github.com/kriskowal/env-js/zipball/master"
},
"template": {
"name": "template",
"description": "A simple templating engine",
"keywords": [
"template",
"text",
"json"
],
"author": "George Moschovitis",
"email": "[email protected]",
"dependencies": [],
"lib": "lib",
"githubName": "template",
"type": "zip",
"location": "http://github.com/gmosx/template/zipball/master"
},
"markdown": {
"name": "markdown",
"description": "A port of markdown to JavaScript",
"keywords": [
"markdown",
"markup"
],
"author": "John Fraser",
"contributors": [
"John Gruber",
"George Moschovitis",
"Kris Kowal"
],
"dependencies": [],
"lib": "lib",
"githubName": "markdown",
"type": "zip",
"location": "http://github.com/gmosx/markdown/zipball/master"
},
"xbin": {
"name": "xbin",
"description": "A suite of Unix command line tools for enlightened pipelines.",
"keywords": [
"cli",
"command line",
"bin",
"tools",
"enquote",
"xip",
"shuffle",
"cycle",
"nonblank",
"uncomment",
"dog"
],
"author": {
"name": "Kris Kowal",
"web": "http://cixar.com/~kris.kowal",
"email": "[email protected]"
},
"lean": [
"bin"
],
"githubName": "xbin",
"type": "zip",
"location": "http://github.com/kriskowal/xbin/zipball/master"
},
"wiky": {
"name": "wiky",
"version": "0.95",
"description": "A bidirectional Wiki markup to and from HTML converter written in JavaScript.",
"url": "http://goessner.net/articles/wiky/",
"license": "LGPL 2.1 (http://creativecommons.org/licenses/LGPL/2.1/)",
"keywords": [
"wiky",
"wiki",
"markup",
"parser",
"formatter"
],
"author": "Stefan Goessner (http://goessner.net/)",
"maintainer": "Kris Kowal (http://askawizard.blogspot.com) <[email protected]>",
"contributors": [],
"dependencies": [],
"githubName": "wiky",
"type": "zip",
"location": "http://github.com/kriskowal/wiky/zipball/master"
},
"jsdocs": {
"name": "jsdocs",
"description": "Tool for generating template-formatted, multi-page HTML (or XML, JSON, or any other text-based) documentation from commented JavaScript source code.",
"keywords": [
"jsdoc",
"documentation"
],
"author": "Irakli Gozalishvili (http://rfobic.wordpress.com/)",
"email": "[email protected]",
"lib": [
"lib"
],
"lean": [
"lib",
"engines"
],
"version": {
"label": "0.1",
"numeric": [
0,
1
],
"status": "development"
},
"license": [
"MPL 1.1",
"GPL 2.0",
"LGPL 2.1"
],
"dependencies": [
"syntax-stroop",
"seethrough"
],
"githubName": "jsdocs",
"type": "zip",
"location": "http://github.com/Gozala/jsdocs/zipball/master"
},
"syntax-stroop": {
"name": "syntax-stroop",
"description": "A syntax highlighter based on Google-code-prettify.",
"keywords": [
"syntax",
"highlight"
],
"author": "Irakli Gozalishvili (http://rfobic.wordpress.com/)",
"email": "[email protected]",
"lib": "lib",
"license": [
"Apache License, Version 2.0"
],
"dependencies": [],
"githubName": "syntax-stroop",
"type": "zip",
"location": "http://github.com/Gozala/syntax-stroop/zipball/master"
},
"seethrough": {
"name": "seethrough",
"description": "Seethrough is a simple XML/XHTML template engine for JavaScript based on E4X. It’s a port of a former project for Erlang.",
"keywords": [
"template",
"xml",
"xhtml",
"json"
],
"author": "Massimiliano Mirra (http://hyperstruct.net/)",
"contributors": [
"Irakli Gozalishvili (http://rfobic.wordpress.com/)"
],
"lib": "lib",
"license": [
"MPL 1.1",
"GPL 2.0",
"LGPL 2.1"
],
"dependencies": [],
"githubName": "seethrough",
"type": "zip",
"location": "http://github.com/Gozala/seethrough/zipball/master"
},
"jack-dav": {
"name": "jack-dav",
"dependencies": [
"narwhal",
"jack"
],
"author": "Tom Robinson (http://tlrobinson.net/)",
"description": "A JSGI compatible WebDAV server, based on RackDAV",
"keywords": [
"jack",
"webdav",
"dav",
"rackdav"
],
"githubName": "jack-dav",
"type": "zip",
"location": "http://github.com/tlrobinson/jack-dav/zipball/master"
},
"jsont": {
"name": "jsont",
"author": "Stefan Gössner (http://goessner.net/)",
"contributors": [
"Tom Robinson (http://tlrobinson.net/)"
],
"description": "JSON transforms, akin to XSLT but for JSON: http://goessner.net/articles/jsont/",
"keywords": [
"json",
"transform",
"template",
"xslt"
],
"githubName": "jsont",
"type": "zip",
"location": "http://github.com/tlrobinson/jsont/zipball/master"
},
"activejs": {
"name": "activejs",
"dependencies": [
"jack"
],
"jars": [
"jars/mysql-connector-java-5.1.8-bin.jar"
],
"author": "Aptana Inc.",
"description": "The Cross Platform JavaScript MVC, http://activejs.org/",
"githubName": "activejs",
"type": "zip",
"location": "http://github.com/tlrobinson/activejs/zipball/package"
},
"speller": {
"name": "speller",
"description": "A JavaScript spell-checker",
"author": "Panagiotis Astithas",
"keywords": [
"spell-checker",
"spelling",
"corrector"
],
"githubName": "speller",
"type": "zip",
"location": "http://github.com/past/speller/zipball/master"
},
"jake": {
"name": "jake",
"author": "Francisco Tolmasky (http://tolmasky.com/)",
"description": "A build system for CommonJS, lifted from Rake",
"keywords": [
"build",
"jake",
"rake",
"make"
],
"version": "0.1.1",
"githubName": "jake",
"type": "zip",
"location": "http://github.com/280north/jake/zipball/master"
},
"json-rpc": {
"name": "json-rpc",
"author": "Tom Robinson (http://tlrobinson.net/)",
"description": "An implementation of JSON-RPC for CommonJS, include a JSGI appliance",
"keywords": [
"json-rpc",
"rpc",
"rmi",
"jsgi"
],
"githubName": "json-rpc",
"type": "zip",
"location": "http://github.com/tlrobinson/json-rpc/zipball/master"
},
"prototype": {
"name": "prototype",
"author": "Sam Stephenson",
"maintainer": "Nathan L Smith (http://nlsmith.com/) <[email protected]>",
"url": "http://github.com/smith/prototype-asp/tree/narwhal-global",
"license": "MIT",
"description": "Prototype is a JavaScript Framework that aims to ease development of dynamic web applications. This package implements a subset of Prototype",
"keywords": [
"prototype",
"framework",
"library",
"language",
"extension"
],
"githubName": "prototype-asp",
"type": "zip",
"location": "http://github.com/smith/prototype-asp/zipball/narwhal-global"
},
"qunit": {
"name": "qunit",
"author": {
"name": "John Resig",
"email": "[email protected]",
"url": "http://ejohn.org/"
},
"maintainer": {
"name": "Jörn Zaefferer",
"email": "[email protected]",
"url": "http://bassistance.de/"
},
"url": "http://docs.jquery.com/QUnit",
"license": {
"name": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
"description": "An easy-to-use JavaScript Unit Testing framework.",
"keywords": [
"testing",
"unit",
"jquery"
],
"lib": "qunit",
"githubName": "qunit",
"type": "zip",
"location": "http://github.com/jquery/qunit/zipball/master"
},
"oauth": {
"name": "oauth",
"dependencies": [
"narwhal"
],
"jars": [],
"author": "Neville Burnell",
"description": "OAuth Library",
"keywords": [
"oauth"
],
"githubName": "oauth",
"type": "zip",
"location": "http://github.com/cloudwork/oauth/zipball/master"
},
"bogart": {
"name": "bogart",
"description": "A simple web framework",
"keywords": [
"bogart",
"framework",
"routes"
],
"author": "Nathan Stott",
"email": "[email protected]",
"dependencies": [
"jack",
"ejs"
],
"lib": "lib",
"githubName": "bogart",
"type": "zip",
"location": "http://github.com/nrstott/bogart/zipball/master"
},
"json-template": {
"name": "json-template",
"description": "Minimal but powerful templating language implemented in multiple languages.",
"keywords": [
"template",
"json"
],
"author": "Andy Chu ([email protected])",
"contributors": [
"Irakli Gozalishvili (http://rfobic.wordpress.com/)"
],
"lib": "lib",
"license": [
"Apache License 2.0"
],
"dependencies": [],
"githubName": "json-template",
"type": "zip",
"location": "http://github.com/Gozala/json-template/zipball/master"
},
"ejs": {
"name": "ejs",
"description": "Embedded JavaScript templating framework",
"keywords": [
"erb",
"ejs",
"template"
],
"author": "",
"email": "",
"dependencies": [],
"lib": "lib",
"githubName": "narwhal-ejs",
"type": "zip",
"location": "http://github.com/nrstott/narwhal-ejs/zipball/master"
},
"couchdb": {
"name": "couchdb",
"description": "API to access CouchDB servers, a schema-free database of JSON documents",
"keywords": [
"couch",
"database",
"document",
"nosql"
],
"author": "Nathan Stott",
"email": "[email protected]",
"dependencies": [
"browserjs"
],
"lib": "lib",
"githubName": "narwhal-couchdb",
"type": "zip",
"location": "http://github.com/nrstott/narwhal-couchdb/zipball/master"
},
"mongodb": {
"name": "mongodb",
"description": "API to access MongoDB, a schema-free database of JSON documents",
"keywords": [
"mongo",
"database",
"document",
"mongodb",
"db"
],
"author": "Sergi Mansilla (http://www.sergimansilla.com) <[email protected]>",
"jars": [
"jars/mongo-0.11.jar"
],
"email": "[email protected]",
"dependencies": [],
"lib": "lib",
"githubName": "narwhal-mongodb",
"type": "zip",
"location": "http://github.com/mrclash/narwhal-mongodb/zipball/master"
},
"underscore": {
"name": "underscore",
"description": "Functional programming aid for JavaScript. Works well with jQuery.",
"url": "http://documentcloud.github.com/underscore/",
"keywords": [
"util",
"functional",
"server",
"client",
"browser"
],
"author": "Jeremy Ashkenas <[email protected]>",
"maintainer": "Kris Kowal <[email protected]>",
"contributors": [],
"dependencies": [],
"lib": ".",
"githubName": "underscore",
"type": "zip",
"location": "http://github.com/kriskowal/underscore/zipball/master"
},
"silk": {
"name": "silk",
"description": "A comprehensive set of 16x16px icons.",
"license": "CC-BY-2.5 (http://creativecommons.org/licenses/by/2.5/)",
"url": "http://www.famfamfam.com/lab/icons/silk/",
"keywords": [
"media",
"icons",
"silk",
"famfamfam"
],
"author": "Mark James <[email protected]>",
"githubName": "silk",
"type": "zip",
"location": "http://github.com/kriskowal/silk/zipball/master"
},
"objective-j": {
"name": "objective-j",
"dependencies": [
"narwhal",
"browserjs",
"jake"
],
"preload": [
"objective-j/loader"
],
"description": "Objective-J and Cappuccino module",
"keywords": [
"objective-j",
"objj",
"objective j",
"cappuccino"
],
"author": "280 North, Inc. (http://280north.com/)",
"version": "0.7.9",
"contributors": [
"Francisco Tolmasky (http://tolmasky.com/)",
"Ross Boucher (http://rossboucher.com/)",
"Tom Robinson (http://tlrobinson.net/)",
"Numerous others (http://contributors.cappuccino.org/)"
],
"githubName": "objective-j-package",
"type": "zip",
"location": "http://github.com/280north/objective-j-package/zipball/master"
},
"cappuccino": {
"name": "cappuccino",
"dependencies": [
"narwhal",
"browserjs",
"jake",
"objective-j"
],
"description": "Cappuccino module",
"keywords": [
"objective-j",
"objj",
"objective j",
"capp",
"cappuccino"
],
"author": "280 North, Inc. (http://280north.com/)",
"version": "0.7.9",
"objj-frameworks": [
"Frameworks"
],
"objj-debug-frameworks": [
"Frameworks/Debug"
],
"contributors": [
"Francisco Tolmasky (http://tolmasky.com/)",
"Ross Boucher (http://rossboucher.com/)",
"Tom Robinson (http://tlrobinson.net/)",
"Numerous others (http://contributors.cappuccino.org/)"
],
"githubName": "cappuccino-package",
"type": "zip",
"location": "http://github.com/280north/cappuccino-package/zipball/master"
},
"ojunit": {
"name": "ojunit",
"dependencies": [
"narwhal",
"objective-j",
"cappuccino"
],
"author": "Tom Robinson (http://280north.com/)",
"contributors": [
"Ross Boucher",
"Martin Hacker"
],
"description": "A simple Objective-J unit test framework.",
"keywords": [
"objective-j",
"unit test",
"testing",
"test"
],
"objj-frameworks": [
"Framework"
],
"githubName": "ojunit",
"type": "zip",
"location": "http://github.com/280north/ojunit/zipball/master"
},
"mongodb": {
"name": "mongodb",
"description": "API to access MongoDB, a schema-free database of JSON documents",
"keywords": [
"mongo",
"database",
"document",
"mongodb",
"db"
],
"author": "Sergi Mansilla (http://www.sergimansilla.com) <[email protected]>",
"jars": [
"jars/mongo-0.11.jar"
],
"email": "[email protected]",
"dependencies": [],
"lib": "lib",
"githubName": "narwhal-mongodb",
"type": "zip",
"location": "http://github.com/mrclash/narwhal-mongodb/zipball/master"
},
"underscore": {
"name": "underscore",
"description": "Underscore is a utility-belt library for Javascript that provides a lot of the functional programming support.",
"url": "http://documentcloud.github.com/underscore/",
"keywords": [
"util",
"functional",
"server",
"client",
"browser"
],
"author": "Jeremy Ashkenas <[email protected]>",
"maintainer": "Kris Kowal (http://askawizard.blogspot.com/) <[email protected]>",
"contributors": [],
"dependencies": [],
"githubName": "underscore",
"type": "zip",
"location": "http://github.com/kriskowal/underscore/zipball/master"
},
"qxoo": {
"name": "qxoo",
"author": "Fabian Jakobs",
"dependencies": [],
"contributors": [],
"githubName": "qxoo",
"type": "zip",
"location": "http://github.com/fjakobs/qxoo/zipball/master"
},
"barista": {
"name": "barista",
"dependencies": [
"narwhal",
"objective-j",
"cappuccino"
],
"author": "Derek Hammer",
"description": "An automated user interface testing framework.",
"keywords": [
"objective-j",
"unit test",
"testing",
"test",
"user interface"
],
"objj-frameworks": [
"Framework"
],
"githubName": "barista",
"type": "zip",
"location": "http://github.com/hammerdr/barista/zipball/master"
},
"ojmoq": {
"name": "ojmoq",
"dependencies": [
"narwhal",
"objective-j"
],
"author": "Derek Hammer",
"description": "A mocking library for Objective-J that is inspired by the Moq project.",
"keywords": [
"objective-j",
"unit test",
"testing",
"test",
"mocking"
],
"objj-frameworks": [
"Framework"
],
"githubName": "ojmoq",
"type": "zip",
"location": "http://github.com/hammerdr/ojmoq/zipball/master"
},
"sizzle": {
"name": "sizzle",
"description": "A sizzlin' hot selector engine",
"keywords": [
"sizzle",
"selector",
"dom"
],
"author": "John Resig (http://ejohn.org)",
"maintainer": [
"George Moschovitis (http://gmosx.com)"
],
"dependencies": [],
"lib": [
"lib"
],
"lean": [
"lib"
],
"githubName": "sizzle",
"type": "zip",
"location": "http://github.com/gmosx/sizzle/zipball/master"
},
"observable": {