forked from viadee/sonarQuest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlicenses.json
5924 lines (5924 loc) · 244 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
{
"@angular-devkit/build-optimizer@0.3.2": {
"licenses": "MIT",
"repository": "https://github.com/angular/devkit",
"licenseUrl": "https://github.com/angular/devkit/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@angular-devkit/core@0.3.2": {
"licenses": "MIT",
"repository": "https://github.com/angular/devkit",
"licenseUrl": "https://github.com/angular/devkit/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@angular-devkit/schematics@0.3.2": {
"licenses": "MIT",
"repository": "https://github.com/angular/devkit",
"licenseUrl": "https://github.com/angular/devkit/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@angular/animations@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/cdk@5.2.3": {
"licenses": "MIT",
"repository": "https://github.com/angular/material2",
"licenseUrl": "https://github.com/angular/material2/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@angular/cli@1.7.2": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular-cli",
"licenseUrl": "https://github.com/angular/angular-cli/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@angular/common@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/compiler-cli@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/compiler@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/core@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/forms@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/http@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/language-service@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/material@5.2.3": {
"licenses": "MIT",
"repository": "https://github.com/angular/material2",
"licenseUrl": "https://github.com/angular/material2/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@angular/platform-browser-dynamic@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/platform-browser@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@angular/router@5.2.7": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular",
"licenseUrl": "https://github.com/angular/angular",
"parents": "sonarquest-frontend"
},
"@covalent/core@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/teradata/covalent",
"licenseUrl": "https://github.com/teradata/covalent",
"parents": "sonarquest-frontend"
},
"@ngtools/json-schema@1.2.0": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular-cli",
"licenseUrl": "https://github.com/angular/angular-cli/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@ngtools/webpack@1.10.1": {
"licenses": "MIT",
"repository": "https://github.com/angular/angular-cli",
"licenseUrl": "https://github.com/angular/angular-cli/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@ngx-translate/core@9.1.1": {
"licenses": "MIT",
"repository": "https://github.com/ngx-translate/core",
"licenseUrl": "https://github.com/ngx-translate/core",
"parents": "sonarquest-frontend"
},
"@ngx-translate/http-loader@2.0.1": {
"licenses": "MIT",
"repository": "https://github.com/ngx-translate/http-loader",
"licenseUrl": "https://github.com/ngx-translate/http-loader/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@schematics/angular@0.3.2": {
"licenses": "MIT",
"repository": "https://github.com/angular/devkit",
"licenseUrl": "https://github.com/angular/devkit/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@schematics/package-update@0.3.2": {
"licenses": "MIT",
"repository": "https://github.com/angular/devkit",
"licenseUrl": "https://github.com/angular/devkit/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"@types/jasmine@2.5.45": {
"licenses": "MIT",
"repository": "https://wwwhub.com/DefinitelyTyped/DefinitelyTyped",
"licenseUrl": "https://wwwhub.com/DefinitelyTyped/DefinitelyTyped",
"parents": "sonarquest-frontend"
},
"@types/node@6.0.101": {
"licenses": "MIT",
"repository": "https://wwwhub.com/DefinitelyTyped/DefinitelyTyped",
"licenseUrl": "https://wwwhub.com/DefinitelyTyped/DefinitelyTyped",
"parents": "sonarquest-frontend"
},
"@types/q@0.0.32": {
"licenses": "MIT",
"repository": "https://wwwhub.com/DefinitelyTyped/DefinitelyTyped",
"licenseUrl": "https://wwwhub.com/DefinitelyTyped/DefinitelyTyped",
"parents": "sonarquest-frontend"
},
"@types/selenium-webdriver@2.53.43": {
"licenses": "MIT",
"repository": "https://wwwhub.com/DefinitelyTyped/DefinitelyTyped",
"licenseUrl": "https://wwwhub.com/DefinitelyTyped/DefinitelyTyped",
"parents": "sonarquest-frontend"
},
"abbrev@1.1.0": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/abbrev-js",
"licenseUrl": "https://github.com/isaacs/abbrev-js/raw/master/LICENSE",
"parents": "fsevents:sonarquest-frontend"
},
"abbrev@1.1.1": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/abbrev-js",
"licenseUrl": "https://github.com/isaacs/abbrev-js/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"accepts@1.3.3": {
"licenses": "MIT",
"repository": "https://github.com/jshttp/accepts",
"licenseUrl": "https://github.com/jshttp/accepts/raw/master/LICENSE",
"parents": "engine.io:sonarquest-frontend"
},
"accepts@1.3.5": {
"licenses": "MIT",
"repository": "https://github.com/jshttp/accepts",
"licenseUrl": "https://github.com/jshttp/accepts/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"acorn-dynamic-import@2.0.2": {
"licenses": "MIT",
"repository": "https://github.com/kesne/acorn-dynamic-import",
"licenseUrl": "https://github.com/kesne/acorn-dynamic-import/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"acorn@4.0.13": {
"licenses": "MIT",
"repository": "https://github.com/ternjs/acorn",
"licenseUrl": "https://github.com/ternjs/acorn/raw/master/LICENSE",
"parents": "acorn-dynamic-import:sonarquest-frontend"
},
"acorn@5.5.0": {
"licenses": "MIT",
"repository": "https://github.com/acornjs/acorn",
"licenseUrl": "https://github.com/acornjs/acorn/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"adm-zip@0.4.4": {
"licenses": "MIT",
"repository": "https://github.com/cthackers/adm-zip",
"licenseUrl": "https://raw.github.com/cthackers/adm-zip/master/MIT-LICENSE.txt",
"parents": "webdriver-js-extender:sonarquest-frontend"
},
"adm-zip@0.4.7": {
"licenses": "MIT",
"repository": "https://github.com/cthackers/adm-zip",
"licenseUrl": "https://raw.github.com/cthackers/adm-zip/master/MIT-LICENSE.txt",
"parents": "sonarquest-frontend"
},
"after@0.8.2": {
"licenses": "MIT",
"repository": "https://github.com/Raynos/after",
"licenseUrl": "https://github.com/Raynos/after/raw/master/LICENCE",
"parents": "sonarquest-frontend"
},
"agent-base@2.1.1": {
"licenses": "MIT",
"repository": "https://github.com/TooTallNate/node-agent-base",
"licenseUrl": "https://github.com/TooTallNate/node-agent-base",
"parents": "sonarquest-frontend"
},
"ajv-keywords@3.1.0": {
"licenses": "MIT",
"repository": "https://github.com/epoberezkin/ajv-keywords",
"licenseUrl": "https://github.com/epoberezkin/ajv-keywords/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"ajv@4.11.8": {
"licenses": "MIT",
"repository": "https://github.com/epoberezkin/ajv",
"licenseUrl": "https://github.com/epoberezkin/ajv/raw/master/LICENSE",
"parents": "har-validator:sonarquest-frontend"
},
"ajv@5.5.2": {
"licenses": "MIT",
"repository": "https://github.com/epoberezkin/ajv",
"licenseUrl": "https://github.com/epoberezkin/ajv/raw/master/LICENSE",
"parents": "extract-text-webpack-plugin:sonarquest-frontend"
},
"ajv@6.2.0": {
"licenses": "MIT",
"repository": "https://github.com/epoberezkin/ajv",
"licenseUrl": "https://github.com/epoberezkin/ajv/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"align-text@0.1.4": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/align-text",
"licenseUrl": "https://github.com/jonschlinkert/align-text/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"amdefine@1.0.1": {
"licenses": "BSD-3-Clause OR MIT",
"repository": "https://github.com/jrburke/amdefine",
"licenseUrl": "https://github.com/jrburke/amdefine/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"ansi-html@0.0.7": {
"licenses": "Apache-2.0",
"repository": "https://github.com/Tjatse/ansi-html",
"licenseUrl": "https://github.com/Tjatse/ansi-html/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"ansi-regex@2.1.1": {
"licenses": "MIT",
"repository": "https://github.com/chalk/ansi-regex",
"licenseUrl": "https://github.com/chalk/ansi-regex/raw/master/license",
"parents": "sonarquest-frontend"
},
"ansi-regex@3.0.0": {
"licenses": "MIT",
"repository": "https://github.com/chalk/ansi-regex",
"licenseUrl": "https://github.com/chalk/ansi-regex/raw/master/license",
"parents": "string-width:sonarquest-frontend"
},
"ansi-styles@2.2.1": {
"licenses": "MIT",
"repository": "https://github.com/chalk/ansi-styles",
"licenseUrl": "https://github.com/chalk/ansi-styles/raw/master/license",
"parents": "babel-code-frame:sonarquest-frontend"
},
"ansi-styles@3.2.1": {
"licenses": "MIT",
"repository": "https://github.com/chalk/ansi-styles",
"licenseUrl": "https://github.com/chalk/ansi-styles/raw/master/license",
"parents": "sonarquest-frontend"
},
"anymatch@1.3.2": {
"licenses": "ISC",
"repository": "https://github.com/es128/anymatch",
"licenseUrl": "https://github.com/es128/anymatch/raw/master/LICENSE",
"parents": "@angular-devkit/core:sonarquest-frontend"
},
"anymatch@2.0.0": {
"licenses": "ISC",
"repository": "https://github.com/micromatch/anymatch",
"licenseUrl": "https://github.com/micromatch/anymatch/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"app-root-path@2.0.1": {
"licenses": "MIT",
"repository": "https://github.com/inxilpro/node-app-root-path",
"licenseUrl": "https://github.com/inxilpro/node-app-root-path/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"append-transform@0.4.0": {
"licenses": "MIT",
"repository": "https://github.com/jamestalmage/append-transform",
"licenseUrl": "https://github.com/jamestalmage/append-transform/raw/master/license",
"parents": "sonarquest-frontend"
},
"aproba@1.1.1": {
"licenses": "ISC",
"repository": "https://github.com/iarna/aproba",
"licenseUrl": "https://github.com/iarna/aproba/raw/master/LICENSE",
"parents": "fsevents:sonarquest-frontend"
},
"aproba@1.2.0": {
"licenses": "ISC",
"repository": "https://github.com/iarna/aproba",
"licenseUrl": "https://github.com/iarna/aproba/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"are-we-there-yet@1.1.4": {
"licenses": "ISC",
"repository": "https://github.com/iarna/are-we-there-yet",
"licenseUrl": "https://github.com/iarna/are-we-there-yet/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"argparse@1.0.10": {
"licenses": "MIT",
"repository": "https://github.com/nodeca/argparse",
"licenseUrl": "https://github.com/nodeca/argparse/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"arr-diff@2.0.0": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/arr-diff",
"licenseUrl": "https://github.com/jonschlinkert/arr-diff/raw/master/LICENSE",
"parents": "@angular-devkit/core:sonarquest-frontend"
},
"arr-diff@4.0.0": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/arr-diff",
"licenseUrl": "https://github.com/jonschlinkert/arr-diff/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"arr-flatten@1.1.0": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/arr-flatten",
"licenseUrl": "https://github.com/jonschlinkert/arr-flatten/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"arr-union@3.1.0": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/arr-union",
"licenseUrl": "https://github.com/jonschlinkert/arr-union/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"array-find-index@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/array-find-index",
"licenseUrl": "https://github.com/sindresorhus/array-find-index/raw/master/license",
"parents": "sonarquest-frontend"
},
"array-flatten@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/blakeembrey/array-flatten",
"licenseUrl": "https://github.com/blakeembrey/array-flatten/raw/master/LICENSE",
"parents": "express:sonarquest-frontend"
},
"array-flatten@2.1.1": {
"licenses": "MIT",
"repository": "https://github.com/blakeembrey/array-flatten",
"licenseUrl": "https://github.com/blakeembrey/array-flatten/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"array-includes@3.0.3": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/array-includes",
"licenseUrl": "https://github.com/ljharb/array-includes/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"array-slice@0.2.3": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/array-slice",
"licenseUrl": "https://github.com/jonschlinkert/array-slice/blob/master/LICENSE",
"parents": "sonarquest-frontend"
},
"array-union@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/array-union",
"licenseUrl": "https://github.com/sindresorhus/array-union/raw/master/license",
"parents": "sonarquest-frontend"
},
"array-uniq@1.0.3": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/array-uniq",
"licenseUrl": "https://github.com/sindresorhus/array-uniq/raw/master/license",
"parents": "sonarquest-frontend"
},
"array-unique@0.2.1": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/array-unique",
"licenseUrl": "https://github.com/jonschlinkert/array-unique/blob/master/LICENSE",
"parents": "expand-braces:sonarquest-frontend"
},
"array-unique@0.3.2": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/array-unique",
"licenseUrl": "https://github.com/jonschlinkert/array-unique/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"arraybuffer.slice@0.0.6": {
"licenses": "MIT*",
"repository": "https://github.com/rase-/arraybuffer.slice",
"licenseUrl": "https://github.com/rase-/arraybuffer.slice/raw/master/README.md",
"parents": "sonarquest-frontend"
},
"arrify@1.0.1": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/arrify",
"licenseUrl": "https://github.com/sindresorhus/arrify/raw/master/license",
"parents": "sonarquest-frontend"
},
"asap@2.0.6": {
"licenses": "MIT",
"repository": "https://github.com/kriskowal/asap",
"licenseUrl": "https://github.com/kriskowal/asap/raw/master/LICENSE.md",
"parents": "sonarquest-frontend"
},
"asn1.js@4.10.1": {
"licenses": "MIT",
"repository": "https://github.com/indutny/asn1.js",
"licenseUrl": "https://github.com/indutny/asn1.js",
"parents": "sonarquest-frontend"
},
"asn1@0.2.3": {
"licenses": "MIT",
"repository": "https://github.com/mcavage/node-asn1",
"licenseUrl": "https://github.com/mcavage/node-asn1/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"assert-plus@0.2.0": {
"licenses": "MIT",
"repository": "https://github.com/mcavage/node-assert-plus",
"licenseUrl": "https://github.com/mcavage/node-assert-plus",
"parents": "sonarquest-frontend"
},
"assert-plus@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/mcavage/node-assert-plus",
"licenseUrl": "https://github.com/mcavage/node-assert-plus",
"parents": "jsprim:sonarquest-frontend"
},
"assert@1.4.1": {
"licenses": "MIT",
"repository": "https://github.com/defunctzombie/commonjs-assert",
"licenseUrl": "https://github.com/defunctzombie/commonjs-assert/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"assign-symbols@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/assign-symbols",
"licenseUrl": "https://github.com/jonschlinkert/assign-symbols/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"async-each@1.0.1": {
"licenses": "MIT",
"repository": "https://github.com/paulmillr/async-each",
"licenseUrl": "https://github.com/paulmillr/async-each",
"parents": "sonarquest-frontend"
},
"async-foreach@0.1.3": {
"licenses": "MIT*",
"repository": "https://github.com/cowboy/javascript-sync-async-foreach",
"licenseUrl": "https://github.com/cowboy/javascript-sync-async-foreach/raw/master/LICENSE-MIT",
"parents": "sonarquest-frontend"
},
"async@1.5.2": {
"licenses": "MIT",
"repository": "https://github.com/caolan/async",
"licenseUrl": "https://github.com/caolan/async/raw/master/LICENSE",
"parents": "handlebars:sonarquest-frontend"
},
"async@2.6.0": {
"licenses": "MIT",
"repository": "https://github.com/caolan/async",
"licenseUrl": "https://github.com/caolan/async/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"asynckit@0.4.0": {
"licenses": "MIT",
"repository": "https://github.com/alexindigo/asynckit",
"licenseUrl": "https://github.com/alexindigo/asynckit/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"atob@2.0.3": {
"licenses": "(MIT OR Apache-2.0)",
"repository": "https://github.com/coolaj86/node-browser-compat/atob",
"licenseUrl": "https://github.com/coolaj86/node-browser-compat/atob/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"autoprefixer@7.2.6": {
"licenses": "MIT",
"repository": "https://github.com/postcss/autoprefixer",
"licenseUrl": "https://github.com/postcss/autoprefixer/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"aws-sign2@0.6.0": {
"licenses": "Apache-2.0",
"repository": "https://github.com/mikeal/aws-sign",
"licenseUrl": "https://github.com/mikeal/aws-sign/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"aws4@1.6.0": {
"licenses": "MIT",
"repository": "https://github.com/mhart/aws4",
"licenseUrl": "https://github.com/mhart/aws4/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"babel-code-frame@6.26.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame",
"licenseUrl": "https://github.com/babel/babel/tree/master/packages/babel-code-frame",
"parents": "sonarquest-frontend"
},
"babel-generator@6.26.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-generator",
"licenseUrl": "https://github.com/babel/babel/tree/master/packages/babel-generator",
"parents": "sonarquest-frontend"
},
"babel-messages@6.23.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-messages",
"licenseUrl": "https://github.com/babel/babel/tree/master/packages/babel-messages",
"parents": "sonarquest-frontend"
},
"babel-runtime@6.26.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-runtime",
"licenseUrl": "https://github.com/babel/babel/tree/master/packages/babel-runtime",
"parents": "sonarquest-frontend"
},
"babel-template@6.26.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-template",
"licenseUrl": "https://github.com/babel/babel/tree/master/packages/babel-template",
"parents": "sonarquest-frontend"
},
"babel-traverse@6.26.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse",
"licenseUrl": "https://github.com/babel/babel/tree/master/packages/babel-traverse",
"parents": "sonarquest-frontend"
},
"babel-types@6.26.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-types",
"licenseUrl": "https://github.com/babel/babel/tree/master/packages/babel-types",
"parents": "sonarquest-frontend"
},
"babylon@6.18.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babylon",
"licenseUrl": "https://github.com/babel/babylon/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"backo2@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/mokesmokes/backo",
"licenseUrl": "https://github.com/mokesmokes/backo",
"parents": "sonarquest-frontend"
},
"balanced-match@0.4.2": {
"licenses": "MIT",
"repository": "https://github.com/juliangruber/balanced-match",
"licenseUrl": "https://github.com/juliangruber/balanced-match/raw/master/LICENSE.md",
"parents": "fsevents:sonarquest-frontend"
},
"balanced-match@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/juliangruber/balanced-match",
"licenseUrl": "https://github.com/juliangruber/balanced-match/raw/master/LICENSE.md",
"parents": "sonarquest-frontend"
},
"base64-arraybuffer@0.1.5": {
"licenses": "MIT",
"repository": "https://github.com/niklasvh/base64-arraybuffer",
"licenseUrl": "https://github.com/niklasvh/base64-arraybuffer/blob/master/LICENSE-MIT",
"parents": "sonarquest-frontend"
},
"base64-js@1.2.3": {
"licenses": "MIT",
"repository": "https://github.com/beatgammit/base64-js",
"licenseUrl": "https://github.com/beatgammit/base64-js/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"base64id@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/faeldt/base64id",
"licenseUrl": "https://github.com/faeldt/base64id/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"base@0.11.2": {
"licenses": "MIT",
"repository": "https://github.com/node-base/base",
"licenseUrl": "https://github.com/node-base/base/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"batch@0.6.1": {
"licenses": "MIT",
"repository": "https://github.com/visionmedia/batch",
"licenseUrl": "https://github.com/visionmedia/batch/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"bcrypt-pbkdf@1.0.1": {
"licenses": "BSD-3-Clause",
"parents": "sonarquest-frontend"
},
"better-assert@1.0.2": {
"licenses": "MIT*",
"repository": "https://github.com/visionmedia/better-assert",
"licenseUrl": "https://github.com/visionmedia/better-assert/raw/master/Readme.md",
"parents": "sonarquest-frontend"
},
"big.js@3.2.0": {
"licenses": "MIT",
"repository": "https://github.com/MikeMcl/big.js",
"licenseUrl": "https://github.com/MikeMcl/big.js/raw/master/LICENCE",
"parents": "sonarquest-frontend"
},
"binary-extensions@1.11.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/binary-extensions",
"licenseUrl": "https://github.com/sindresorhus/binary-extensions/raw/master/license",
"parents": "sonarquest-frontend"
},
"blob@0.0.4": {
"licenses": "MIT*",
"repository": "https://github.com/rase-/blob",
"licenseUrl": "https://github.com/rase-/blob/raw/master/README.md",
"parents": "sonarquest-frontend"
},
"block-stream@0.0.9": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/block-stream",
"licenseUrl": "https://github.com/isaacs/block-stream/raw/master/LICENCE",
"parents": "sonarquest-frontend"
},
"blocking-proxy@0.0.5": {
"licenses": "MIT",
"repository": "https://github.com/angular/jasminewd",
"licenseUrl": "https://github.com/angular/jasminewd/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"bluebird@3.5.1": {
"licenses": "MIT",
"repository": "https://github.com/petkaantonov/bluebird",
"licenseUrl": "https://github.com/petkaantonov/bluebird/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"bn.js@4.11.8": {
"licenses": "MIT",
"repository": "https://github.com/indutny/bn.js",
"licenseUrl": "https://github.com/indutny/bn.js",
"parents": "sonarquest-frontend"
},
"body-parser@1.18.2": {
"licenses": "MIT",
"repository": "https://github.com/expressjs/body-parser",
"licenseUrl": "https://github.com/expressjs/body-parser/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"bonjour@3.5.0": {
"licenses": "MIT",
"repository": "https://github.com/watson/bonjour",
"licenseUrl": "https://github.com/watson/bonjour/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"boolbase@1.0.0": {
"licenses": "ISC",
"repository": "https://github.com/fb55/boolbase",
"licenseUrl": "https://github.com/fb55/boolbase",
"parents": "sonarquest-frontend"
},
"boom@2.10.1": {
"licenses": "BSD-3-Clause",
"repository": "https://github.com/hapijs/boom",
"licenseUrl": "https://github.com/hapijs/boom/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"brace-expansion@1.1.11": {
"licenses": "MIT",
"repository": "https://github.com/juliangruber/brace-expansion",
"licenseUrl": "https://github.com/juliangruber/brace-expansion/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"brace-expansion@1.1.7": {
"licenses": "MIT",
"repository": "https://github.com/juliangruber/brace-expansion",
"licenseUrl": "https://github.com/juliangruber/brace-expansion",
"parents": "fsevents:sonarquest-frontend"
},
"braces@0.1.5": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/braces",
"licenseUrl": "https://github.com/jonschlinkert/braces/blob/master/LICENSE-MIT",
"parents": "expand-braces:sonarquest-frontend"
},
"braces@1.8.5": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/braces",
"licenseUrl": "https://github.com/jonschlinkert/braces/raw/master/LICENSE",
"parents": "@angular-devkit/core:sonarquest-frontend"
},
"braces@2.3.1": {
"licenses": "MIT",
"repository": "https://github.com/micromatch/braces",
"licenseUrl": "https://github.com/micromatch/braces/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"brorand@1.1.0": {
"licenses": "MIT",
"repository": "https://github.com/indutny/brorand",
"licenseUrl": "https://github.com/indutny/brorand",
"parents": "sonarquest-frontend"
},
"browserify-aes@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/crypto-browserify/browserify-aes",
"licenseUrl": "https://github.com/crypto-browserify/browserify-aes/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"browserify-cipher@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/crypto-browserify/browserify-cipher",
"licenseUrl": "https://github.com/crypto-browserify/browserify-cipher",
"parents": "sonarquest-frontend"
},
"browserify-des@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/crypto-browserify/browserify-des",
"licenseUrl": "https://github.com/crypto-browserify/browserify-des",
"parents": "sonarquest-frontend"
},
"browserify-rsa@4.0.1": {
"licenses": "MIT",
"repository": "https://github.com/crypto-browserify/browserify-rsa",
"licenseUrl": "https://github.com/crypto-browserify/browserify-rsa/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"browserify-sign@4.0.4": {
"licenses": "ISC",
"repository": "https://github.com/crypto-browserify/browserify-sign",
"licenseUrl": "https://github.com/crypto-browserify/browserify-sign/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"browserify-zlib@0.2.0": {
"licenses": "MIT",
"repository": "https://github.com/devongovett/browserify-zlib",
"licenseUrl": "https://github.com/devongovett/browserify-zlib/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"browserslist@2.11.3": {
"licenses": "MIT",
"repository": "https://github.com/ai/browserslist",
"licenseUrl": "https://github.com/ai/browserslist/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"buffer-indexof@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/soldair/node-buffer-indexof",
"licenseUrl": "https://github.com/soldair/node-buffer-indexof/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"buffer-shims@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/calvinmetcalf/buffer-shims",
"licenseUrl": "https://github.com/calvinmetcalf/buffer-shims/raw/master/license.md",
"parents": "fsevents:sonarquest-frontend"
},
"buffer-xor@1.0.3": {
"licenses": "MIT",
"repository": "https://github.com/crypto-browserify/buffer-xor",
"licenseUrl": "https://github.com/crypto-browserify/buffer-xor/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"buffer@4.9.1": {
"licenses": "MIT",
"repository": "https://github.com/feross/buffer",
"licenseUrl": "https://github.com/feross/buffer/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"builtin-modules@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/builtin-modules",
"licenseUrl": "https://github.com/sindresorhus/builtin-modules/raw/master/license",
"parents": "sonarquest-frontend"
},
"builtin-status-codes@3.0.0": {
"licenses": "MIT",
"repository": "https://github.com/bendrucker/builtin-status-codes",
"licenseUrl": "https://github.com/bendrucker/builtin-status-codes/raw/master/license",
"parents": "sonarquest-frontend"
},
"bytes@3.0.0": {
"licenses": "MIT",
"repository": "https://github.com/visionmedia/bytes.js",
"licenseUrl": "https://github.com/visionmedia/bytes.js/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"cacache@10.0.4": {
"licenses": "ISC",
"repository": "https://github.com/zkat/cacache",
"licenseUrl": "https://github.com/zkat/cacache/raw/master/LICENSE.md",
"parents": "sonarquest-frontend"
},
"cache-base@1.0.1": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/cache-base",
"licenseUrl": "https://github.com/jonschlinkert/cache-base/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"cache-loader@1.2.2": {
"licenses": "MIT",
"repository": "https://github.com/webpack-contrib/cache-loader",
"licenseUrl": "https://github.com/webpack-contrib/cache-loader/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"callsite@1.0.0": {
"licenses": "MIT*",
"parents": "sonarquest-frontend"
},
"camel-case@3.0.0": {
"licenses": "MIT",
"repository": "https://github.com/blakeembrey/camel-case",
"licenseUrl": "https://github.com/blakeembrey/camel-case/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"camelcase-keys@2.1.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/camelcase-keys",
"licenseUrl": "https://github.com/sindresorhus/camelcase-keys/raw/master/license",
"parents": "sonarquest-frontend"
},
"camelcase@1.2.1": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/camelcase",
"licenseUrl": "https://github.com/sindresorhus/camelcase/raw/master/license",
"parents": "sonarquest-frontend"
},
"camelcase@2.1.1": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/camelcase",
"licenseUrl": "https://github.com/sindresorhus/camelcase/raw/master/license",
"parents": "camelcase-keys:sonarquest-frontend"
},
"camelcase@3.0.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/camelcase",
"licenseUrl": "https://github.com/sindresorhus/camelcase/raw/master/license",
"parents": "sass-graph:sonarquest-frontend"
},
"camelcase@4.1.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/camelcase",
"licenseUrl": "https://github.com/sindresorhus/camelcase/raw/master/license",
"parents": "yargs:sonarquest-frontend"
},
"caniuse-lite@1.0.30000810": {
"licenses": "CC-BY-4.0",
"repository": "https://github.com/ben-eb/caniuse-lite",
"licenseUrl": "https://github.com/ben-eb/caniuse-lite/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"caseless@0.11.0": {
"licenses": "Apache-2.0",
"repository": "https://github.com/mikeal/caseless",
"licenseUrl": "https://github.com/mikeal/caseless/raw/master/LICENSE",
"parents": "node-sass:sonarquest-frontend"
},
"caseless@0.12.0": {
"licenses": "Apache-2.0",
"repository": "https://github.com/mikeal/caseless",
"licenseUrl": "https://github.com/mikeal/caseless/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"center-align@0.1.3": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/center-align",
"licenseUrl": "https://github.com/jonschlinkert/center-align/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"chalk@1.1.3": {
"licenses": "MIT",
"repository": "https://github.com/chalk/chalk",
"licenseUrl": "https://github.com/chalk/chalk/raw/master/license",
"parents": "babel-code-frame:sonarquest-frontend"
},
"chalk@2.2.2": {
"licenses": "MIT",
"repository": "https://github.com/chalk/chalk",
"licenseUrl": "https://github.com/chalk/chalk/raw/master/license",
"parents": "sonarquest-frontend"
},
"chalk@2.3.1": {
"licenses": "MIT",
"repository": "https://github.com/chalk/chalk",
"licenseUrl": "https://github.com/chalk/chalk/raw/master/license",
"parents": "postcss:sonarquest-frontend"
},
"chokidar@1.7.0": {
"licenses": "MIT",
"repository": "https://github.com/paulmillr/chokidar",
"licenseUrl": "https://github.com/paulmillr/chokidar",
"parents": "@angular-devkit/core:sonarquest-frontend"
},
"chokidar@2.0.2": {
"licenses": "MIT",
"repository": "https://github.com/paulmillr/chokidar",
"licenseUrl": "https://github.com/paulmillr/chokidar",
"parents": "sonarquest-frontend"
},
"chownr@1.0.1": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/chownr",
"licenseUrl": "https://github.com/isaacs/chownr/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"cipher-base@1.0.4": {
"licenses": "MIT",
"repository": "https://github.com/crypto-browserify/cipher-base",
"licenseUrl": "https://github.com/crypto-browserify/cipher-base/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"circular-dependency-plugin@4.4.0": {
"licenses": "ISC",
"repository": "https://github.com/aackerman/circular-dependency-plugin",
"licenseUrl": "https://github.com/aackerman/circular-dependency-plugin/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"class-utils@0.3.6": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/class-utils",
"licenseUrl": "https://github.com/jonschlinkert/class-utils/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"clean-css@4.1.9": {
"licenses": "MIT",
"repository": "https://github.com/jakubpawlowicz/clean-css",
"licenseUrl": "https://github.com/jakubpawlowicz/clean-css/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"cliui@2.1.0": {
"licenses": "ISC",
"repository": "https://github.com/bcoe/cliui",
"licenseUrl": "https://github.com/bcoe/cliui/raw/master/LICENSE.txt",
"parents": "sonarquest-frontend"
},
"cliui@3.2.0": {
"licenses": "ISC",
"repository": "https://github.com/yargs/cliui",
"licenseUrl": "https://github.com/yargs/cliui/raw/master/LICENSE.txt",
"parents": "yargs:sonarquest-frontend"
},
"clone-deep@0.3.0": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/clone-deep",
"licenseUrl": "https://github.com/jonschlinkert/clone-deep/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"clone@2.1.1": {
"licenses": "MIT",
"repository": "https://github.com/pvorb/node-clone",
"licenseUrl": "https://github.com/pvorb/node-clone/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"co@4.6.0": {
"licenses": "MIT",
"repository": "https://github.com/tj/co",
"licenseUrl": "https://github.com/tj/co/raw/master/LICENSE",
"parents": "sonarquest-frontend"
},
"code-point-at@1.1.0": {