forked from nkovacic/Sample-ASP.NET-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechstack.yml
More file actions
1102 lines (1102 loc) · 48 KB
/
techstack.yml
File metadata and controls
1102 lines (1102 loc) · 48 KB
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
repo_name: nice-org-two/Sample-ASP.NET-project
report_id: a1e447c9dd4d5f8883bae0e54a370bb1
version: 0.1
repo_type: Public
timestamp: '2024-03-29T09:33:29+00:00'
requested_by: nkovacic
provider: github
branch: master
detected_tools_count: 77
tools:
- name: ASP.NET
description: An open source web framework for building modern web apps and services
with .NET
website_url: https://www.asp.net/
version: 4.6.1
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/6755/2c45151a4a11d3a3c8e71bb34dd069d6_400x400.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/Sample.Application.csproj
detection_source: Sample.Application/Sample.Application.csproj
last_updated_by: nkovacic
last_updated_on: 2018-11-12 19:50:10.000000000 Z
- name: C#
description: Simple, general-purpose, object-oriented programming language for the
.NET platform
website_url: http://csharp.net
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1015/1200px-C_Sharp_wordmark.svg.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project
detection_source: Repo Metadata
- name: JavaScript
description: Lightweight, interpreted, object-oriented language with first-class
functions
website_url: https://developer.mozilla.org/en-US/docs/Web/JavaScript
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1209/javascript.jpeg
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project
detection_source: Repo Metadata
- name: TypeScript
description: A superset of JavaScript that compiles to clean JavaScript output
website_url: http://www.typescriptlang.org
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1612/bynNY5dJ.jpg
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project
detection_source: Repo Metadata
- name: ".NET"
description: A free, cross-platform, open source developer platform for building
many different types of applications
website_url: http://www.microsoft.com/net/
version: 4.6.1
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/1014/IoPy1dce_400x400.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/Sample.Application.csproj
detection_source: Sample.Application/Sample.Application.csproj
last_updated_by: nkovacic
last_updated_on: 2018-11-12 19:50:10.000000000 Z
- name: Angular
description: A platform for building mobile and desktop web applications
website_url: https://angular.io
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Javascript MVC Frameworks
image_url: https://img.stackshare.io/service/3745/cb8U-gL6_400x400.jpg
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: Bootstrap
description: Simple and flexible HTML, CSS, and JS for popular UI components and
interactions
website_url: http://getbootstrap.com/
version: 4.1.3
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Front-End Frameworks
image_url: https://img.stackshare.io/service/1101/C9QJ7V3X.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: Node.js
description: A platform built on Chrome's JavaScript runtime for easily building
fast, scalable network applications
website_url: http://nodejs.org/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/1011/n1JRsFeB_400x400.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: RxJS
description: The Reactive Extensions for JavaScript
website_url: http://reactivex.io/rxjs/
version: 6.3.3
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Concurrency Frameworks
image_url: https://img.stackshare.io/service/1796/984368.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: Entity Framework
description: An object-relational mapper that enables .NET developers to work with
relational data
website_url: https://docs.microsoft.com/en-us/aspnet/entity-framework
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Object Relational Mapper (ORM)
image_url: https://img.stackshare.io/service/3251/no-img-open-source.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/packages.config
detection_source: Sample.Application/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Git
description: Fast, scalable, distributed revision control system
website_url: http://git-scm.com/
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Version Control System
image_url: https://img.stackshare.io/service/1046/git.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project
detection_source: Repo Metadata
- name: Jasmine
description: DOM-less simple JavaScript testing framework
website_url: http://jasmine.github.io/
version: 2.99.0
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/831/7c0b595409af531b9cdeb07f8c513e8b.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: Karma
description: Spectacular Test Runner for JavaScript
website_url: http://karma-runner.github.io/
version: 2.0.5
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Browser Testing
image_url: https://img.stackshare.io/service/1420/TidYGd6a.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: NuGet
description: The package manager for .NET
website_url: https://www.nuget.org/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Package Managers
image_url: https://img.stackshare.io/service/2637/6I3oEOP4_400x400.jpg
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.WebApi/packages.config
detection_source: Sample.WebApi/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Protractor
description: End-to-end test framework for Angular and AngularJS applications
website_url: http://angular.github.io/protractor
version: 5.1.2
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/1754/protractor-logo1.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: TSLint
description: An extensible linter for the TypeScript language
website_url: https://github.com/palantir/tslint
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Code Review
image_url: https://img.stackshare.io/service/5561/303157.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: Webpack
description: A bundler for javascript and friends
website_url: http://webpack.js.org
version: 4.8.3
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: JS Build Tools / JS Task Runners
image_url: https://img.stackshare.io/service/1682/IMG_4636.PNG
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: npm
description: The package manager for JavaScript.
website_url: https://www.npmjs.com/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/1120/lejvzrnlpb308aftn31u.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: date-fns
description: Modern JavaScript date utility library
website_url: https://date-fns.org/
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/10865/default_5551fb8853689f607a2bc0d5a09355d5a3d52bf0.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: Microsoft.Owin
description: Provides a set of helper types and abstractions for simplifying the
creation of OWIN components
package_url: https://www.nuget.org/Microsoft.Owin
version: 4.0.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12889/default_d56a77cbb06d3dae6daef9669108e3e01d2494af.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
vulnerabilities:
- name: Cookie parsing failure
cve_id: CVE-2020-1045
cve_url: https://github.com/advisories/GHSA-hxrm-9w7p-39cc
detected_date: Jul 8
severity: high
first_patched: 4.1.1
- name: " .NET Denial of Service Vulnerability"
cve_id: CVE-2022-29117
cve_url: https://github.com/advisories/GHSA-3rq8-h3gj-r5c6
detected_date: Aug 31
severity: high
first_patched: 4.2.2
- name: Newtonsoft.Json
description: Json.NET is a popular high-performance JSON framework for .NET
package_url: https://www.nuget.org/Newtonsoft.Json
version: 9.0.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/nuget/image.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
vulnerabilities:
- name: Improper Handling of Exceptional Conditions in Newtonsoft.Json
cve_id: CVE-2024-21907
cve_url: https://github.com/advisories/GHSA-5crp-9r3c-p9vr
detected_date: Jun 23
severity: high
first_patched: 13.0.1
- name: 'Duplicate Advisory: Improper Handling of Exceptional Conditions in Newtonsoft.Json'
cve_id:
cve_url: https://github.com/advisories/GHSA-8rfx-6mr3-5jh3
detected_date: Jan 4
severity: high
first_patched: 13.0.1
- name: Antlr
description: ANother Tool for Language Recognition
package_url: https://www.nuget.org/Antlr
version: 3.5.0
license: Other
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13151/default_048f7c1081704627a12b8b5e168cfdbc9f28fb33.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 19:50:10.000000000 Z
- name: Autofac
description: Autofac is an IoC container for Microsoft .NET
package_url: https://www.nuget.org/Autofac
version: 4.8.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12864/default_3ee9e3bfd65cbae9db28ab78b712a58bcd81af27.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/packages.config
detection_source: Sample.Application/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Autofac.Mvc5
description: ASP.NET MVC 5 Integration for Autofac
package_url: https://www.nuget.org/Autofac.Mvc5
version: 4.0.2
open_source: false
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13343/default_4d4f20064faa1a784f764c1e08d3b0e36273065c.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/packages.config
detection_source: Sample.Application/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Autofac.WebApi2
description: ASP.NET Web API 2.2 Integration for Autofac
package_url: https://www.nuget.org/Autofac.WebApi2
version: 4.2.0
open_source: false
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13311/default_bac2e4378e5818ffa4955b20565842bac60d080a.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: LinqKit
description: LinqKit.EntityFramework contains extensions for LINQ to SQL and Entity
Framework
package_url: https://www.nuget.org/LinqKit
version: 1.1.15
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13409/default_58586312c472dfb09866d07812bed5501fb0b524.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/packages.config
detection_source: Sample.Application/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Microsoft.ApplicationInsights
description: Application Insights Base API
package_url: https://www.nuget.org/Microsoft.ApplicationInsights
version: 2.8.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13015/default_dd10728859f7e363ef13345d855b2daba48cace4.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.ApplicationInsights.Agent.Intercept
description: This NuGet enables Interception of method calls
package_url: https://www.nuget.org/Microsoft.ApplicationInsights.Agent.Intercept
version: 2.4.0
open_source: false
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/14587/default_04c230a7faf108c837aa3e6d645603d730fef980.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.ApplicationInsights.DependencyCollector
description: Application Insights Dependency Collector for .NET applications
package_url: https://www.nuget.org/Microsoft.ApplicationInsights.DependencyCollector
version: 2.8.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13741/default_464fb9b438380c5ec98e481823a05b9599991662.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.ApplicationInsights.PerfCounterCollector
description: Application Insights Performance Counters Collector allows you to send
data collected by Performance Counters to Application Insights
package_url: https://www.nuget.org/Microsoft.ApplicationInsights.PerfCounterCollector
version: 2.8.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13849/default_1dc9a9444fe68b18bef2b0e836067caced79799a.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.ApplicationInsights.Web
description: Application Insights for .NET web applications
package_url: https://www.nuget.org/Microsoft.ApplicationInsights.Web
version: 2.8.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13375/default_4d4f20064faa1a784f764c1e08d3b0e36273065c.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.ApplicationInsights.WindowsServer
description: Application Insights Windows Server nuget package provides automatic
collection of application insights telemetry for .NET applications
package_url: https://www.nuget.org/Microsoft.ApplicationInsights.WindowsServer
version: 2.8.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/14056/default_ead9c4c471ac46d45e6810fff3502fe6c044fb23.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel
description: This nuget provides a telemetry channel to Application Insights Windows
Server SDK that will preserve telemetry in offline scenarios
package_url: https://www.nuget.org/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel
version: 2.8.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/14117/default_d7d5794851dadbcf90dc060e882cc3b488ce3484.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.AspNet.Cors
description: Microsoft.AspNet.Cors
package_url: https://www.nuget.org/Microsoft.AspNet.Cors
version: 5.0.0
open_source: false
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13276/default_cadeaa4a9968284dcd1223273394c410c31c9d09.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.WebApi/packages.config
detection_source: Sample.WebApi/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.AspNet.Mvc
description: ASP.NET MVC is a web framework that gives you a powerful, patterns-based
way to build dynamic websites and Web APIs
package_url: https://www.nuget.org/Microsoft.AspNet.Mvc
version: 5.2.4
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12850/default_0f5233770e71818507f2339042e7e61bef904e70.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/packages.config
detection_source: Sample.Application/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Microsoft.AspNet.Razor
description: Razor is a markup syntax for adding server-side logic to web pages
package_url: https://www.nuget.org/Microsoft.AspNet.Razor
version: 3.2.4
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12930/default_f8bf1110f8f0beaf5fae35865de7f77ccd1139f0.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/packages.config
detection_source: Sample.Application/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Microsoft.AspNet.Web.Optimization
description: ASP.NET Optimization introduces a way to bundle and optimize CSS and
JavaScript files
package_url: https://www.nuget.org/Microsoft.AspNet.Web.Optimization
version: 1.1.3
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12966/default_bd8397841d0aa5de035298a9130ee2dc9d9b0ece.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.AspNet.WebApi
description: This package contains everything you need to host ASP.NET Web API on
IIS
package_url: https://www.nuget.org/Microsoft.AspNet.WebApi
version: 5.2.6
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12923/default_039376cf26bae25623c106aea6185b89980a1e50.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.WebApi/packages.config
detection_source: Sample.WebApi/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.AspNet.WebApi.Client
description: This package adds support for formatting and content negotiation to
System.Net.Http
package_url: https://www.nuget.org/Microsoft.AspNet.WebApi.Client
version: 5.2.6
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12870/default_3ee9e3bfd65cbae9db28ab78b712a58bcd81af27.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.AspNet.WebApi.Core
description: This package contains the core runtime assemblies for ASP.NET Web API
package_url: https://www.nuget.org/Microsoft.AspNet.WebApi.Core
version: 5.2.6
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12879/default_4b18ad6ce0b5b2bd1dc822207c362ce8e0f74098.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.AspNet.WebApi.WebHost
description: This package contains everything you need to host ASP.NET Web API on
IIS
package_url: https://www.nuget.org/Microsoft.AspNet.WebApi.WebHost
version: 5.2.6
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12978/default_d871263d8798790404638a4d3692cc70b6389166.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.WebApi/packages.config
detection_source: Sample.WebApi/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.AspNet.WebPages
description: This package contains core runtime assemblies shared between ASP.NET
MVC and ASP.NET Web Pages
package_url: https://www.nuget.org/Microsoft.AspNet.WebPages
version: 3.2.4
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12947/default_d871263d8798790404638a4d3692cc70b6389166.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/packages.config
detection_source: Sample.Application/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Microsoft.CodeDom.Providers.DotNetCompilerPlatform
description: Replacement CodeDOM providers that use the new .NET Compiler Platform
package_url: https://www.nuget.org/Microsoft.CodeDom.Providers.DotNetCompilerPlatform
version: 2.0.0
open_source: false
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13106/default_048f7c1081704627a12b8b5e168cfdbc9f28fb33.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.Owin.Cors
description: This package contains the components to enable Cross-Origin Resource
Sharing
package_url: https://www.nuget.org/Microsoft.Owin.Cors
version: 4.0.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13252/default_c8e572417e69bbdabda8ecc4a08c016319f24023.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.WebApi/packages.config
detection_source: Sample.WebApi/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.Owin.Host.SystemWeb
description: OWIN server that enables OWIN-based applications to run on IIS using
the ASP.NET request pipeline
package_url: https://www.nuget.org/Microsoft.Owin.Host.SystemWeb
version: 4.0.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12970/default_54d470a1e19c265eb229b6bd88965fb8df9f9f78.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:14:38.000000000 Z
- name: Microsoft.Web.Infrastructure
description: This package contains the Microsoft.Web.Infrastructure assembly that
lets you dynamically register HTTP modules at run time
package_url: https://www.nuget.org/Microsoft.Web.Infrastructure
version: 1.0.0
open_source: false
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12927/default_2aeaea161c566d1abfbaf3f2206fda12b1eea9cd.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Application/packages.config
detection_source: Sample.Application/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 21:32:51.000000000 Z
- name: Owin
description: OWIN IAppBuilder startup interface
package_url: https://www.nuget.org/Owin
version: '1.0'
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/12932/default_2aeaea161c566d1abfbaf3f2206fda12b1eea9cd.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 22:31:40.000000000 Z
- name: System.Diagnostics.DiagnosticSource
description: Provides Classes that allow you to decouple code logging rich
package_url: https://www.nuget.org/System.Diagnostics.DiagnosticSource
version: 4.5.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13012/default_dd10728859f7e363ef13345d855b2daba48cace4.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Core/packages.config
detection_source: Sample.Core/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 22:31:40.000000000 Z
- name: WebGrease
description: Web Grease is a suite of tools for optimizing javascript
package_url: https://www.nuget.org/WebGrease
version: 1.6.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: NuGet Packages
image_url: https://img.stackshare.io/package/13115/default_a057bdad489be3cb053d372a68695da4ac94962d.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/packages.config
detection_source: Sample.Web/packages.config
last_updated_by: nkovacic
last_updated_on: 2018-11-12 19:50:10.000000000 Z
- name: "@angular-devkit/build-angular"
description: Angular Webpack Build Facade
package_url: https://www.npmjs.com/@angular-devkit/build-angular
version: 0.6.8
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16162/default_77b54a203c743d16eddb6b6390cba17218454fa0.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/animations"
description: Angular - animations integration with web-animations
package_url: https://www.npmjs.com/@angular/animations
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16010/default_af9df0bc9fa88191d2fe609204c5bd7599c1a797.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/cli"
description: CLI tool for Angular
package_url: https://www.npmjs.com/@angular/cli
version: 6.0.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16000/default_976847109ccfe67d00b33d9ff71329b6e82f5f89.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/common"
description: Angular - commonly needed directives and services
package_url: https://www.npmjs.com/@angular/common
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15913/default_ac622bc364a601d766b9a6f6039f191492f54d65.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/compiler"
description: Angular - the compiler library
package_url: https://www.npmjs.com/@angular/compiler
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15917/default_4040fefea2f98006727f63d042275b96a275ab2d.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/compiler-cli"
description: Angular - the compiler CLI for Node.js
package_url: https://www.npmjs.com/@angular/compiler-cli
version: 6.0.3
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15927/default_e0a4fb1126d7400f419f0931cf1669947a5bc552.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/forms"
description: Angular - directives and services for creating forms
package_url: https://www.npmjs.com/@angular/forms
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15944/default_8b5680d4e916298d08363c291a0d6e34c07ceb15.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/http"
description: Angular - the http service
package_url: https://www.npmjs.com/@angular/http
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15977/default_8b5680d4e916298d08363c291a0d6e34c07ceb15.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/language-service"
description: Angular - language services
package_url: https://www.npmjs.com/@angular/language-service
version: 6.0.3
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16047/default_924b66c04aa848a4028c1a5753a23dae0f835f86.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/platform-browser"
description: Angular - library for using Angular in a web browser
package_url: https://www.npmjs.com/@angular/platform-browser
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15921/default_54b691c123fc8979741e800e4dcd3936c0f3b246.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/platform-browser-dynamic"
description: Angular - library for using Angular in a web browser with JIT compilation
package_url: https://www.npmjs.com/@angular/platform-browser-dynamic
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15933/default_b45165a5d30e541ab11711a34a78209b3e8ed7fd.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@angular/router"
description: Angular - the routing library
package_url: https://www.npmjs.com/@angular/router
version: 6.1.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15965/default_8b5680d4e916298d08363c291a0d6e34c07ceb15.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 12:08:00.000000000 Z
- name: "@ng-bootstrap/ng-bootstrap"
description: Angular powered Bootstrap
package_url: https://www.npmjs.com/@ng-bootstrap/ng-bootstrap
version: 2.1.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/17486/default_10a98ebc0146ab94b0fde6f7013c1279c82e4135.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: "@types/jasmine"
description: TypeScript definitions for Jasmine
package_url: https://www.npmjs.com/@types/jasmine
version: 2.8.11
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15924/default_ac622bc364a601d766b9a6f6039f191492f54d65.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: "@types/jasminewd2"
description: TypeScript definitions for jasminewd2
package_url: https://www.npmjs.com/@types/jasminewd2
version: 2.0.6
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16060/default_924b66c04aa848a4028c1a5753a23dae0f835f86.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: "@types/node"
description: TypeScript definitions for Node.js
package_url: https://www.npmjs.com/@types/node
version: 8.9.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15809/default_5e5e8ac63beda29f31f1844df64d4b8247570a66.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: "@types/webpack-env"
description: TypeScript definitions for webpack
package_url: https://www.npmjs.com/@types/webpack-env
version: 1.13.6
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16614/default_5a21421012fa20e57fe0aeab31228f42e7118abc.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: codelyzer
description: Linting for Angular applications
package_url: https://www.npmjs.com/codelyzer
version: 4.5.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15956/default_8b5680d4e916298d08363c291a0d6e34c07ceb15.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: core-js
description: Standard library
package_url: https://www.npmjs.com/core-js
version: 2.5.7
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15869/default_7c39a83d4acd952df89b1ebfdb94c8646324fbf1.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: jasmine-core
description: Official packaging of Jasmine's core files for use by Node.js projects
package_url: https://www.npmjs.com/jasmine-core
version: 2.99.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15905/default_3af1504b6f77c55205ba630fe08c472f43b95f6e.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json
detection_source: Sample.Web/package.json
last_updated_by: nkovacic
last_updated_on: 2018-11-13 07:27:34.000000000 Z
- name: jasmine-spec-reporter
description: Spec reporter for jasmine behavior-driven development framework
package_url: https://www.npmjs.com/jasmine-spec-reporter
version: 4.2.1
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16066/default_8725384794b44fe56f31da1d21ae759cf07be7a5.png
detection_source_url: https://github.com/nice-org-two/Sample-ASP.NET-project/blob/master/Sample.Web/package-lock.json