forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechstack.yml
More file actions
1680 lines (1680 loc) · 67.6 KB
/
Copy pathtechstack.yml
File metadata and controls
1680 lines (1680 loc) · 67.6 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: Huntemall/datatracker-dev
report_id: c384ccd0fb1c94df2b1ab12e8e8be1b6
version: 0.1
repo_type: Public
timestamp: '2024-07-16T10:07:38+00:00'
requested_by: rjsparks
provider: github
branch: main
detected_tools_count: 116
tools:
- name: C lang
description: One of the most widely used programming languages of all time
website_url: http://en.wikipedia.org/wiki/C_(programming_language)
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/no-img-open-source.png
detection_source_url: https://github.com/Huntemall/datatracker-dev
detection_source: Repo Metadata
- name: CSS 3
description: The latest evolution of the Cascading Style Sheets language
website_url: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS3
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/6727/css.png
detection_source_url: https://github.com/Huntemall/datatracker-dev
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/Huntemall/datatracker-dev
detection_source: Repo Metadata
- name: Perl
description: Highly capable, feature-rich programming language with over 26 years
of development
website_url: http://www.perl.org/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1048/perl.png
detection_source_url: https://github.com/Huntemall/datatracker-dev
detection_source: Repo Metadata
- name: Pug
description: Robust, elegant, feature rich template engine for nodejs
website_url: https://pugjs.org
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Templating Languages & Extensions
image_url: https://img.stackshare.io/service/1175/pug.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: Lars Eggert
last_updated_on: 2021-11-09 13:54:17.000000000 Z
- name: Python
description: A clear and powerful object-oriented programming language, comparable
to Perl, Ruby, Scheme, or Java.
website_url: https://www.python.org
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/993/pUBY5pVj.png
detection_source_url: https://github.com/Huntemall/datatracker-dev
detection_source: Repo Metadata
- name: SQL
description: It is a domain-specific language used in programming
website_url: https://en.wikipedia.org/wiki/SQL
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/2271/default_068d33483bba6b81ee13fbd4dc7aab9780896a54.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/test/sql_fixup.sql
detection_source: test/sql_fixup.sql
last_updated_by: Bill Fenner
last_updated_on: 2007-06-01 18:25:39.000000000 Z
- name: Swift
description: An innovative new programming language for Cocoa and Cocoa Touch.
website_url: https://developer.apple.com/swift/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1009/tuHsaI2U.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/docker-compose.yml
detection_source: docker-compose.yml
last_updated_by: nick
last_updated_on: 2021-10-27 16:41:02.000000000 Z
- name: Bootstrap
description: Simple and flexible HTML, CSS, and JS for popular UI components and
interactions
website_url: http://getbootstrap.com/
version: 5.2.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/Huntemall/datatracker-dev/blob/main/yarn.lock
detection_source: package.json
last_updated_by: Nicolas Giard
last_updated_on: 2023-06-01 15:18:01.000000000 Z
- name: Chart.js
description: Simple, clean and engaging charts for designers and developers
website_url: http://www.chartjs.org/
version: 3.5.1
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/3866/_GD1-XrU_400x400.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/coverage-action/package-lock.json
detection_source: dev/coverage-action/package.json
last_updated_by: Nicolas Giard
last_updated_on: 2023-03-16 21:26:22.000000000 Z
- name: D3.js
description: A JavaScript visualization library for HTML and SVG
website_url: http://d3js.org/
license: ISC
open_source: true
hosted_saas: false
category: Libraries
sub_category: Charting Libraries
image_url: https://img.stackshare.io/service/1491/HgKolWB5_400x400.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: Lars Eggert
last_updated_on: 2021-11-09 13:54:17.000000000 Z
- name: Highcharts
description: A charting library written in pure JavaScript, offering an easy way
of adding interactive charts to your web site or web application
website_url: http://www.highcharts.com/products/highcharts
version: 11.1.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Charting Libraries
image_url: https://img.stackshare.io/service/1435/Vx4_Psj1.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/yarn.lock
detection_source: package.json
last_updated_by: depfu[bot]
last_updated_on: 2023-06-21 16:42:59.000000000 Z
- name: Sass
description: Syntactically Awesome Style Sheets
website_url: http://sass-lang.com/
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: CSS Pre-processors / Extensions
image_url: https://img.stackshare.io/service/1171/jCR2zNJV.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: Lars Eggert
last_updated_on: 2021-11-09 13:54:17.000000000 Z
- name: Select2
description: The jQuery replacement for select boxes
website_url: https://select2.github.io/
version: 4.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript UI Libraries
image_url: https://img.stackshare.io/service/7488/select2.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/yarn.lock
detection_source: package.json
last_updated_by: Lars Eggert
last_updated_on: 2022-05-13 19:08:26.000000000 Z
- name: Vue.js
description: A progressive framework for building user interfaces
website_url: http://vuejs.org/
version: 3.3.4
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript MVC Frameworks
image_url: https://img.stackshare.io/service/3837/paeckCWC.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/yarn.lock
detection_source: package.json
last_updated_by: Lars Eggert
last_updated_on: 2021-12-08 08:55:45.000000000 Z
- name: jQuery
description: The Write Less, Do More, JavaScript Library.
website_url: http://jquery.com/
version: 3.7.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript UI Libraries
image_url: https://img.stackshare.io/service/1021/lxEKmMnB_400x400.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/yarn.lock
detection_source: package.json
last_updated_by: depfu[bot]
last_updated_on: 2023-05-31 18:08:07.000000000 Z
- name: PostgreSQL
description: A powerful, open source object-relational database system
website_url: http://www.postgresql.org/
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1028/ASOhU5xJ.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/docker-compose.yml
detection_source: docker-compose.yml
last_updated_by: Jim Fenton
last_updated_on: 2023-03-29 01:45:03.000000000 Z
- name: RabbitMQ
description: Open source multiprotocol messaging broker
website_url: http://www.rabbitmq.com/
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Message Queue
image_url: https://img.stackshare.io/service/1061/default_df93e9a30d27519161b39d8c1d5c223c1642d187.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/mq/rabbitmq.conf
detection_source: dev/mq/rabbitmq.conf
last_updated_by: Jennifer Richards
last_updated_on: 2022-08-22 18:29:31.000000000 Z
- name: migra
description: A schema diff tool for PostgreSQL
website_url: https://migra.djrobstep.com/
license: Unlicense
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Database Tools
image_url: https://img.stackshare.io/no-img-open-source.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: dependabot[bot]
last_updated_on: 2023-03-13 20:05:57.000000000 Z
- name: Codecov
description: Hosted coverage reports with awesome features to enhance your CI workflow
website_url: https://codecov.io/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Code Coverage
image_url: https://img.stackshare.io/service/2673/Codecov_Mark_Circle_Pink.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/codecov.yml
detection_source: dev/codecov.yml
last_updated_by: Nicolas Giard
last_updated_on: 2022-05-31 22:56:39.000000000 Z
- name: Docker
description: Enterprise Container Platform for High-Velocity Innovation.
website_url: https://www.docker.com/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Virtual Machine Platforms & Containers
image_url: https://img.stackshare.io/service/586/n4u37v9t_400x400.png
detection_source_url: https://github.com/Huntemall/datatracker-dev
detection_source: Repo Metadata
- name: ESLint
description: The fully pluggable JavaScript code quality tool
website_url: http://eslint.org/
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Code Review
image_url: https://img.stackshare.io/service/3337/Q4L7Jncy.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/coverage-action/.eslintrc
detection_source: dev/coverage-action/.eslintrc
last_updated_by: NGPixel
last_updated_on: 2022-03-31 05:55:34.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/Huntemall/datatracker-dev
detection_source: Repo Metadata
- name: GitHub Actions
description: Automate your workflow from idea to production
website_url: https://github.com/features/actions
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/11563/actions.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/.github/workflows/build-base-app.yml
detection_source: ".github/workflows/build-base-app.yml"
last_updated_by: dependabot[bot]
last_updated_on: 2023-03-13 19:58:15.000000000 Z
- name: Octokit
description: GitHub API Client Library for .NET
website_url: https://github.com/octokit/octokit.net
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Tools for GitHub
image_url: https://img.stackshare.io/service/9827/octokit-dotnet_2.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/del-old-packages/package.json
detection_source: dev/del-old-packages/package.json
last_updated_by: depfu[bot]
last_updated_on: 2023-06-21 16:44:45.000000000 Z
- name: Parcel
description: "\U0001F4E6\U0001F680 A fast, zero configuration web application bundler"
website_url: https://parceljs.org/
version: 2.9.1
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/8054/fC6Wad-S_400x400.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/yarn.lock
detection_source: package.json
last_updated_by: depfu[bot]
last_updated_on: 2023-06-05 12:12:03.000000000 Z
- name: PyPI
description: A repository of software for the Python programming language
website_url: https://pypi.org/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Hosted Package Repository
image_url: https://img.stackshare.io/service/12572/-RIWgodF_400x400.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Henrik Levkowetz
last_updated_on: 2015-04-12 14:04:06.000000000 Z
- name: Visual Studio Code
description: Build and debug modern web and cloud applications, by Microsoft
website_url: https://code.visualstudio.com/
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Text Editor
image_url: https://img.stackshare.io/service/4202/Visual_Studio_Code_logo.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/.vscode/tasks.json
detection_source: ".vscode/tasks.json"
last_updated_by: nick
last_updated_on: 2021-10-27 16:41:02.000000000 Z
- name: Vite
description: Native-ESM powered web dev build tool
website_url: https://vitejs.dev/
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/21547/default_1aeac791cde11ff66cc0b20dcc6144eeb185c905.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: Lars Eggert
last_updated_on: 2021-11-09 13:54:17.000000000 Z
- name: Yarn
description: A new package manager for JavaScript
website_url: https://yarnpkg.com/
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/5848/44mC-kJ3.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/ietf/.yarnrc
detection_source: ietf/.yarnrc
last_updated_by: Henrik Levkowetz
last_updated_on: 2019-07-25 20:28:18.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/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: Lars Eggert
last_updated_on: 2021-11-09 13:54:17.000000000 Z
- name: Pillow
description: Python Imaging Library
website_url: https://python-pillow.github.io/
open_source: true
hosted_saas: false
category: Assets and Media
sub_category: Image Processing and Management
image_url: https://img.stackshare.io/service/2375/default_1f67b0ca7416a9f52beb655f90b5602d5ef74b75.jpg
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-29 14:45:41.000000000 Z
- name: Alpine Linux
description: Security-oriented, lightweight Linux distribution based on musl libc
and busybox
website_url: https://www.alpinelinux.org/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Operating Systems
image_url: https://img.stackshare.io/service/6429/alpine_linux.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/shared-assets-sync/Dockerfile
detection_source: dev/shared-assets-sync/Dockerfile
last_updated_by: Nicolas Giard
last_updated_on: 2022-12-07 22:49:47.000000000 Z
- name: CocoaPods
description: A dependency manager for Swift and Objective-C Cocoa projects
website_url: https://cocoapods.org/
open_source: true
hosted_saas: false
category: Libraries
sub_category: CocoaPods Packages
image_url: https://img.stackshare.io/service/2426/e1cbdef9d4b11484049a033886578e54_400x400.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/docker-compose.yml
detection_source: docker-compose.yml
last_updated_by: nick
last_updated_on: 2021-10-27 16:41:02.000000000 Z
- name: Lodash
description: A JavaScript utility library
website_url: https://lodash.com
version: 4.17.21
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/2438/lodash.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/coverage-action/package-lock.json
detection_source: dev/coverage-action/package.json
last_updated_by: NGPixel
last_updated_on: 2022-03-31 05:55:34.000000000 Z
- name: Luxon
description: Library for working with dates and times in Javascript
website_url: https://moment.github.io/luxon/
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/10330/no-img-open-source.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/coverage-action/package.json
detection_source: dev/coverage-action/package.json
last_updated_by: Nicolas Giard
last_updated_on: 2023-03-16 20:16:04.000000000 Z
- name: Moment.js
description: A JavaScript date library for parsing, validating, manipulating, and
formatting dates
website_url: http://momentjs.com/
version: 2.29.4
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/3643/Xrtdc94q_400x400.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/yarn.lock
detection_source: package.json
last_updated_by: depfu[bot]
last_updated_on: 2023-04-25 21:29:08.000000000 Z
- name: Pinia
description: The Vue Store that you will enjoy using
website_url: https://pinia.vuejs.org/
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/48301/default_0cffd727391e16b2a8bd6edbcffc0255a3a541d0.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: depfu[bot]
last_updated_on: 2023-06-05 12:12:03.000000000 Z
- name: Shell
description: A shell is a text-based terminal, used for manipulating programs and
files. Shell scripts typically manage program execution.
website_url: https://en.wikipedia.org/wiki/Shell_script
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/4631/default_c2062d40130562bdc836c13dbca02d318205a962.png
detection_source_url: https://github.com/Huntemall/datatracker-dev
detection_source: Repo Metadata
- name: Shepherd.js
description: Guide your users through a tour of your app
website_url: https://github.com/shipshapecode/shepherd
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/11065/17297725.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: depfu[bot]
last_updated_on: 2023-04-13 16:48:03.000000000 Z
- name: chalk
description: terminal colors
website_url: https://github.com/chalk/chalk
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/8072/13122722.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/dev/diff/package.json
detection_source: dev/diff/package.json
last_updated_by: depfu[bot]
last_updated_on: 2023-03-21 22:57:10.000000000 Z
- name: zxcvbn
website_url: https://github.com/dropbox/zxcvbn
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/7797/559357.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/package.json
detection_source: package.json
last_updated_by: Nicolas Giard
last_updated_on: 2022-04-25 20:54:05.000000000 Z
- name: Django
description: A high-level Python Web framework that encourages rapid development
and clean
package_url: https://pypi.org/project/Django
version: '4.2'
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19832/default_58dbe7b4d7ec447b62773209af0f9a31bbabf5bd.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-18 15:11:58.000000000 Z
vulnerabilities:
- name: Django bypasses validation when using one form field to upload multiple
files
cve_id: CVE-2023-31047
cve_url: https://github.com/advisories/GHSA-r3xc-prgr-mg9p
detected_date: May 10
severity: critical
first_patched: 4.2.1
- name: Django Path Traversal vulnerability
cve_id: CVE-2024-39330
cve_url: https://github.com/advisories/GHSA-9jmf-237g-qf46
detected_date: Jul 11
severity: high
first_patched: 4.2.14
- name: Django vulnerable to Denial of Service
cve_id: CVE-2024-39614
cve_url: https://github.com/advisories/GHSA-f6f8-9mx6-9mx2
detected_date: Jul 11
severity: high
first_patched: 4.2.14
- name: Django vulnerable to Denial of Service
cve_id: CVE-2024-38875
cve_url: https://github.com/advisories/GHSA-qg2p-9jwr-mmqf
detected_date: Jul 11
severity: high
first_patched: 4.2.14
- name: Django has regular expression denial of service vulnerability in EmailValidator/URLValidator
cve_id: CVE-2023-36053
cve_url: https://github.com/advisories/GHSA-jh3w-4vvf-mjgr
detected_date: Jul 6
severity: high
first_patched: 4.2.3
- name: Django potential denial of service vulnerability in UsernameField on Windows
cve_id: CVE-2023-46695
cve_url: https://github.com/advisories/GHSA-qmf9-6jqf-j8fq
detected_date: Apr 4
severity: high
first_patched: 4.2.7
- name: Django vulnerable to user enumeration attack
cve_id: CVE-2024-39329
cve_url: https://github.com/advisories/GHSA-x7q2-wr7g-xqmf
detected_date: Jul 11
severity: moderate
first_patched: 4.2.14
- name: gunicorn
description: WSGI HTTP Server for UNIX
package_url: https://pypi.org/project/gunicorn
version: 20.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19931/default_74a0c20721d3a0a1484d69586401591fe8993db2.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-01-27 15:58:21.000000000 Z
vulnerabilities:
- name: Request smuggling leading to endpoint restriction bypass in Gunicorn
cve_id: CVE-2024-1135
cve_url: https://github.com/advisories/GHSA-w3h3-4rj7-4ph4
detected_date: Apr 16
severity: high
first_patched: 22.0.0
- name: setuptools
description: Easily download
package_url: https://pypi.org/project/setuptools
version: 51.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19831/default_65d1c12a133e1aa67ae96a1221c9c122ddf86c5f.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-18 15:11:58.000000000 Z
vulnerabilities:
- name: setuptools vulnerable to Command Injection via package URL
cve_id: CVE-2024-6345
cve_url: https://github.com/advisories/GHSA-cx63-2mw6-8hw5
detected_date: Jul 16
severity: high
first_patched: 70.0.0
- name: pypa/setuptools vulnerable to Regular Expression Denial of Service (ReDoS)
cve_id: CVE-2022-40897
cve_url: https://github.com/advisories/GHSA-r9hx-vwmv-q579
detected_date: Dec 28
severity: high
first_patched: 65.5.1
- name: lxml
description: Powerful and Pythonic XML processing library combining libxml2/libxslt
with the ElementTree API
package_url: https://pypi.org/project/lxml
version: 4.8.0
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19835/default_85689b353a3a9409328e253ea28d859d29151e0c.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-28 16:06:17.000000000 Z
vulnerabilities:
- name: lxml NULL Pointer Dereference allows attackers to cause a denial of service
cve_id: CVE-2022-2309
cve_url: https://github.com/advisories/GHSA-wrxv-2j5q-m38w
detected_date: Jul 7
severity: moderate
first_patched: 4.9.1
- name: requests
description: Python HTTP for Humans
package_url: https://pypi.org/project/requests
version: 2.27.1
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19826/default_d7c684bf2673f008a9f02ac93901229297a22d7e.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-18 15:11:58.000000000 Z
vulnerabilities:
- name: Requests `Session` object does not verify requests after making first request
with verify=False
cve_id: CVE-2024-35195
cve_url: https://github.com/advisories/GHSA-9wx4-h78v-vm56
detected_date: May 21
severity: moderate
first_patched: 2.32.0
- name: Unintended leak of Proxy-Authorization header in requests
cve_id: CVE-2023-32681
cve_url: https://github.com/advisories/GHSA-j8r2-6x86-q33q
detected_date: May 23
severity: moderate
first_patched: 2.31.0
- name: tqdm
description: Fast, Extensible Progress Meter
package_url: https://pypi.org/project/tqdm
version: 4.64.0
license: MPL-2.0,MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19846/default_accee5d2b8ed75c2245f13504daf75b1cbc8cc9f.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-28 16:06:17.000000000 Z
vulnerabilities:
- name: tqdm CLI arguments injection attack
cve_id: CVE-2024-34062
cve_url: https://github.com/advisories/GHSA-g7vv-2v7x-gj9p
detected_date: May 4
severity: low
first_patched: 4.66.3
- name: Unidecode
description: ASCII transliterations of Unicode text
package_url: https://pypi.org/project/Unidecode
version: 1.3.4
license: GPL-2.0+
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20001/default_fcae0ff2da138e12178ddb620f53c8af65eb3f61.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-12 23:00:14.000000000 Z
- name: argon2-cffi
description: The secure Argon2 password hashing algorithm
package_url: https://pypi.org/project/argon2-cffi
version: 21.3.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-28 16:06:17.000000000 Z
- name: beautifulsoup4
description: Screen-scraping library
package_url: https://pypi.org/project/beautifulsoup4
version: 4.11.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19838/default_85689b353a3a9409328e253ea28d859d29151e0c.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-28 16:06:17.000000000 Z
- name: bibtexparser
description: Bibtex parser for python 2.7 and 3.3 and newer
package_url: https://pypi.org/project/bibtexparser
version: 1.2.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Lars Eggert
last_updated_on: 2022-07-12 16:18:52.000000000 Z
- name: bleach
description: An easy safelist-based HTML-sanitizing tool
package_url: https://pypi.org/project/bleach
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20045/default_b0b684477aefb2da4c92a4bafd91d26e16511cd1.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-12 23:00:14.000000000 Z
- name: celery
description: Distributed Task Queue
package_url: https://pypi.org/project/celery
version: 5.2.6
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19901/default_4f4fb10b6f169603a907dcb35a5a356d784e3bd3.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2022-08-22 18:29:31.000000000 Z
- name: coverage
description: Code coverage measurement for Python
package_url: https://pypi.org/project/coverage
version: 4.5.4
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19904/default_1d0eb6da6bdd342bb15f73d8f1721516ebacd1dc.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-28 16:06:17.000000000 Z
- name: decorator
description: Decorators for Humans
package_url: https://pypi.org/project/decorator
version: 5.1.1
license: BSD-2-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19911/default_bc82f0b22ca8fd942e21c317967f4ab61f43eb2c.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-12 23:00:14.000000000 Z
- name: defusedxml
description: XML bomb protection for Python stdlib modules
package_url: https://pypi.org/project/defusedxml
version: 0.7.1
license: Python-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20210/default_6796c4086c025d18cdc673750b208b846d8e0914.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-12 19:26:08.000000000 Z
- name: django-cors-headers
description: Django-cors-headers is a Django application for handling the server
headers required for Cross-Origin Resource Sharing
package_url: https://pypi.org/project/django-cors-headers
version: 3.11.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20425/default_fd0859a8a050b41b42cc678a2c0c5f51ce41801a.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-18 15:11:58.000000000 Z
- name: django-debug-toolbar
description: A configurable set of panels that display various debug information
about the current request/response
package_url: https://pypi.org/project/django-debug-toolbar
version: 3.2.4
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20671/default_d50ff54d48cd87d57b8eda5d2d945fe31fb2ac8a.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-18 15:11:58.000000000 Z
- name: django-simple-history
description: Store model history and view/revert changes from admin site
package_url: https://pypi.org/project/django-simple-history
version: 3.0.0
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-18 15:11:58.000000000 Z
- name: django-tastypie
description: A flexible & capable API layer for Django
package_url: https://pypi.org/project/django-tastypie
version: 0.14.5
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-18 15:11:58.000000000 Z
- name: django-widget-tweaks
description: Tweak the form field rendering in templates
package_url: https://pypi.org/project/django-widget-tweaks
version: 1.4.12
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-18 15:11:58.000000000 Z
- name: docutils
description: Docutils -- Python Documentation Utilities
package_url: https://pypi.org/project/docutils
version: 0.18.1
license: Unlicense,Python-2.0,BSD-2-Clause,CNRI-Python-GPL-Compatible
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19874/default_7ed3c4ccf2a3218ae3655165b980bd4a90a445dc.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-12 23:00:14.000000000 Z
- name: factory-boy
description: A versatile test fixtures replacement based on thoughtbot's factory_bot
for Ruby
package_url: https://pypi.org/project/factory-boy
version: 3.2.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2022-08-22 18:29:31.000000000 Z
- name: github3.py
description: Python wrapper for the GitHub API
package_url: https://pypi.org/project/github3.py
version: 3.2.0
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20400/default_27c957eac1674813a0a457a78f430be9e3c184a7.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-28 16:06:17.000000000 Z
- name: html2text
description: Turn HTML into equivalent Markdown-structured text
package_url: https://pypi.org/project/html2text
version: 2020.1.16
license: GPL-3.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19982/default_ccb381b493daf0d966e015380e1894fdbc637ad3.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-28 16:06:17.000000000 Z
- name: html5lib
description: HTML parser based on the WHATWG HTML specification
package_url: https://pypi.org/project/html5lib
version: '1.1'
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19936/default_63c8e7696ded615c51302c06e54b0d0c8ae9af3f.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2022-04-28 16:06:17.000000000 Z
- name: inflect
description: Correctly generate plurals
package_url: https://pypi.org/project/inflect
version: 6.0.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20130/default_5c04115b22cdadfa4cb3de74c5ab15c454f7c405.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Robert Sparks
last_updated_on: 2023-06-30 19:06:52.000000000 Z
- name: mock
description: Rolling backport of unittest.mock for all Pythons
package_url: https://pypi.org/project/mock
version: 4.0.3
license: BSD-2-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19876/default_8902c10687fbcd6273bdbe119fff40fa1180763f.png
detection_source_url: https://github.com/Huntemall/datatracker-dev/blob/main/requirements.txt
detection_source: requirements.txt
last_updated_by: Jennifer Richards
last_updated_on: 2023-05-12 23:00:14.000000000 Z
- name: mypy
description: Optional static typing for Python