-
Notifications
You must be signed in to change notification settings - Fork 2
/
licenses.json
8571 lines (8571 loc) · 555 KB
/
licenses.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
["",
"{'type': 'BSD', 'url': 'http://github.com/spumko/makemehapi/raw/master/LICENSE'}",
"[{'type': 'Apache-2.0', 'url': 'https://github.com/lvidarte/node-reverse-wstunnel/blob/master/LICENSE'}]",
"APACHE2_0",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/coreflow-templates/blob/master/license.md'}",
"MIT | GPL-2",
"http://supportkit.io/terms.html",
"{'type': 'MIT', 'url': 'https://github.com/udibo/ranac/blob/master/LICENSE'}",
"Copyright (c) Sematext Group, Inc.",
"Apache - 2.0",
"N",
"{'type': 'BSD 3-Clause', 'url': 'https://github.com/fadamiao/wololo.js/blob/master/LICENSE'}",
"BSD 3-clause",
"CC-BY-3.0",
"BEER-WARE",
"Ruby Exercise",
"{'type': 'MIT', 'url': 'https://github.com/goalzen/grunt-rackspace/blob/master/LICENSE-MIT'}",
"(c) Copyright 2015 corey hadden, all rights reserved",
"MTT",
"wwww.baidu.com",
"[{'type': 'MIT', 'url': 'https://github.com/djtu-association/beanbalancer/blob/master/LICENSE'}]",
"{'type': 'MIT', 'url': 'https://github.com/dak/backbone.csp/raw/master/LICENSE'}",
"{'name': 'Apache-2.0', 'url': 'https://github.com/Synerzip/loopback-connector-sqlite/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/scaryzet/class.js/master/LICENSE'}",
"Apache License V2.0 - 2014",
"LGPL+",
"Copyright 2015 Peter Lyons LLC",
"LOVE",
"{'type': 'Public Domain', 'url': 'https://github.com/fvdm/nodejs-climatecounts/raw/master/UNLICENSE'}",
"Secure Cloud Storage",
"LGPL-2.1",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/plain-hamming/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/ansi-white/blob/master/LICENSE'}",
"SIL Open Font License 1.1",
"Copyright (c) 2012, Takashi Toyoshima <[email protected]>",
"{'type': 'MIT', 'url': 'https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT'}",
"Apache Licence 2.0",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/chrisJohn404/LabJack-process_manager/master/LICENSE'}",
"CC-BY-SA 4.0",
"CC Attribution Non-Commercial",
"pd",
"GNU General Public License v3.0",
"GNU AGPL v3",
"apache common",
"BSD3-Clause",
"{'type': 'MIT', 'url': 'https://github.com/SebastienDaniel/fieldValidator/license'}",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/loopback-sdk-angular/blob/master/LICENSE'}",
"Shen License and MIT License. See README.md for details.",
"[{'type': 'mit', 'url': 'https://github.com/gradymorgan/homegrown-nmea/blob/master/LICENSE.md'}]",
"BSD-Like",
"Appunfold",
"Unlicense (http://unlicense.org/)",
"[{'type': 'MIT', 'url': 'https://github.com/andela-aidowu/winston-firebase/blob/master/LICENSE'}]",
"MIT or GPL-2.0",
"{'type': 'MIT', 'url': 'https://github.com/scottgonzalez/sane-email-validation/raw/master/LICENSE.txt'}",
"{'type': 'MIT', 'url': 'https://github.com/Rebelizer/pellet/master/LICENSE'}",
"GPL-2 | GPL-3 | file LICENSE",
"Artistic",
"{'type': 'MIT', 'url': 'https://github.com/mkloubert/nativescript-tasks/blob/master/LICENSE'}",
"gpl-2.0",
"ZMP",
"{'type': 'ISC', 'url': 'https://github.com/santigimeno/node-ioctl/blob/master/LICENSE'}",
"TMA-FALCO",
"(c) Jerzy J. Gangi 2015. All Rights Reserved.",
"{'type': 'MIT', 'url': 'https://github.com/datetime/current-day-number/blob/master/license.md'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/defaults-deep/blob/master/LICENSE'}",
"NPOSL-3.0",
"{'type': 'MIT', 'url': 'https://github.com/nodeca/plurals-cldr/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/function-comment/blob/master/LICENSE'}",
"Intelisis",
"{'type': 'BSD-3-Clause', 'url': 'http://polymer.github.io/LICENSE.txt'}",
"{'type': 'zlib', 'url': 'http://github.com/stackgl/gl-vec2/blob/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/j140/blob/master/license.md'}",
"zlib",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/helper-concat/blob/master/LICENSE'}",
"RUBY",
"{'type': 'MIT', 'url': 'https://github.com/hybridables/hybridify/blob/master/license.md'}",
"GPLv3+",
"GPL-v3",
"Research Testing",
"{'type': 'DocuSign', 'url': 'https://raw.githubusercontent.com/docusign/DocuSign-Node-Client/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/async-exec-cmd/blob/master/license.md'}",
"{'type': 'MIT', 'url': 'https://github.com/regexps/youtube-regex/blob/master/license.md'}",
" \"modules\",",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/enable-travis/blob/master/LICENSE'}",
"3000",
"[{'type': 'Public Domain', 'url': 'http://github.com/fpereiro/hitit#license'}]",
"Copyright \u00a9 2015 Chloi Inc.",
"QE",
"GPL 2",
"Same as Ruby's",
"3-Clause BSD",
"Copyright \u00c2\u0160 2016 Udemy, Inc",
"Apache2.0",
"NO LICENSE",
"code: MIT, fonts: SIL OFL 1.1",
"{'type': 'GNU GPLv3', 'url': 'http://www.gnu.org/copyleft/gpl.html'}",
"{'type': 'MIT', 'url': 'https://github.com/allscribe/allscribe/blob/master/LICENSE'}",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/loopback-sdk-android/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/pad-left/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/akera-io/akera-web-session/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/gh-clone/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/current-week-number/blob/master/license.md'}",
"[{'type': 'MIT', 'url': 'https://github.com/gdibble/ajaxretry/blob/master/LICENSE'}]",
"https://github.com/Wirecloud/mock-applicationmashup/blob/master/LICENSE",
"two-clause BSD",
"{'type': 'MIT', 'url': 'https://github.com/isaacs/tap-assert/raw/master/LICENSE'}",
"{'type': 'MPL 2.0', 'url': 'https://raw.githubusercontent.com/mozilla/fxa-auth-mailer/master/LICENSE'}",
"{'type': 'The MIT License', 'url': 'http://www.opensource.org/licenses/mit-license.php'}",
"Copyright (c) 2017 Indegene Inc.",
"[{'type': 'MIT', 'url': 'https://github.com/Keplrs/condensrjs/blob/master/LICENSE-MIT'}]",
"unlicense",
"(MIT and GPL-2.0)",
"{'type': 'Unlicense', 'url': 'https://raw.github.com/marquee/proto/master/LICENSE'}",
"d",
"Not specified",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/goldfire/democracy.js/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'https://github.com/jstransformers/jstransformer-css/blob/master/LICENSE.md'}",
"https://github.com/superroma/testcafe-browser-natives/blob/master/LICENSE",
"MIT, 2-clause BSD",
"{'type': 'Public Domain', 'url': 'https://github.com/fvdm/nodejs-searchitunes/raw/master/UNLICENSE'}",
"{'name': 'StrongLoop', 'url': 'https://github.com/strongloop/strong-trace-transform/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/read-toml/blob/master/license.md'}",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/pec/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/CSSLint/csslint/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://github.com/insanity54/insane-openbazaar-api/raw/master/LICENSE'}",
"GPLv2 or later",
"{'type': 'mit', 'url': 'https://jakut.is/git/NAVIGATE/plain/LICENSE'}",
"LICENCE.txt",
"Boost Software License Version 1.0",
"Public domain, Open Game License",
"vky",
"GPL-3.0+ OR MIT",
"{'type': 'MIT', 'url': 'https://github.com/sleeplessinc/cache/raw/master/LICENSE'}",
"GPL/MIT",
"{'type': 'MIT', 'url': 'https://github.com/codesleuth/esandex/raw/master/LICENSE'}",
"B.S.D",
"{'type': 'MIT', 'url': 'http://github.com/shaozilee/tufu/LICENSE.md'}",
"{'name': 'MIT', 'url': 'https://github.com/sgtpepper43/taskbatcher/blob/master/LICENSE'}",
"CC BY-NC-ND",
"{'license': 'WTFPL'}",
"{'type': 'EUPL', 'url': 'https://github.com/irontec/node-asterisk-amqp/blob/master/LICENSE.txt'}",
"{'name': 'Dual Artistic-2.0/StrongLoop', 'url': 'https://github.com/strongloop/strong-express-metrics/blob/master/LICENSE.md'}",
"whatevs",
"{'name': 'Dual Artistic-2.0/StrongLoop', 'url': 'https://github.com/strongloop/loopback-component-push/blob/master/LICENSE'}",
"GNU LGPL V3",
"GNU3",
"{'type': 'MIT', 'url': 'https://github.com/jmreidy/grunt-mocha-sauce/blob/master/LICENSE-MIT'}",
"(MIT OR GPL)",
"{'name': 'BSD', 'url': 'https://github.com/node-inspector/v8-debug/blob/master/LICENSE'}",
"CC3",
"OpenFin",
"SEE LICENSE IN FILE",
"{'type': 'MIT', 'url': 'https://github.com/Anubisss/yojs/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/assemble/grunt-assemble-wordcount/blob/master/LICENSE'}",
"(GPL-2.0 AND MIT)",
"{'name': 'MIT', 'url': 'https://github.com/JamesMGreene/qunit-composite/blob/master/LICENSE.txt'}",
"{'type': 'MIT', 'url': 'https://github.com/Saber-Team/soi/blob/master/LICENSE.md'}",
"https://github.com/tunnckoCore/parse-semver/blob/master/license.md",
"LGPL-2 | LGPL-2.1 | LGPL-3 [expanded from: LGPL]",
"{'type': 'MIT', 'url': 'http://github.com/isaacs/node-lru-cache/raw/master/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/elaijuh/grunt-doxv/blob/master/LICENSE-MIT'}]",
"{'type': 'MIT', 'url': 'https://github.com/carlosazaustre/webapp-gulp-boilerplate/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/standart/blob/master/LICENSE'}",
"MIT. This wrapper is open source. But please take care of the Gridifier license: http://gridifier.io/license",
"{'type': 'MIT', 'url': 'https://github.com/nodeca/puncher/blob/master/LICENSE'}",
"The BSD Liscense",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/is-git-url/blob/master/LICENSE'}",
"public domain",
"{'type': 'MIT', 'url': 'https://github.com/MovingImage24/mi-angular-bootstrap-ultron/blob/master/LICENSE'}",
"{'name': 'Dual Artistic/StrongLoop', 'url': 'https://github.com/strongloop/strong-config-loader/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/sweedl/modest/blob/master/LICENSE'}",
"SEE LICENSE IN LICENSE.pdf",
"C0-1.0",
"(MIT OR GPL-3)",
"Free License",
"{'type': 'MIT', 'url': 'https://github.com/bengreenier/hulksmash/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/thcode/hexo-simplecode/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonathanmarvens/marly/blob/master/LICENSE'}",
"Artistic_2_0",
"{'type': 'BSD', 'url': 'http://github.com/froots/jasmine-sinon/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/zaygraveyard/moment-easter/raw/master/LICENSE'}",
"https://www.highcharts.com/license",
"GNU GPL v2 License",
"LPGL3",
"(GPL-3.0 OR LGPL-2.1)",
"BSD 3-clause License + file LICENSE",
"ISB",
"{'type': 'MIT', 'url': 'https://raw.github.com/giovanebribeiro/node-task-scheduler/master/LICENSE'}",
"apace",
"CC-BY-NC-ND-1.0",
"SEE LICENSE IN LICENCE.txt",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/for-in/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/travis-hilterbrand/cli-updater/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/magicismight/Horcrux/blob/master/LICENSE.txt'}",
"{'type': 'MIT', 'url': 'https://github.com/pocketsmith/nativescript-loading-indicator/blob/master/LICENSE'}",
"Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License",
"{'type': 'Creative Commons Attribution-NoDerivatives 4.0 International License.', 'url': 'http://creativecommons.org/licenses/by-nd/4.0/'}",
"{'type': 'MIT', 'url': 'https://github.com/abrelsfo/strip/LICENSE-MIT'}",
"GPL-2 | LGPL-2.1 | MPL-1.1",
"rbfancyBox",
"{'type': 'Public Domain', 'url': 'https://creativecommons.org/publicdomain/zero/1.0/'}",
"Dual licensed under the MIT and GPL licenses.",
"CECILL-B",
"Apache License, v2.0",
"MIT BSD",
"{'type': 'MIT', 'url': 'https://github.com/helpers/helper-related/blob/master/LICENSE'}",
"SEE LICENSE in LICENSE.txt",
"{'name': 'StrongLoop', 'url': 'https://github.com/strongloop/strong-products/blob/master/strongloop-connectors/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/gyzerok/relax.js/blob/master/LICENSE'}",
"Display.xxx",
"{'type': 'MIT', 'url': 'https://github.com/kriskowal/asap/raw/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'https://github.com/matanamir/framing-buffer/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/hours/blob/master/LICENSE-MIT'}",
"struggle",
"gnu",
"Eclipse Public License version 1.0",
"(LGPL-3.0)",
"SEE LICENSE IN licence.md",
"GNU General Public License 3.0",
"(MIT OR GPL-2.0 OR GPL-3.0)",
"{'type': 'GPLv3', 'url': 'http://www.gnu.org/licenses/gpl-3.0.en.html'}",
"MPL 1.1, GPL 2.0, LGPL 2.1 or CeCILL 2.0",
"{'type': 'BSD', 'url': 'https://github.com/omgtehlion/asjs/raw/master/license.txt'}",
"{'type': 'MIT', 'url': 'https://github.com/medialab/artoo/blob/master/LICENSE.txt'}",
"gpl v3",
"{'type': 'Public Domain', 'url': 'https://github.com/fvdm/nodejs-spark/raw/master/LICENSE'}",
"Majac",
"{'type': 'MIT', 'url': 'https://opensource.org/licenses/mit-license.php'}",
"{'type': 'MIT', 'url': 'https://github.com/mahdaen/csscript/blob/master/LICENSE-MIT'}",
"GNU v3.0",
"Groupon Inc",
"Not",
"{'type': 'MIT', 'url': 'https://github.com/helpers/logging-helpers/blob/master/LICENSE'}",
"{'type': 'Apache 2.0', 'url': 'https://github.com/samplx/alscan-js/blob/master/LICENSE'}",
"ISC OR MIT",
"GNU GENERAL PUBLIC LICENSE Version 2",
"wtfpl",
"EUPL 1.1",
"{'type': 'MIT', 'url': 'https://github.com/jamestalmage/dockerignore/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/tombenke/fl2esd/blob/master/LICENSE'}",
"LGPL-2.0+",
"{'type': 'MIT', 'url': 'https://github.com/dgaubert/venom/blob/master/LICENSE'}",
"THE BEERWARE LICENSE",
"{'type': 'MIT', 'url': 'http://tameraydin.mit-license.org/'}",
"{'type': 'MIT', 'url': 'https://github.com/mkloubert/nativescript-stringformat/blob/master/LICENSE'}",
"http://wayne-fu.blogspot.com/",
"none",
"Xtribe",
"[{'type': 'MIT', 'url': 'https://github.com/jmreidy/grunt-mocha-webdriver/blob/master/LICENSE-MIT'}]",
"Code Project Open License",
"{'type': 'MIT', 'url': 'https://github.com/mkloubert/nativescript-fortumo-sms/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://github.com/rabchev/entree/blob/master/LICENSE'}",
"-",
"Widen Commerical License",
"C0",
"ISD",
"{'type': 'MIT', 'url': 'http://opensource.org/licenses/mit-license.php'}",
"Apache2 License 2.0",
"[{'type': 'BSD', 'url': 'https://github.com/chrisdanford/nunjucks/blob/master/LICENSE'}]",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/strong-pubsub-redis/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://hail2u.mit-license.org/2015'}",
"{'type': 'MIT', 'url': 'https://github.com/edendramis/eslint-html-reporter/blob/master/LICENSE'}",
"aGPL3",
"0.0.1",
"See README.md.",
"{'type': 'MIT', 'url': 'https://github.com/twada/espower/blob/master/MIT-LICENSE.txt'}",
"Apache software license, Version 2.0",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/ansi-bgblue/blob/master/LICENSE'}",
"IMT",
"LICENSE IN License.md",
"{'type': 'MIT', 'url': 'https://github.com/nicoleza/nativescript-utils/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/assemble/grunt-assemble-lunr/blob/master/LICENSE'}",
"KII",
"MIT (http://brianmhunt.mit-license.org/)",
"(c) 2016 Wikitude GmbH - see License.md for details of the license",
"{'type': 'MIT', 'url': 'https://raw.github.com/flyvictor-easysoap/easysoap/master/LICENSE'}",
"SEE LICENSE IN <license>",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/glob-toc/blob/master/LICENSE'}",
"BOB",
"Python-2.0",
"TMT",
"{'type': 'MIT', 'url': 'https://github.com/potencia/purrl/raw/master/LICENSE'}",
"APACHE V2.0",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/html-elements/blob/master/LICENSE-MIT'}",
"PRAWN",
"CSL",
"{'type': 'MIT', 'url': 'https://github.com/miguelmota/array-without/blob/master/LICENSE.md'}",
"Apache2 OR MIT",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/object.pick/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/stringify-github-url/blob/master/LICENSE'}",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/strong-pubsub-bridge/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/mauritsl/node-castor-memcopy/master/LICENSE'}",
"{'type': 'Commercial', 'url': 'http://www.tigertext.com/developer-terms-of-use/'}",
"BSD license",
"{'type': 'MIT', 'url': 'https://github.com/t0m/select2-bootstrap-css/blob/master/LICENSE'}",
"BSD 2-clause License",
"See LICENSE file",
"MIY",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/stringify-buffer/blob/master/LICENSE'}",
"Dojo",
"unlicence",
"{'type': 'MIT', 'url': 'https://github.com/fnky/utilize/raw/master/LICENSE'}",
"MyLicense",
"CC BY-SA 2.0",
"{'type': 'MIT', 'url': 'https://github.com/jgithaiga/nativescript-sms-inbox/blob/master/LICENSE'}",
"kindest",
"GPL 3",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/ansi-bggreen/blob/master/LICENSE'}",
"{'type': ''}",
"DMF v0.1",
"GPL V2 with linking exception, see LICENSE",
"{'type': 'MIT', 'url': 'https://github.com/doowb/assemble-push/blob/master/LICENSE-MIT'}",
"OML",
"{'type': 'MIT', 'url': 'https://github.com/nodesource/ah-prune/blob/master/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/roninliu/gulp-jszip/blob/master/LICENSE'}]",
"{'type': 'BSD-2-Clause', 'url': 'https://github.com/simnalamburt/gulp-slm/blob/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'https://github.com/mikefowler/mincer-ember-hbs-engine/blob/master/LICENSE'}",
"MITt",
"optin license",
"SHIELD SOFTWARE LICENSE AGREEMENT",
"AGPL-1.0",
"MIT+Apache+OFL+PD",
"(GPL-3.0 OR LGPL-3.0 OR MPL-1.1)",
"{'type': 'Apache-2.0', 'url': 'https://github.com/gkatsev/vtt.js/blob/master/LICENSE'}",
"\u010f\u017c\u02dd",
"SEE LICENSE IN NOTHING",
"{'type': 'MIT', 'url': 'https://github.com/NathanWalker/nativescript-fonticon/blob/master/LICENSE'}",
"citiustech",
"{'type': 'MIT', 'url': 'https://github.com/regexps/filename-regex/blob/master/LICENSE-MIT'}",
"Appcelerator Proprietary and Confidential",
"{'type': 'MIT', 'url': 'https://raw.github.com/adrai/devicestack/master/licence'}",
"BSD-4-Clause",
"{'type': 'MIT', 'url': 'https://github.com/bzuillsmith/manymatch/LICENSE'}",
"Public domain",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/delims/blob/master/LICENSE'}",
"GNU-GPL-2",
"SHIYE",
"2ClickSolutions",
"AGPL-3.0+",
"SGI Free Sofware License B 2.0",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/nad-bindings/blob/master/LICENSE'}",
"adPlay.ir",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/verb-log/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://github.com/ExpressenAB/exp-rediscache/raw/master/LICENSE'}",
"[{'type': 'Public Domain', 'url': 'http://github.com/fpereiro/kabook#license'}]",
"GL",
"SIL Open Font",
"WebCC Public License",
"{'type': 'MIT', 'url': 'https://github.com/travis-hilterbrand/refresher/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/base-loader/blob/master/LICENSE'}",
"CC-BY-NC-4.0",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/ext-regex/blob/master/LICENSE-MIT'}",
"mit +no-false-attribs, +no-advertising license",
"{'name': 'MIT', 'url': 'http://www.opensource.org/licenses/mit-license.php'}",
"{'type': 'MIT', 'url': 'https://github.com/assemble/assemble-grunt-middleware-blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/isaacs/proto-list/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/gulp-micromatch/blob/master/license.md'}",
"Apache-v2.0",
"KJL",
"{'type': 'Public Domain', 'url': 'https://github.com/fvdm/nodejs-toonapp/raw/master/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/kag359six/reactsir.js'}]",
"SEE LICENCE IN LICENSE",
"scyan",
"Copyright Instacart",
"CC BY-NC-ND 3.0 US",
"LGPL-2 | LGPL-2.1 [expanded from: LGPL (\u2265 2.0",
"AFL 2.1",
"{'name': 'Dual Artistic-2.0/StrongLoop', 'url': 'https://github.com/strongloop/loopback-connector-sqlite3/blob/master/LICENSE'}",
"Modified University of Illinois/NCSA",
"NONE",
"SEE LICENCE IN LICENSE FILE",
"[{'type': 'BSD', 'url': 'https://github.com/mozilla/nunjucks/blob/master/LICENSE'}]",
"{'type': 'MIT', 'url': 'http://psyrendust.mit-license.org/2014/license.html'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/anonymize-ip/blob/master/license.md'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/drudge/featureset/master/license'}",
"MIT with \"Good not Evil\" clause.",
"BCA",
"Medpla",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/strong-products/blob/master/strongloop/LICENSE'}",
"NEW BSD",
"mobinius",
"http://unlicense.org/",
"GPL v2-3 & MIT",
"CPOL-1.02",
"{'type': 'MIT', 'url': 'https://github.com/guylabs/ion-autocomplete/blob/master/LICENSE'}",
"RPL-1.5",
"LGPL (\u2265 3) | file LICENSE",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/lmammino/godaddy-dns/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/nullobject/bulb/blob/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/map-files/blob/master/LICENSE-MIT'}",
"[{'type': 'MIT', 'url': 'https://github.com/lakenen/box-view-cli/blob/master/LICENSE'}]",
"fuck",
"Copyright 2013 Joe McIlvain. All rights reserved.",
"StrongLoop",
"{'type': 'MIT', 'url': 'https://github.com/eddyverbruggen/nativescript-fingerprint-auth/blob/master/LICENSE'}",
"Artistic 2.0",
"MIT or Boost Software License",
"2.0",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/async-helper-base/blob/master/LICENSE'}",
"SEE LICENSE IN License.md",
"[{'type': 'MIT', 'url': 'https://github.com/zacechola/grunt-bootlint/blob/master/LICENSE-MIT'}]",
"Ruby License (2-clause BSDL or Artistic)",
"XYZ",
"Appcelerator Commercial License",
"{'type': 'MIT', 'url': 'https://github.com/sleeplessinc/db/raw/master/LICENSE'}",
"Data licence Germany \u00e2ttribution \u00e2ersion 1.0",
"Mit license",
"{'type': 'MIT', 'url': 'https://github.com/jholl/fabooless/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://github.com/donavon/storeit/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/is-equal-shallow/blob/master/LICENSE'}",
"CC BY-SA 4.0 + file LICENSE",
"{'name': 'StrongLoop', 'url': 'https://github.com/strongloop/loopback-component-oauth2/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/nth-root/blob/master/LICENSE-MIT'}",
"SEE LICENSE IN",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/parse-author/blob/master/LICENSE'}",
"Steele Nelson",
"BSD 2 Clause",
"SEE LICENSE IN License.txt",
"[{'type': 'WTFPL', 'url': 'https://github.com/myfreeweb/sweetreaction/blob/master/COPYING'}]",
"None",
"Brightcove",
"copyright by shuitiankeji",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/iso-week/blob/master/LICENSE'}",
"Creative Commons Attribution 3.0 License",
"Custom Licensing",
"{'type': 'MIT', 'url': 'https://github.com/BiosSun/nojiko/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/datetime/year-weeks/blob/master/license.md'}",
"BSD-Clause-3",
"Premier",
"GLP-2",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/abbrev-kindof/blob/master/license.md'}",
"COIL",
"{'type': 'MIT', 'url': 'https://github.com/tombenke/proper/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/fill-range/blob/master/LICENSE-MIT'}",
"Hello Kitty",
"{'name': 'StrongLoop', 'url': 'https://github.com/strongloop/cxviz-timeseries/blob/master/LICENSE'}",
"Same as Ruby",
"VUL",
"{'name': 'MIT', 'url': 'https://github.com/guardly/loopback-connector-couchbase/blob/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/hybridify-all/blob/master/license.md'}",
"{'name': 'Dual Artistic/StrongLoop', 'url': 'https://github.com/strongloop/strong-cluster-socket.io-store/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/sleeplessinc/failif/raw/master/LICENSE'}",
"Fair License (http://fairlicense.org/)",
"MPL",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/stringify-github-anchor/blob/master/LICENSE'}",
"{'type': 'MPL 2.0', 'url': 'http://mozilla.org/MPL/2.0/'}",
"{'type': 'MIT', 'url': 'https://github.com/abrelsfo/remove/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/twbs/bootstrap/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/verbose/verb-cli/blob/master/LICENSE-MIT'}",
"Apache 2.0 license",
"libre",
"OSL",
"Trial",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/FlashSoft/hexo-optimize/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/assemble/verb/blob/master/LICENSE'}",
"80",
"ELASTICSEARCH-LICENSE SOFTWARE LICENSE AGREEMENT",
"LPL",
"{'type': 'MIT', 'url': 'https://github.com/hybridables/hybridify/blob/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'https://github.com/tsertkov/dotpath-compile/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/stream-spectrum/blob/master/LICENSE'}",
"{'type': 'Public Domain', 'url': 'https://github.com/fvdm/nodejs-bolcom/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/laomao800/hexo-tag-demo/master/LICENSE'}",
"free",
"http://www.lixiucheng.com",
"{'type': 'MIT', 'url': 'https://github.com/assemble/readme-includes/blob/master/LICENSE'}",
"AGPL (\u2265 3) + file LICENSE",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/mukla/blob/master/license.md'}",
"CC BY-NC-SA 3.0",
"freemium",
"{'type': 'MIT', 'url': 'https://github.com/simkall/markedtex/LICENSE'}",
"[{'type': 'GNU GPLv3', 'url': 'http://www.gnu.org/copyleft/gpl.html'}]",
"GNU - General Public License",
"https://github.com/infrabel/GNaP.Web.Themes/blob/master/LICENSE",
"CC NC-SA 4.0",
"(Apache-2.0 OR MPL-1.1)",
"{'type': 'MIT', 'url': 'https://raw.github.com/lotabout/hexo-filter-fix-cjk-spacing/master/LICENSE'}",
"THE UNLICENSE",
"Mozilla Public License, v. 2.0",
"COPYRIGHT (c) 2014 TrackJS LLC ALL RIGHTS RESERVED",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/right-pad-values/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/ansi-italic/blob/master/LICENSE'}",
"commercial",
"{'type': 'MIT', 'url': 'http://github.com/YuzuJS/storeit-serializer-json/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/fullcalendar/fullcalendar/blob/master/LICENSE.txt'}",
"[{'type': 'MIT', 'url': 'https://github.com/feathersjs/feathers-memory/blob/master/LICENSE'}]",
"\tApache-2.0",
"Apache Public License (version 2)",
"LGPLv2.1 or later",
"THIS IS PROVIDED UNDER MIT LICENSE",
"MIT/Apache 2.0",
"{'type': 'BSD-3-Clause', 'url': 'https://github.com/ExactTarget/fuelux-mctheme/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/helper-read/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/matanamir/int24/raw/master/LICENSE'}",
"New BSD (3-clause)",
"\tGPL-2.0",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/filter-types/blob/master/LICENSE'}",
"LGPL (\u2265 3)",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/goldfire/pokersolver/master/LICENSE.md'}",
"IBM Copyright",
"DreamFace Open License",
"The Apache Software License, Version 2.0",
"[{'type': 'MIT', 'url': 'http://github.com/eddyystop/gulp-msx-logic/blob/master/LICENSE'}]",
"MIT (http://mootools.net/license.txt)",
"free binary",
"{'type': 'MIT', 'url': 'https://github.com/eddyverbruggen/nativescript-appavailability/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/miguelmota/sobel/blob/master/LICENSE.md'}",
"TODO",
"[{'type': 'Public Domain', 'url': 'http://github.com/fpereiro/recalc#license'}]",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/goldfire/howler.js/master/LICENSE.md'}",
"AGPLv3 with linking exception",
"MIT (sailxjx.mit-license.org)",
"GNU GPL Version 3",
"[{'name': 'MIT', 'url': 'https://github.com/nico3333fr/van11y-accessible-tab-panel-aria/blob/master/LICENSE'}]",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/get-value/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/filter-keys/blob/master/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/duzun/classifyed.js/raw/master/LICENSE'}]",
"[{'type': 'MIT', 'url': 'http://malsup.github.com/mit-license.txt'}]",
"Modified BSD License",
"1234",
"(ISC OR WTFPL)",
"GPLv3 or Commercial",
"Non-standard",
"{'type': 'MIT', 'url': 'https://github.com/assemble/dovetail/blob/master/LICENSE-MIT'}",
"{'type': 'BSD', 'url': 'http://gitorious.org/buster/stream-logger/blobs/master/LICENSE'}",
"CC-SA-BY-3.0",
"{'type': 'MIT', 'url': 'https://raw.github.com/lytedev/hexo-renderer-haml-coffee/master/LICENSE'}",
"Lymmusic",
"[{'name': 'MIT', 'url': 'https://github.com/nico3333fr/ROCSSTI/blob/master/LICENSE'}]",
"ASL2",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/generator-docs/blob/master/LICENSE-MIT'}",
"[{'type': 'MIT', 'url': 'https://raw.github.com/ambermore/stackify/master/LICENSE'}]",
"GPL-2 | GPL-3",
"Sara Wong",
"{'type': 'MIT', 'url': 'https://github.com/axelpale/categorical-distribution-js/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/pseudos/blob/master/LICENSE-MIT'}",
"Robert Bosch GmbH, 2017",
"{'type': 'MIT', 'url': 'https://github.com/edendramis/scss-lint-html-reporter/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://mach3.mit-license.org/'}",
"Mobitor",
"SEE LICENSE AT https://gojs.net/latest/doc/license.html",
"{'type': 'MIT', 'url': 'https://github.com/greghesp/tvmaze-node/blob/master/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/mamalisk/agenta/blob/master/LICENSE'}]",
"(BSD-3-Clause OR EPL-1.0)",
"GNU-AGPLv3",
"Modified BSD",
"GPLv1",
"[{'type': 'MIT', 'url': 'https://github.com/XescuGC/jsmoo/blob/master/LICENSE'}]",
"{'type': 'MIT', 'url': 'https://github.com/fontello/ttf2eot/blob/master/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/tom4dev/YACo/blob/master/LICENSE'}]",
"{'type': 'MIT', 'url': 'https://github.com/fengyuanchen/distpicker/blob/master/LICENSE'}",
"LICENSE-MIT",
"{'type': 'Public Domain', 'url': 'https://raw.githubusercontent.com/lfridael/ember-cli-font-awesome/master/UNLICENSE'}",
"Open Database License",
"[{'type': 'MIT', 'url': 'https://github.com/sasyomaru/Sparklight/blob/master/LICENSE'}]",
"MIT OR SEE LICENSE IN FEEL-FREE.md",
"[{'type': 'MIT', 'url': 'https://github.com/aq1018/logicbox/blob/master/LICENSE'}]",
"{'type': 'CC-BY-1.0'}",
"{'type': 'Apache 2.0', 'url': 'http://code.google.com/legal/individual-cla-v1.0.html'}",
"2013-2017",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/pick-from/blob/master/LICENSE-MIT'}",
"wahaha",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/deep-is/blob/master/LICENSE'}",
"Copyright Elliot Chong 2015+",
"BSD + ISC",
"Artistic 2",
"qwe",
"{'type': 'MIT', 'url': 'http://tregusti.mit-license.org/'}",
"SIT",
"http://clkao.mit-license.org",
"{'type': 'MIT', 'url': 'https://github.com/jstransformers/jstransformer-toffee/blob/master/license.md'}",
"Concurix",
"any",
"Creative Commons Attribution-Noncommercial- No Derivative Works 3.0",
"{'type': 'MIT', 'url': 'https://github.com/doowb/stringify-keys/blob/master/LICENSE'}",
"{'type': 'Public Domain', 'url': 'https://github.com/fvdm/nodejs-vnstat-dumpdb/raw/master/UNLICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/BricksFramework/Bricks/blob/master/LICENSE.md'}",
"Wambl",
"AGPL v3.0",
"ASL-2.0",
"Open-Source License",
"ISC License",
"{'type': 'MIT', 'url': 'https://raw.github.com/ramitos/modella-level-search/master/license'}",
"{'type': 'MIT', 'url': 'https://github.com/joyent/node_zuora/blob/master/LICENSE'}",
"SEE LICENSE IN LISENCE",
"{'type': 'MIT', 'url': 'https://raw.github.com/dorny/codemirror-highlight-node/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/normalize-pkg/blob/master/LICENSE-MIT'}",
"Available under MIT and BSD licenses. See [https://github.com/ryanvanoss/yui3boiler/blob/master/LICENSE].",
"{'type': 'MIT', 'url': 'http://hail2u.mit-license.org/2014'}",
"{'type': 'BSD-3-Clause', 'url': 'https://github.com/ExactTarget/fuelux/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/TATDK/plugapi/blob/master/LICENSE.md'}",
"FTWPL",
"AFL",
"MIT or GPL v2",
"GUN",
"{'type': 'MIT', 'url': 'https://github.com/goldcome/assemble-goldcome-sitemap/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/filter-css-properties/blob/master/license.md'}",
"{'type': 'MIT', 'url': 'https://github.com/anarchicknight/react-native-message-composer/blob/master/LICENSE'}",
"GNU Library General Public License",
"{'type': 'MIT', 'url': 'https://github.com/mkloubert/nativescript-applist/blob/master/LICENSE'}",
"Unlicense (Public Domain)",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/ansi-strikethrough/blob/master/LICENSE'}",
"Copyleft",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/cube-root/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/briangonzalez/hexo-renderer-webpack/master/LICENSE'}",
"MIT License - http://opensource.org/licenses/MIT",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/add-package-owners/blob/master/license.md'}",
"LGPL-3 + file LICENSE",
"Apache License Version 2.0",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/loopback-boot/blob/master/LICENSE'}",
"SEE LICENSE IN LICENSE ",
"GreenSock's standard 'no charge' license: http://greensock.com/standard-license. Club GreenSock members get additional rights; see http://greensock.com/licensing/. Learn why GreenSock doesn't employ an MIT license: http://greensock.com/why-license/",
"{'type': 'MIT', 'url': 'https://raw.github.com/tommy351/hexo/master/LICENSE'}",
"AML",
"Dual licensed under the MIT and GPL licenses",
"GNU GENERAL PUBLIC LICENSE 2",
"{'type': 'Apache-2.0', 'url': 'https://github.com/UW-Madison-DoIT/uw-frame/blob/master/LICENSE'}",
"adasdsda",
"[{'type': 'Apache License', 'url': 'http://www.apache.org/licenses/LICENSE-2.0'}]",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/starts-with/blob/master/license.md'}",
"{'type': 'MIT', 'url': 'https://github.com/sebawita/nativescript-joystick/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/ramitos/ke/master/license'}",
"see LICENSE.md",
"{'type': 'MIT', 'url': 'https://github.com/rdash/rdash-ui/blob/master/LICENSE'}",
"Cecill-B (french BSD-like)",
"CC-BY 4.0 International",
"{'type': 'MIT', 'url': 'http://spdx.org/licenses/MIT'}",
"apache-license-2.0",
"Located in license.html",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/merge-deep/blob/master/LICENSE'}",
"GPL-3+",
"(Creative Commons 3.0 BY license)",
"Apache license, version 2.0",
"GNU GENERAL PUBLIC LICENSE V3",
"[{'type': 'MIT', 'url': 'https://gitlab.com/vickylance/chatbot-constructor/blob/master/LICENSE.md'}]",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/ansi-red/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://github.com/NobleJS/json_/raw/master/LICENSE'}",
"Adapted BSD 3-Clause",
"ISC OR MIT OR Apache-2.0",
"Eclipse Public License v1.0",
"WTFPL (http://www.wtfpl.net/)",
"{'type': 'MIT', 'url': 'https://github.com/allbitsnbytes/gulp-imageoptim/blob/LICENSE-MIT'}",
"extended beerware license",
"{'type': 'MIT', 'url': 'https://github.com/mkloubert/nativescript-apiclient/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/eddyverbruggen/nativescript-clipboard/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://github.com/olivierlesnicki/couleur/raw/master/LICENSE'}",
"http://www.featureblend.com/license.txt",
"TMI",
"GNU Public License Version 3",
"{'type': 'Public Domain', 'url': 'https://github.com/fvdm/nodejs-bitminter/raw/master/UNLICENSE'}",
"\u00c2\u01602015 SeedAlpha",
"(Apache-2.0 AND MIT)",
"{'type': 'MIT', 'url': 'https://github.com/doowb/question-helper/blob/master/LICENSE'}",
"{'name': 'Dual Artistic/StrongLoop', 'url': 'https://github.com/strongloop/strongloop/blob/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'http://github.com/donavon/xcop/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/hybridables/then-got/blob/master/license.md'}",
"http://license.azuretalon.com",
"IBM Public License",
"https://github.com/sourcejs/sourcejs-specs-linting/blob/master/LICENSE",
"{'type': 'MIT', 'url': 'https://github.com/nathanaela/nativescript-livesync/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/d3-gauge-writable/blob/master/LICENSE'}",
"MIT and LGPL",
"NTLong",
"{'name': 'Dual Artistic/StrongLoop', 'url': 'https://github.com/strongloop/strong-service-upstart/blob/master/LICENSE.md'}",
"APA-2",
"YY",
"Copyright 2013 geedew <[email protected]>",
"GPL-3 | GPL-2",
"{'type': 'MIT', 'url': 'https://github.com/cp2017/sign/blob/module/LICENCE-MIT'}",
"{'type': 'Public Domain', 'url': 'https://github.com/fvdm/nodejs-vermist/raw/master/UNLICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/scaryzet/node-stack-parser/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/addyosmani/grunt-uncss/blob/master/LICENSE-MIT'}",
"Mozilla Public License 1.1",
"See License section in README.md",
"SEE LICENSE IN [LICENSE.md](https://github.com/deadratfink/jy-transform/blob/master/LICENSE.md)",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/filter-array/blob/master/LICENSE-MIT'}",
"emao-fe",
"{'type': 'MIT', 'url': 'https://github.com/tombenke/kickoff/blob/master/LICENSE'}",
"GPL OR Commercial",
"GPL 2+_",
"{'type': 'MIT', 'url': 'https://opensource.org/licenses/mit-license'}",
"FPL",
"v3",
"{'type': 'MIT', 'url': 'https://github.com/miguelmota/audio-director/blob/master/LICENSE.md'}",
"\"BD-2-Clause\"",
"Luminov Global Indonesia",
"[{'type': 'MIT', 'url': 'https://github.com/x6doooo/syro/raw/master/LICENSE-MIT'}]",
"AGPL-3 | file LICENSE",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/expand-brackets/blob/master/LICENSE'}",
"{'type': 'Unlicense', 'url': 'https://raw.github.com/droptype/proto/master/UNLICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/bmpvieira/xml2json-stream/master/LICENSE'}",
"AdamWhitcroft",
"{'type': 'MIT', 'url': 'https://github.com/toddself/image-validator-stream/blog/master/LICENSE'}",
"Creative Commons Attribution-Non-Commercial 3.0 License",
"Copyright (c) 2015 tCell.io (see LICENSE file)",
"{'type': 'MIT', 'url': 'https://bitbucket.org/arcticfox/module-dependency-graph/src/default/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/lakenen/box-view-queue/blob/master/LICENSE'}]",
"{'type': 'MIT', 'url': 'https://github.com/bjornstar/filter-builder/raw/master/LICENSE'}",
"Eday Solutions",
"Crown Copyright (Office for National Statistics)",
"https://www.karmadata.com/Policy/Terms",
"ALv2.0",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/is-false/blob/master/LICENSE'}",
"[{\"type\":\"[email protected]\"}]",
"CC-BY-SA 4.0 Itnl.",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/lakenen/rtc-data-connection/master/LICENSE'}",
"cc-by-4.0",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/dev-null/blob/master/LICENSE'}",
"{'name': 'StrongLoop', 'url': 'https://github.com/strongloop/strong-trace-transactionlog/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://muyuu.mit-license.org/'}",
"GPLv2/LGPL",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/get-pkgs/blob/master/LICENSE'}",
"https://github.com/Smithsonian/edanrb/blob/master/license.md",
"{'type': 'GNU GPLv2', 'url': 'http://choosealicense.com/licenses/gpl-2.0/'}",
"VAX",
"{'name': 'Dual Artistic/StrongLoop', 'url': 'https://github.com/strongloop/strong-service-systemd/blob/master/LICENSE.md'}",
"[{'type': 'MIT', 'url': 'https://github.com/QuickBlox/quickblox-javascript-sdk/blob/master/LICENSE'}]",
"{'type': 'GPL-3.0', 'url': 'https://raw.githubusercontent.com/GeoMash/JS-Klass-Kit/master/LICENSE'}",
"\"\"",
"{'type': 'MIT', 'url': 'https://github.com/nathanaela/nativescript-sqlite/blob/master/LICENSE'}",
"ITVPL",
"ICU4J",
"{'type': 'MIT', 'url': 'https://github.com/smashingboxes/OwlCarousel2/blob/master/LICENSE'}",
"PUBLIC LICENSE",
"CSC",
"{'type': 'APACHE20', 'url': 'http://www.apache.org/licenses/LICENSE-2.0'}",
"https://github.com/mapbox/gridmonger/blob/master/LICENSE.txt",
" MPL-2.0",
"SEE LICENCE IN LICENSE.txt",
"{'type': 'Apache 2.0'}",
"Creative Commons Attribution 3.0 Unported ",
"2-clause BSD-style",
"see LICENSE file",
"Unicode-TOU",
"to be determined",
"ISxC",
"[{'type': 'ISC', 'url': 'https://github.com/TakahashiNZ/Dropbox/blob/master/LICENSE-ISC'}]",
"[{'type': 'WTFPL', 'url': 'https://github.com/myfreeweb/broccoli-source-map/blob/master/COPYING'}]",
"Ebizu",
"{'type': 'MIT', 'url': 'https://github.com/bradmartin/nativescript-image-filters/blob/master/LICENSE'}",
"Copyright 2014 Joe McIlvain. All rights reserved.",
"MIT/X11",
"See LICENSE.txt",
"{'type': 'MIT', 'url': 'https://github.com/iskandarjamil/PoistueJS/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/rednose-public/rednose-ui/blob/master/LICENSE'}",
"{'type': 'ASL'}",
"MIT and GPL v2",
"{'type': 'BSD-3-Clause', 'url': 'https://raw2.github.com/talsu/bongtalk/master/LICENSE'}",
"FEISTY",
"Apache, v2.0",
"{'type': 'MIT', 'url': 'https://github.com/helpers/helper-md/blob/master/LICENSE-MIT'}",
"60sky",
"UPL-1.0",
"KINDLY",
"[{'type': 'BSD', 'url': 'https://github.com/x6doooo/nsutil/raw/master/LICENSE'}]",
"Botpress Proprietary License",
"{'type': 'MIT', 'url': 'https://github.com/udibo/ranac-body/blob/master/LICENSE'}",
"Apach-2.0",
"{'type': 'MIT', 'url': 'https://github.com/akileez/create-element-basic/blob/master/LICENSE-MIT'}",
"GNU-GL-2",
"GNU GPL3",
"rainforwind-private",
"{'type': 'MIT', 'url': 'https://cjpatoilo.mit-license.org'}",
"Personal Use Only",
"{'type': 'MIT', 'url': 'http://github.com/ExpressenAB/exp-fake-amqp/raw/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/nfarina/xmldoc-js/master/LICENSE'}",
"GPL-2 | GPL-3 | MIT + file LICENSE [expanded from: GPL (\u2265 2) | MIT + file LICENSE]",
"SEE LICENSE IN http://bananatag.com/hub/terms-and-conditions-2/",
"BSD-3-Clause, see LICENSE file",
"All rights reserved, Stanford University.",
"{'type': 'MIT', 'url': 'https://github.com/stefanwalther/qlikloc/blob/master/LICENSE'}",
"CC-BY-SA-2.0",
"Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)",
"WEI",
"GPL2",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/arr-filter/blob/master/LICENSE'}",
"Attribution-ShareAlike 4.0 International",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/window-capture/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/cazala/synaptic/blob/master/LICENSE'}",
"ECL2",
"LicenseRef-license.txt",
"[{'type': 'MIT', 'url': 'https://github.com/laurentchardin/node-mollom/blob/master/LICENSE'}]",
"{'type': 'MIT', 'url': 'http://github.com/lorentzkim/misao-chan/raw/master/LICENSE'}",
"SeedAlpha \u00a92015",
"EULA",
"same as https://github.com/mikeal/node.couchapp.js",
"See license file",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/loopback/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/regexps/hex-color-regex/blob/master/license.md'}",
"{'type': 'unlicence', 'url': 'http://unlicense.org'}",
"MIT (http://opensource.org/licenses/MIT)",
"See License in License.md",
"\tGPL-3.0",
"BSD-2-Clause",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/git-username/blob/master/LICENSE'}",
"Personal",
"GNU GPL",
"{'type': 'MIT', 'url': 'https://github.com/cp2017/sign/blob/master/LICENCE-MIT'}",
"[{'type': 'MIT', 'url': 'https://github.com/DavideDaniel/commentdoc/blob/master/LICENSE.md'}]",
" MIT",
"{'type': 'MIT', 'url': 'https://github.com/akileez/extend-basic/blob/master/LICENSE-MIT'}",
"MIT(https://github.com/leocaseiro/nativescript-web-image-cache/blob/master/LICENSE)",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/markdown-link/blob/master/LICENSE'}",
"(BSD-3-Clause OR ECL-2.0)",
"BHASKAR",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/helper-cache/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/helpers/helper-reflinks/blob/master/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/phagunbaya/file-server/raw/master/LICENSE'}]",
"open",
"IDA",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/mixin-deep/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'http://twada.mit-license.org/2014-2015'}",
"FreeBSD",
"BSD / GPL",
"{'type': 'MIT', 'url': 'https://github.com/twada/empower/blob/master/MIT-LICENSE.txt'}",
"{'type': 'MIT', 'url': 'http://opensource.org/licenses/MIT'}",
"Licence MPL 1.1 OR Licence GPL 2 OR GPL-3.0+",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/d3-gauge/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/nodesource/function-scout/blob/master/LICENSE'}",
"Mamidwar",
"Copyright 2013 AgileWings",
"MICROSOFT SOFTWARE LICENSE",
"[{'type': 'MIT', 'url': 'http://github.com/repejota/bashprompt.js/blob/master/LICENSE'}]",
"ASF v2",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/commandments/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/miguelmota/skyline/blob/master/LICENSE.md'}",
"GNU-v2",
"{'type': 'MIT', 'url': 'https://github.com/tjvantoll/nativescript-flashlight/blob/master/LICENSE'}",
"gpl",
" GNU GENERAL PUBLIC LICENSE",
"GPL License v3 with ADDITIONAL TERM per GPL Section 7",
"WTFPL / BSD-3-Clause / MIT / zlib",
"{'type': 'MIT', 'url': 'https://github.com/stefanwalther/sense-loc/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/template-toc/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/update-year/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/markdown-utils/blob/master/LICENSE-MIT'}",
"111111",
"Common Public License Version 1.0",
"artistic",
"{'type': 'Apache License, Version 2.0', 'url': 'http://www.apache.org/licenses/LICENSE-2.0.html'}",
"LPPL-1.3c",
"BSD2-License",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/strong-log-transformer/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/WaterBridgeDown/simple-http/blob/master/license.txt'}",
"{'type': 'Apache 2', 'url': 'https://github.com/chris-pearce/scally/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/verbose/verb-cli/blob/master/LICENSE'}",
"www.highcharts.com/license",
"{'name': 'StrongLoop', 'url': 'https://github.com/strongloop/cxviz-eventloop/blob/master/LICENSE'}",
"[{'type': 'MIT', 'url': 'https://github.com/gdibble/backbone-ajaxretry/blob/master/LICENSE'}]",
"All rights temporarily reserved ",
"[{'type': 'MIT', 'url': 'http://www.mit-license.org'}]",
"Copyright TabCorp Pty Ltd 2013",
"LGPL-2.1 | file LICENSE",
"{'type': 'MIT', 'url': 'https://github.com/meetup/swarm-sasstools/blob/master/LICENSE'}",
"Apache version 2.0",
"Copyright \u00a9 2014, 2015 LHA. All rights reserved. See LICENSE.txt",
"{'name': 'Dual MIT/StrongLoop', 'url': 'https://github.com/strongloop/loopback-testing/blob/master/LICENSE'}",
"(MIT OR BSD-2-Clause OR GPL-3.0)",
"{'type': 'MIT', 'url': 'https://gitlab.com/czfh/ac/blob/master/LICENSE'}",
"0721",
"CC0 1.0",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/array-first/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/regexps/glob-path-regex/blob/master/LICENSE-MIT'}",
"wjhong",
"Apache Licence 2",
"[{'type': 'Apache-2.0', 'url': 'https://github.com/MDSLab/s4t-iotronic-standalone/LICENSE'}]",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/right-align-values/blob/master/LICENSE'}",
"MIT/Apache-2.0",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/method-names/blob/master/LICENSE'}",
"[{'type': 'Apache', 'url': 'http://www.apache.org/licenses/LICENSE-2.0.html'}]",
"{'type': 'MIT', 'url': 'https://github.com/miguelmota/wifi-interface/blob/master/LICENSE.md'}",
"all right reserved",
"GPL (>= 2)",
"PAL",
"{}",
"GNU GPLv2",
"Pending",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/parse-code-context/blob/master/LICENSE'}",
"MPL-2.0 OR Apache-2.0",
"AGPL v3",
"[{'type': 'MIT', 'url': 'https://github.com/shinnn/parse-author-name.js/blob/master/LICENSES.md'}]",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/get-installed-path/blob/master/license.md'}",
"{'type': 'MIT', 'url': 'https://github.com/bradmartin/nativescript-liquid-loader/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/handle-arguments/blob/master/license.md'}",
"2 Clause BSD",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/repeat-element/blob/master/LICENSE-MIT'}",
"Atyantik",
"{'type': 'Apache-2.0', 'url': 'https://github.com/webcc/typly/blob/master/LICENSE.md'}",
"Private Property (c) Search Influence",
"GPL-2 | MIT + file LICENSE",
"{'type': 'MIT', 'url': 'https://github.com/markosko/nativescript-charts/blob/master/LICENSE'}",
"TBA",
"GPLV3",
"OLO",
"XUMAK",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/load-templates/blob/master/LICENSE'}",
"{'name': 'MIT', 'url': 'https://github.com/d10/reveal-code-focus/blob/gh-pages/LICENSE.txt'}",
"LicenseRef-LICENSE",
"{'type': 'MIT', 'url': 'https://github.com/jstransformers/jstransformer-jscss/blob/master/LICENSE.md'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/helper-related/blob/master/LICENSE'}",
"Takeshi Horinouchi",
"LGPLv21",
"Crowley Licence 1.0 (see included LICENCE.txt)",
"{'type': 'Unlicense', 'url': 'https://bitbucket.org/briankc/esri-102718/src/master/UNLICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/gulp-htmlmin/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/alejonext/NativeLang/blob/master/LICENSE'}",
"e7",
"Commercial Confidential",
"{'type': 'PATRON', 'url': 'https://github.com/nathanaela/nativescript-accessibility/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/scottbrady/haml-coffee-browserify/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/koa-better-ratelimit/blob/master/license.md'}",
"{'name': 'Dual Artistic-2.0/StrongLoop', 'url': 'https://github.com/strongloop/loopback-connector-postgresql/blob/master/LICENSE'}",
"To be decided",
"{'type': 'MIT', 'url': 'https://bitbucket.org/arcticfox/json-websocket/src/default/LICENSE'}",
"{'type': 'Apache-2.0', 'url': 'https://github.com/mozilla/vtt.js/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/keys-tree/blob/master/LICENSE'}",
"APL2",
"{'type': 'MIT', 'url': 'https://raw.githubusercontent.com/docmars/mount-smbfs/master/LICENSE'}",
"BSE",
"[{'name': 'BSD-2-Clause', 'url': 'COPYING'}]",
"Apache Public License, Version 2",
"[{'type': 'MIT', 'url': 'http://github.com/ng-vu/gulp-include-js/blob/master/LICENSE'}]",
"{'type': 'MIT', 'url': 'https://raw.github.com/ramitos/fifo-loop/master/license'}",
"{'type': 'MIT', 'url': 'http://vinnyguitar.mit-license.org'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/storage/blob/master/LICENSE-MIT'}",
"AGPLv3.0+",
"{'type': 'MIT', 'url': 'https://raw.github.com/ramitos/sift3/master/license'}",
"Copyright",
"{'type': 'MIT', 'url': 'https://github.com/helpers/lodash-mixin-safename/blob/master/LICENSE-MIT'}",
"(GPL-2.0 OR MIT)",
"Modified Apache-2.0",
"Commercial",
"{'type': 'MIT', 'url': 'http://github.com/kozervar/napis-js/raw/master/LICENSE'}",
"BSD-212",
"3776633071",
"{'type': 'WTFPL', 'url': 'http://www.opensource.org/licenses/MIT'}",
"SGI-B-2.0",
"Zendesk Proprietary",
"{'type': 'MIT', 'url': 'https://github.com/bjornstar/growth-curve/raw/master/LICENSE'}",
"Public Domain.",
"PayPal",
"Custom license",
"[{'type': 'MIT', 'url': 'https://github.com/x6doooo/ngxo/raw/master/LICENSE-MIT'}]",
"{'type': 'MIT', 'url': 'https://github.com/franksrevenge/q-local/raw/v1/LICENSE'}",
"R2CORBA",
"(MIT AND CC-BY-3.0)",
"ACE",
"{'type': 'MIT', 'url': 'https://github.com/hybridables/handle-callback/blob/master/license.md'}",
"{'name': 'Dual Artistic-2.0/StrongLoop', 'url': 'https://github.com/strongloop/loopback-connector-cassandra/blob/master/LICENSE'}",
"https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm",
"{'type': 'MIT', 'url': 'https://github.com/anarchicknight/react-native-carrier-info/blob/master/LICENSE'}",
"REE",
"{'type': 'GPL'}",
"MIT License (see Readme)",
"http://www.apache.org/licenses/LICENSE-2.0.txt",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/gitcreate/blob/master/license.md'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/option-cache/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/reflinks/blob/master/LICENSE'}",
"nginx",
"{'type': 'MIT', 'url': 'https://github.com/mboudreau/clusterfork/blob/master/LICENSE'}",
"{'name': 'MIT', 'url': 'https://github.com/dashby3000/loopback-connector-twilio/blob/master/LICENSE'}",
"MIb",
"(MIT OR RUMI)",
"eSpeakers",
"www.coco.com",
"{'type': 'MIT', 'url': 'https://github.com/foxbunny/datetimejs/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/has-any/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/potencia/otaat-repl/raw/master/LICENSE'}",
"[{'type': 'Public Domain', 'url': 'http://github.com/fpereiro/kaboots#license'}]",
"{'type': 'MIT', 'url': 'https://github.com/chrisJohn404/ljswitchboard-package_loader/master/LICENSE'}",
"SEE LICENSE IN reset.css",
"{'type': 'MIT', 'url': 'https://github.com/scottgonzalez/debt/raw/master/LICENSE-MIT.txt'}",
"Appcelerator Software License (non-open source)",
"{'type': 'MIT', 'url': 'https://github.com/tunnckoCore/mustache-spec321323/blob/master/license.md'}",
"APACHE2.0",
"sdf",
"[{'type': 'MIT', 'url': 'https://github.com/yarkeev/grunt-watcher/blob/master/LICENSE-MIT'}]",
"{'type': 'MIT', 'url': 'https://raw.github.com/moszeed/easysoap/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/micromatch/blob/master/LICENSE-MIT'}",
"{'type': 'MIT', 'url': 'https://github.com/dselkirk/grunt-reportportal-toc/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/helpers/helper-lookup-deps/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/jonschlinkert/arr-diff/blob/master/LICENSE-MIT'}",
"1.0.0",
"{'type': 'MIT', 'url': 'https://github.com/thlorenz/resolve-bin/blob/master/LICENSE'}",
"Maniankara Inc.",
"(GPL-3.0 OR LGPL-3.0 OR MPL-2.0)",
"MIT Expat",
"Apache Licence, Version 2.0",
"{'type': 'MIT', 'url': 'http://gkatsev.mit-license.org/'}",
"{'type': 'MIT', 'url': 'https://github.com/nodes-frontend/generator-nodes/blob/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://raw.github.com/scaryzet/node-rush/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/regexps/coverage-code-regex/blob/master/license.md'}",
"Moblor",
"{'type': 'The MIT License', 'url': 'https://raw.github.com/mrdoob/three.js/master/LICENSE'}",
"{'type': 'MIT', 'url': 'https://github.com/arpit2438735/nativescript-algolia/blob/master/LICENSE'}",
"MIT + file LICENSE",
"GNU AFFERO GENERAL PUBLIC LICENSE v3",