diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2023-12-20 17:08:12 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2023-12-21 22:42:47 +0100 |
| commit | 8585d296facbc0e2f9c5fe795100fa4aac4b2dae (patch) | |
| tree | f186e869a8c66eba290708007a3ea723c9982bb6 | |
| parent | 763703961ac91db2ebbb26d96ce20292a20594e5 (diff) | |
Remove input labels.
Patch obtained by running:
guix style -L . -S inputs \
$(guix package -L . -A . |grep guix-science/|cut -f1,2|sed -e's/[[:blank:]]*$// ; s/[[:blank:]]\+/@/g')
This change does not incur any rebuild since the default for
‘--input-simplification’ is ‘silent’.
| -rw-r--r-- | guix-science/packages/bioinformatics.scm | 200 | ||||
| -rw-r--r-- | guix-science/packages/cloud.scm | 5 | ||||
| -rw-r--r-- | guix-science/packages/grid-engine.scm | 14 | ||||
| -rw-r--r-- | guix-science/packages/jasp.scm | 74 | ||||
| -rw-r--r-- | guix-science/packages/jupyter-node.scm | 86 | ||||
| -rw-r--r-- | guix-science/packages/jupyter.scm | 20 | ||||
| -rw-r--r-- | guix-science/packages/python.scm | 188 | ||||
| -rw-r--r-- | guix-science/packages/rstudio-node.scm | 1568 | ||||
| -rw-r--r-- | guix-science/packages/rstudio.scm | 18 |
9 files changed, 955 insertions, 1218 deletions
diff --git a/guix-science/packages/bioinformatics.scm b/guix-science/packages/bioinformatics.scm index 6eae9fb..0b44f35 100644 --- a/guix-science/packages/bioinformatics.scm +++ b/guix-science/packages/bioinformatics.scm | |||
| @@ -147,8 +147,7 @@ from FASTA and FASTQ files.") | |||
| 147 | (build-system gnu-build-system) | 147 | (build-system gnu-build-system) |
| 148 | (arguments `(#:tests? #f)) | 148 | (arguments `(#:tests? #f)) |
| 149 | (inputs | 149 | (inputs |
| 150 | `(("pcre" ,pcre "bin") | 150 | (list `(,pcre "bin") zlib)) |
| 151 | ("zlib" ,zlib))) | ||
| 152 | (home-page "https://homes.cs.washington.edu/~dcjones/fastq-tools/") | 151 | (home-page "https://homes.cs.washington.edu/~dcjones/fastq-tools/") |
| 153 | (synopsis "Tools to work with FASTQ files") | 152 | (synopsis "Tools to work with FASTQ files") |
| 154 | (description "This packages provides a collection of small and efficient | 153 | (description "This packages provides a collection of small and efficient |
| @@ -231,7 +230,7 @@ Oxford Nanopore Technologies sequencing data.") | |||
| 231 | `(("perl" ,perl) ; Used for a runner script for the Java program. | 230 | `(("perl" ,perl) ; Used for a runner script for the Java program. |
| 232 | ("jdk" ,icedtea-7))) | 231 | ("jdk" ,icedtea-7))) |
| 233 | (native-inputs | 232 | (native-inputs |
| 234 | `(("unzip" ,unzip))) | 233 | (list unzip)) |
| 235 | (home-page "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/") | 234 | (home-page "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/") |
| 236 | (synopsis "A quality control tool for high throughput sequence data") | 235 | (synopsis "A quality control tool for high throughput sequence data") |
| 237 | (description | 236 | (description |
| @@ -524,27 +523,26 @@ bioinformatics file formats, sequence alignment, and more.") | |||
| 524 | (("/usr/bin/env python") | 523 | (("/usr/bin/env python") |
| 525 | (string-append (assoc-ref inputs "python") "/bin/python"))))))))) | 524 | (string-append (assoc-ref inputs "python") "/bin/python"))))))))) |
| 526 | (inputs | 525 | (inputs |
| 527 | `(("boost" ,boost) | 526 | (list boost |
| 528 | ("perl" ,perl) | 527 | perl |
| 529 | ("bash" ,bash) | 528 | bash |
| 530 | ("zlib" ,zlib) | 529 | zlib |
| 531 | ("samtools" ,samtools) | 530 | samtools |
| 532 | ("rapidjson" ,rapidjson) | 531 | rapidjson |
| 533 | ("codemin" ,codemin) | 532 | codemin |
| 534 | ("curl" ,curl) | 533 | curl |
| 535 | ("xz" ,xz) | 534 | xz |
| 536 | ("openssl" ,openssl) | 535 | openssl |
| 537 | ("samtools" ,samtools) | 536 | samtools |
| 538 | ("zlib" ,zlib) | 537 | zlib |
| 539 | ("python" ,python))) | 538 | python)) |
| 540 | (native-inputs | 539 | (native-inputs |
| 541 | `(("bash" ,bash) | 540 | `(("bash" ,bash) |
| 542 | ("python" ,python-2) | 541 | ("python" ,python-2) |
| 543 | ("doxygen" ,doxygen) | 542 | ("doxygen" ,doxygen) |
| 544 | ("graphviz" ,graphviz))) | 543 | ("graphviz" ,graphviz))) |
| 545 | (propagated-inputs | 544 | (propagated-inputs |
| 546 | `(("vcftools" ,vcftools) | 545 | (list vcftools htslib)) |
| 547 | ("htslib" ,htslib))) | ||
| 548 | (native-search-paths (package-native-search-paths perl)) | 546 | (native-search-paths (package-native-search-paths perl)) |
| 549 | (home-page "https://github.com/Illumina/strelka") | 547 | (home-page "https://github.com/Illumina/strelka") |
| 550 | (synopsis "Small variant caller") | 548 | (synopsis "Small variant caller") |
| @@ -616,10 +614,9 @@ added to both callers to further improve precision.") | |||
| 616 | #t)) | 614 | #t)) |
| 617 | (delete 'configure)))) | 615 | (delete 'configure)))) |
| 618 | (native-inputs | 616 | (native-inputs |
| 619 | `(("vim" ,vim))) ; for xxd | 617 | (list vim)) ; for xxd |
| 620 | (inputs | 618 | (inputs |
| 621 | `(("htslib" ,htslib) | 619 | (list htslib zlib)) |
| 622 | ("zlib" ,zlib))) | ||
| 623 | (home-page "https://github.com/alexdobin/STAR") | 620 | (home-page "https://github.com/alexdobin/STAR") |
| 624 | (synopsis "Universal RNA-seq aligner") | 621 | (synopsis "Universal RNA-seq aligner") |
| 625 | (description | 622 | (description |
| @@ -709,16 +706,9 @@ sequences.") | |||
| 709 | (copy-recursively "FusionFilter" | 706 | (copy-recursively "FusionFilter" |
| 710 | (string-append bin "/FusionFilter")))))))) | 707 | (string-append bin "/FusionFilter")))))))) |
| 711 | (inputs | 708 | (inputs |
| 712 | `(("perl" ,perl) | 709 | (list perl samtools coreutils gzip)) |
| 713 | ("samtools" ,samtools) | ||
| 714 | ("coreutils" ,coreutils) | ||
| 715 | ("gzip" ,gzip))) | ||
| 716 | (propagated-inputs | 710 | (propagated-inputs |
| 717 | `(("perl-carp" ,perl-carp) | 711 | (list perl-carp perl-pathtools perl-db-file perl-uri perl-set-intervaltree)) |
| 718 | ("perl-pathtools" ,perl-pathtools) | ||
| 719 | ("perl-db-file" ,perl-db-file) | ||
| 720 | ("perl-uri" ,perl-uri) | ||
| 721 | ("perl-set-intervaltree" ,perl-set-intervaltree))) | ||
| 722 | (home-page "https://github.com/STAR-Fusion/STAR-Fusion/") | 712 | (home-page "https://github.com/STAR-Fusion/STAR-Fusion/") |
| 723 | (synopsis "Fusion detection based on STAR") | 713 | (synopsis "Fusion detection based on STAR") |
| 724 | (description "This package provides a component of the Trinity Cancer | 714 | (description "This package provides a component of the Trinity Cancer |
| @@ -756,7 +746,7 @@ spanning reads to a reference annotation set.") | |||
| 756 | (for-each (lambda (file) (install-file file bin)) | 746 | (for-each (lambda (file) (install-file file bin)) |
| 757 | '("primer3_core" "oligotm" "ntdpal")))))))) | 747 | '("primer3_core" "oligotm" "ntdpal")))))))) |
| 758 | (inputs | 748 | (inputs |
| 759 | `(("perl" ,perl))) | 749 | (list perl)) |
| 760 | (home-page "https://github.com/primer3-org/primer3") | 750 | (home-page "https://github.com/primer3-org/primer3") |
| 761 | (synopsis "Tool to design PCR primers") | 751 | (synopsis "Tool to design PCR primers") |
| 762 | (description "Design PCR primers from DNA sequence. From mispriming | 752 | (description "Design PCR primers from DNA sequence. From mispriming |
| @@ -860,7 +850,7 @@ capabilities.") | |||
| 860 | (string-append | 850 | (string-append |
| 861 | gzip " -d " sv-sites | 851 | gzip " -d " sv-sites |
| 862 | " -c > gnomad_v2.1_sv.sites.vcf")))))))) | 852 | " -c > gnomad_v2.1_sv.sites.vcf")))))))) |
| 863 | (inputs `(("gzip" ,gzip))) | 853 | (inputs (list gzip)) |
| 864 | (home-page "https://gnomad.broadinstitute.org") | 854 | (home-page "https://gnomad.broadinstitute.org") |
| 865 | (synopsis "gnomAD structural variant sites") | 855 | (synopsis "gnomAD structural variant sites") |
| 866 | (description "This package provides in uncompressed version of the gnomAD | 856 | (description "This package provides in uncompressed version of the gnomAD |
| @@ -1345,15 +1335,10 @@ bammarkduplicates, bammaskflags, bamrecompress, bamsort, bamtofastq.") | |||
| 1345 | (system* "perl" "Makefile.PL" | 1335 | (system* "perl" "Makefile.PL" |
| 1346 | (string-append "PREFIX=" (assoc-ref outputs "out")))))))) | 1336 | (string-append "PREFIX=" (assoc-ref outputs "out")))))))) |
| 1347 | (propagated-inputs | 1337 | (propagated-inputs |
| 1348 | `(("bwa" ,bwa) | 1338 | (list bwa samtools biobambam)) |
| 1349 | ("samtools" ,samtools) | ||
| 1350 | ("biobambam" ,biobambam))) | ||
| 1351 | (native-inputs | 1339 | (native-inputs |
| 1352 | `(("perl-module-install" ,perl-module-install) | 1340 | (list perl-module-install perl-module-build perl-file-sharedir-install |
| 1353 | ("perl-module-build" ,perl-module-build) | 1341 | perl perltidy)) |
| 1354 | ("perl-file-sharedir-install" ,perl-file-sharedir-install) | ||
| 1355 | ("perl" ,perl) | ||
| 1356 | ("perltidy" ,perltidy))) | ||
| 1357 | (home-page "https://github.com/ICGC-TCGA-PanCancer/PCAP-core") | 1342 | (home-page "https://github.com/ICGC-TCGA-PanCancer/PCAP-core") |
| 1358 | (synopsis "NGS reference implementations and helper code for the ICGC/TCGA | 1343 | (synopsis "NGS reference implementations and helper code for the ICGC/TCGA |
| 1359 | Pan-Cancer Analysis Project") | 1344 | Pan-Cancer Analysis Project") |
| @@ -1376,17 +1361,12 @@ Pan-Cancer Analysis Project") | |||
| 1376 | ;; Only one test fails. | 1361 | ;; Only one test fails. |
| 1377 | (arguments `(#:tests? #f)) | 1362 | (arguments `(#:tests? #f)) |
| 1378 | (propagated-inputs | 1363 | (propagated-inputs |
| 1379 | `(("htslib" ,htslib) | 1364 | (list htslib which)) |
| 1380 | ("which" ,which))) | ||
| 1381 | (native-inputs | 1365 | (native-inputs |
| 1382 | `(("perl-env-path" ,perl-env-path) | 1366 | (list perl-env-path perl-test-most)) |
| 1383 | ("perl-test-most" ,perl-test-most))) | ||
| 1384 | (inputs | 1367 | (inputs |
| 1385 | `(("bioperl-minimal" ,bioperl-minimal) | 1368 | (list bioperl-minimal perl-exception-class perl-file-which perl-moose |
| 1386 | ("perl-exception-class" ,perl-exception-class) | 1369 | perl-try-tiny)) |
| 1387 | ("perl-file-which" ,perl-file-which) | ||
| 1388 | ("perl-moose" ,perl-moose) | ||
| 1389 | ("perl-try-tiny" ,perl-try-tiny))) | ||
| 1390 | (home-page "http://search.cpan.org/dist/Bio-Pipeline-Comparison") | 1370 | (home-page "http://search.cpan.org/dist/Bio-Pipeline-Comparison") |
| 1391 | (synopsis "Comparative assesment of variant calling (CAVar)") | 1371 | (synopsis "Comparative assesment of variant calling (CAVar)") |
| 1392 | (description "") | 1372 | (description "") |
| @@ -1413,15 +1393,10 @@ Pan-Cancer Analysis Project") | |||
| 1413 | (system* "perl" "Makefile.PL" | 1393 | (system* "perl" "Makefile.PL" |
| 1414 | (string-append "PREFIX=" (assoc-ref outputs "out")))))))) | 1394 | (string-append "PREFIX=" (assoc-ref outputs "out")))))))) |
| 1415 | (propagated-inputs | 1395 | (propagated-inputs |
| 1416 | `(("perl-bio-pipeline-comparison" ,perl-bio-pipeline-comparison) | 1396 | (list perl-bio-pipeline-comparison perl-const-fast perl-data-uuid |
| 1417 | ("perl-const-fast" ,perl-const-fast) | 1397 | perl-datetime)) |
| 1418 | ("perl-data-uuid" ,perl-data-uuid) | ||
| 1419 | ("perl-datetime" ,perl-datetime))) | ||
| 1420 | (native-inputs | 1398 | (native-inputs |
| 1421 | `(("perl-module-install" ,perl-module-install) | 1399 | (list perl-module-install perl-module-build perl perltidy)) |
| 1422 | ("perl-module-build" ,perl-module-build) | ||
| 1423 | ("perl" ,perl) | ||
| 1424 | ("perltidy" ,perltidy))) | ||
| 1425 | (home-page "https://cancerit.github.io/cgpVcf/") | 1400 | (home-page "https://cancerit.github.io/cgpVcf/") |
| 1426 | (synopsis "Set of common Perl utilities for generating VCF headers") | 1401 | (synopsis "Set of common Perl utilities for generating VCF headers") |
| 1427 | (description "This package contains a set of common Perl utilities for | 1402 | (description "This package contains a set of common Perl utilities for |
| @@ -1493,10 +1468,8 @@ requirements.") | |||
| 1493 | "14srnq51n98aizdlg6lhzpzdqyjvxf5nfm431qiylvsc9zj29gk1")))) | 1468 | "14srnq51n98aizdlg6lhzpzdqyjvxf5nfm431qiylvsc9zj29gk1")))) |
| 1494 | (build-system perl-build-system) | 1469 | (build-system perl-build-system) |
| 1495 | (propagated-inputs | 1470 | (propagated-inputs |
| 1496 | `(("perl-acme-damn" ,perl-acme-damn) | 1471 | (list perl-acme-damn perl-devel-symdump perl-list-moreutils |
| 1497 | ("perl-devel-symdump" ,perl-devel-symdump) | 1472 | perl-sys-sigaction)) |
| 1498 | ("perl-list-moreutils" ,perl-list-moreutils) | ||
| 1499 | ("perl-sys-sigaction" ,perl-sys-sigaction))) | ||
| 1500 | (home-page "http://search.cpan.org/dist/forks") | 1473 | (home-page "http://search.cpan.org/dist/forks") |
| 1501 | (synopsis "forks - emulate threads with fork") | 1474 | (synopsis "forks - emulate threads with fork") |
| 1502 | (description "") | 1475 | (description "") |
| @@ -1518,7 +1491,7 @@ requirements.") | |||
| 1518 | "03kykdsz3fk5ppb9g92pvnif67zlk501finrwi1csbcizw1js39i")))) | 1491 | "03kykdsz3fk5ppb9g92pvnif67zlk501finrwi1csbcizw1js39i")))) |
| 1519 | (build-system perl-build-system) | 1492 | (build-system perl-build-system) |
| 1520 | (inputs | 1493 | (inputs |
| 1521 | `(("perl-test-exception" ,perl-test-exception))) | 1494 | (list perl-test-exception)) |
| 1522 | (home-page "http://search.cpan.org/dist/Acme-Damn") | 1495 | (home-page "http://search.cpan.org/dist/Acme-Damn") |
| 1523 | (synopsis "'Unbless' Perl objects.") | 1496 | (synopsis "'Unbless' Perl objects.") |
| 1524 | (description "") | 1497 | (description "") |
| @@ -1587,23 +1560,23 @@ requirements.") | |||
| 1587 | (copy-recursively "config" config-dir) | 1560 | (copy-recursively "config" config-dir) |
| 1588 | #t)))))) | 1561 | #t)))))) |
| 1589 | (propagated-inputs | 1562 | (propagated-inputs |
| 1590 | `(("perl-file-path" ,perl-file-path) | 1563 | (list perl-file-path |
| 1591 | ("perl-file-which", perl-file-which) | 1564 | perl-file-which |
| 1592 | ("perl-const-fast", perl-const-fast) | 1565 | perl-const-fast |
| 1593 | ("perl-capture-tiny", perl-capture-tiny) | 1566 | perl-capture-tiny |
| 1594 | ("perl-ipc-system-simple", perl-ipc-system-simple) | 1567 | perl-ipc-system-simple |
| 1595 | ("perl-try-tiny", perl-try-tiny) | 1568 | perl-try-tiny |
| 1596 | ("perl-carp", perl-carp) | 1569 | perl-carp |
| 1597 | ("perl-forks", perl-forks) | 1570 | perl-forks |
| 1598 | ("perl-attribute-util", perl-attribute-util) | 1571 | perl-attribute-util |
| 1599 | ("perl-config-inifiles", perl-config-inifiles) | 1572 | perl-config-inifiles |
| 1600 | ("perl-set-intervaltree", perl-set-intervaltree) | 1573 | perl-set-intervaltree |
| 1601 | ("perl-libwww", perl-libwww) | 1574 | perl-libwww |
| 1602 | ("pcap-core" ,pcap-core) | 1575 | pcap-core |
| 1603 | ("perl-cgpvcf", perl-cgpvcf) | 1576 | perl-cgpvcf |
| 1604 | ("perl-bio-db-hts", perl-bio-db-hts) | 1577 | perl-bio-db-hts |
| 1605 | ("bioperl-minimal", bioperl-minimal) | 1578 | bioperl-minimal |
| 1606 | ("perl" ,perl))) | 1579 | perl)) |
| 1607 | (home-page "https://github.com/cancerit/cgpCaVEManPostProcessing") | 1580 | (home-page "https://github.com/cancerit/cgpCaVEManPostProcessing") |
| 1608 | (synopsis "Flagging add-on to CaVEMan") | 1581 | (synopsis "Flagging add-on to CaVEMan") |
| 1609 | (description "This package is used to apply filtering on raw VCF calls | 1582 | (description "This package is used to apply filtering on raw VCF calls |
| @@ -1626,7 +1599,7 @@ generated using CaVEMan.") | |||
| 1626 | (build-system perl-build-system) | 1599 | (build-system perl-build-system) |
| 1627 | (arguments `(#:tests? #f)) | 1600 | (arguments `(#:tests? #f)) |
| 1628 | (propagated-inputs | 1601 | (propagated-inputs |
| 1629 | `(("perl-log-message-simple" ,perl-log-message-simple))) | 1602 | (list perl-log-message-simple)) |
| 1630 | (home-page "http://search.cpan.org/dist/Term-UI") | 1603 | (home-page "http://search.cpan.org/dist/Term-UI") |
| 1631 | (synopsis "User interfaces via Term::ReadLine made easy") | 1604 | (synopsis "User interfaces via Term::ReadLine made easy") |
| 1632 | (description "") | 1605 | (description "") |
| @@ -1688,9 +1661,7 @@ coverage.") | |||
| 1688 | "1x252cqzcyxkmf8p5dw34ais47ci1ldv2ds02m7a2ijpryam0jg8")))) | 1661 | "1x252cqzcyxkmf8p5dw34ais47ci1ldv2ds02m7a2ijpryam0jg8")))) |
| 1689 | (build-system perl-build-system) | 1662 | (build-system perl-build-system) |
| 1690 | (native-inputs | 1663 | (native-inputs |
| 1691 | `(("perl-module-install" ,perl-module-install) | 1664 | (list perl-module-install perl-module-build perl-file-sharedir-install)) |
| 1692 | ("perl-module-build" ,perl-module-build) | ||
| 1693 | ("perl-file-sharedir-install" ,perl-file-sharedir-install))) | ||
| 1694 | (home-page | 1665 | (home-page |
| 1695 | "http://search.cpan.org/dist/Parallel-Iterator") | 1666 | "http://search.cpan.org/dist/Parallel-Iterator") |
| 1696 | (synopsis "Simple parallel execution") | 1667 | (synopsis "Simple parallel execution") |
| @@ -1754,11 +1725,9 @@ coverage.") | |||
| 1754 | (arguments | 1725 | (arguments |
| 1755 | `(#:tests? #f)) | 1726 | `(#:tests? #f)) |
| 1756 | (propagated-inputs | 1727 | (propagated-inputs |
| 1757 | `(("perl-module-install" ,perl-module-install))) | 1728 | (list perl-module-install)) |
| 1758 | (inputs | 1729 | (inputs |
| 1759 | `(("perl-css-tiny" ,perl-css-tiny) | 1730 | (list perl-css-tiny perl-params-util perl-ppi)) |
| 1760 | ("perl-params-util" ,perl-params-util) | ||
| 1761 | ("perl-ppi" ,perl-ppi))) | ||
| 1762 | (home-page | 1731 | (home-page |
| 1763 | "http://search.cpan.org/dist/PPI-HTML") | 1732 | "http://search.cpan.org/dist/PPI-HTML") |
| 1764 | (synopsis | 1733 | (synopsis |
| @@ -1815,27 +1784,25 @@ coverage.") | |||
| 1815 | (string-append "PREFIX=" (assoc-ref outputs "out"))) | 1784 | (string-append "PREFIX=" (assoc-ref outputs "out"))) |
| 1816 | (system* "make")))))) | 1785 | (system* "make")))))) |
| 1817 | (propagated-inputs | 1786 | (propagated-inputs |
| 1818 | `(("perl" ,perl) | 1787 | (list perl |
| 1819 | ("pcap-core" ,pcap-core) | 1788 | pcap-core |
| 1820 | ("perl-cgpvcf" ,perl-cgpvcf) | 1789 | perl-cgpvcf |
| 1821 | ("bioperl-minimal" ,bioperl-minimal) | 1790 | bioperl-minimal |
| 1822 | ("perl-bio-db-hts" ,perl-bio-db-hts) | 1791 | perl-bio-db-hts |
| 1823 | ("perl-const-fast" ,perl-const-fast) | 1792 | perl-const-fast |
| 1824 | ("perl-file-which" ,perl-file-which) | 1793 | perl-file-which |
| 1825 | ("perl-pod-coverage" ,perl-pod-coverage) | 1794 | perl-pod-coverage |
| 1826 | ("perl-list-moreutils" ,perl-list-moreutils) | 1795 | perl-list-moreutils |
| 1827 | ("perl-test-fatal" ,perl-test-fatal) | 1796 | perl-test-fatal |
| 1828 | ("perl-try-tiny" ,perl-try-tiny) | 1797 | perl-try-tiny |
| 1829 | ("perl-capture-tiny" ,perl-capture-tiny) | 1798 | perl-capture-tiny |
| 1830 | ("perl-term-ui" ,perl-term-ui) | 1799 | perl-term-ui |
| 1831 | ("perl-log-message" ,perl-log-message) | 1800 | perl-log-message |
| 1832 | ("perl-ipc-system-simple" ,perl-ipc-system-simple) | 1801 | perl-ipc-system-simple |
| 1833 | ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive) | 1802 | perl-sub-exporter-progressive |
| 1834 | ("perl-devel-cover" ,perl-devel-cover))) | 1803 | perl-devel-cover)) |
| 1835 | (native-inputs | 1804 | (native-inputs |
| 1836 | `(("perl-module-install" ,perl-module-install) | 1805 | (list perl-module-install perl-module-build perl-file-sharedir-install)) |
| 1837 | ("perl-module-build" ,perl-module-build) | ||
| 1838 | ("perl-file-sharedir-install" ,perl-file-sharedir-install))) | ||
| 1839 | (home-page "https://github.com/cancerit/cgpPindel") | 1806 | (home-page "https://github.com/cancerit/cgpPindel") |
| 1840 | (synopsis "Cancer Genome Projects workflow for Pindel.") | 1807 | (synopsis "Cancer Genome Projects workflow for Pindel.") |
| 1841 | (description "") | 1808 | (description "") |
| @@ -1899,7 +1866,7 @@ coverage.") | |||
| 1899 | (assoc-ref inputs "openjdk") | 1866 | (assoc-ref inputs "openjdk") |
| 1900 | "/lib/security/cacerts")))))))))) | 1867 | "/lib/security/cacerts")))))))))) |
| 1901 | (inputs | 1868 | (inputs |
| 1902 | `(("openjdk" ,openjdk11))) | 1869 | (list openjdk11)) |
| 1903 | (home-page "https://docs.icgc.org/software/download/#score-client") | 1870 | (home-page "https://docs.icgc.org/software/download/#score-client") |
| 1904 | (synopsis "Tool to view ICGC data") | 1871 | (synopsis "Tool to view ICGC data") |
| 1905 | (description "This package provides a tool to download or view data in | 1872 | (description "This package provides a tool to download or view data in |
| @@ -1932,11 +1899,9 @@ the cloud environments of ICGC.") | |||
| 1932 | (substitute* "configure.ac" | 1899 | (substitute* "configure.ac" |
| 1933 | (("libboost_math_c99.a") "libboost_math_c99.so"))))))) | 1900 | (("libboost_math_c99.a") "libboost_math_c99.so"))))))) |
| 1934 | (native-inputs | 1901 | (native-inputs |
| 1935 | `(("autoconf" ,autoconf))) | 1902 | (list autoconf)) |
| 1936 | (inputs | 1903 | (inputs |
| 1937 | `(("boost" ,boost) | 1904 | (list boost zlib gsl)) |
| 1938 | ("zlib" ,zlib) | ||
| 1939 | ("gsl" ,gsl))) | ||
| 1940 | (home-page "https://github.com/DiltheyLab/MetaMaps") | 1905 | (home-page "https://github.com/DiltheyLab/MetaMaps") |
| 1941 | (synopsis "Long-read metagenomic analysis") | 1906 | (synopsis "Long-read metagenomic analysis") |
| 1942 | (description "MetaMaps is tool specifically developed for the analysis | 1907 | (description "MetaMaps is tool specifically developed for the analysis |
| @@ -2042,10 +2007,9 @@ annotations.") | |||
| 2042 | "0az6xiqkbdcq858m1dlwvf7f7pa5fjldckkawcj8a38a2fq9drds")))) | 2007 | "0az6xiqkbdcq858m1dlwvf7f7pa5fjldckkawcj8a38a2fq9drds")))) |
| 2043 | (build-system gnu-build-system) | 2008 | (build-system gnu-build-system) |
| 2044 | (native-inputs | 2009 | (native-inputs |
| 2045 | `(("unzip" ,unzip) | 2010 | (list unzip sed)) |
| 2046 | ("sed" ,sed))) | ||
| 2047 | (inputs | 2011 | (inputs |
| 2048 | `(("zlib" ,zlib))) | 2012 | (list zlib)) |
| 2049 | (arguments | 2013 | (arguments |
| 2050 | `(#:tests? #f | 2014 | `(#:tests? #f |
| 2051 | #:phases | 2015 | #:phases |
| @@ -2102,9 +2066,7 @@ annotations.") | |||
| 2102 | (wrap-program (string-append bin "/CAT") | 2066 | (wrap-program (string-append bin "/CAT") |
| 2103 | `("PYTHONPATH" ":" = (,share "$PYTHONPATH")))))))))) | 2067 | `("PYTHONPATH" ":" = (,share "$PYTHONPATH")))))))))) |
| 2104 | (inputs | 2068 | (inputs |
| 2105 | `(("diamond" ,diamond) | 2069 | (list diamond prodigal python)) |
| 2106 | ("prodigal" ,prodigal) | ||
| 2107 | ("python" ,python))) | ||
| 2108 | (home-page "https://github.com/dutilh/CAT") | 2070 | (home-page "https://github.com/dutilh/CAT") |
| 2109 | (synopsis "Tool for taxonomic classification of contigs and metagenome-assembled genomes") | 2071 | (synopsis "Tool for taxonomic classification of contigs and metagenome-assembled genomes") |
| 2110 | (description "Contig Annotation Tool (CAT) and Bin Annotation Tool (BAT) | 2072 | (description "Contig Annotation Tool (CAT) and Bin Annotation Tool (BAT) |
| @@ -2147,7 +2109,7 @@ be run from intermediate steps if files are formated appropriately") | |||
| 2147 | (mkdir-p share) | 2109 | (mkdir-p share) |
| 2148 | (install-file "hiddenDomains.R" share))))))) | 2110 | (install-file "hiddenDomains.R" share))))))) |
| 2149 | (inputs | 2111 | (inputs |
| 2150 | `(("perl" ,perl))) | 2112 | (list perl)) |
| 2151 | (propagated-inputs | 2113 | (propagated-inputs |
| 2152 | `(("r-depmixS4" ,r-depmixs4) | 2114 | `(("r-depmixS4" ,r-depmixs4) |
| 2153 | ("r-hiddenmarkov" ,r-hiddenmarkov))) | 2115 | ("r-hiddenmarkov" ,r-hiddenmarkov))) |
diff --git a/guix-science/packages/cloud.scm b/guix-science/packages/cloud.scm index 15a784e..32946ad 100644 --- a/guix-science/packages/cloud.scm +++ b/guix-science/packages/cloud.scm | |||
| @@ -59,8 +59,7 @@ | |||
| 59 | (copy-recursively "lib" lib) | 59 | (copy-recursively "lib" lib) |
| 60 | (copy-recursively "platform" platform))))))) | 60 | (copy-recursively "platform" platform))))))) |
| 61 | (propagated-inputs | 61 | (propagated-inputs |
| 62 | `(("python" ,python) | 62 | (list python coreutils)) |
| 63 | ("coreutils" ,coreutils))) | ||
| 64 | (home-page "https://cloud.google.com/sdk") | 63 | (home-page "https://cloud.google.com/sdk") |
| 65 | (synopsis "Google Cloud SDK") | 64 | (synopsis "Google Cloud SDK") |
| 66 | (description "This package provides the Google Cloud SDK which includes the | 65 | (description "This package provides the Google Cloud SDK which includes the |
| @@ -139,7 +138,7 @@ packages.") | |||
| 139 | "01d34c66ymriav93faf2vf89mmbcifz693vcp38sm3yidl76a2h3")))) | 138 | "01d34c66ymriav93faf2vf89mmbcifz693vcp38sm3yidl76a2h3")))) |
| 140 | (build-system python-build-system) | 139 | (build-system python-build-system) |
| 141 | (propagated-inputs | 140 | (propagated-inputs |
| 142 | `(("python-cachetools", python-cachetools))) | 141 | (list python-cachetools)) |
| 143 | (arguments | 142 | (arguments |
| 144 | `(#:tests? #f)) | 143 | `(#:tests? #f)) |
| 145 | (home-page "https://github.com/googleapis/google-resumable-media-python") | 144 | (home-page "https://github.com/googleapis/google-resumable-media-python") |
diff --git a/guix-science/packages/grid-engine.scm b/guix-science/packages/grid-engine.scm index cd7340b..16fd198 100644 --- a/guix-science/packages/grid-engine.scm +++ b/guix-science/packages/grid-engine.scm | |||
| @@ -209,12 +209,9 @@ contributing code.") | |||
| 209 | (arguments | 209 | (arguments |
| 210 | `(#:tests? #f)) | 210 | `(#:tests? #f)) |
| 211 | (native-inputs | 211 | (native-inputs |
| 212 | `(("autoconf" ,autoconf) | 212 | (list autoconf automake pkg-config)) |
| 213 | ("automake" ,automake) | ||
| 214 | ("pkg-config" ,pkg-config))) | ||
| 215 | (inputs | 213 | (inputs |
| 216 | `(("slurm" ,slurm) | 214 | (list slurm guile-3.0)) |
| 217 | ("guile" ,guile-3.0))) | ||
| 218 | (home-page "https://github.com/roelj/qsub-slurm") | 215 | (home-page "https://github.com/roelj/qsub-slurm") |
| 219 | (synopsis "Compatibility tool to move from SGE to SLURM.") | 216 | (synopsis "Compatibility tool to move from SGE to SLURM.") |
| 220 | (description "This package an alternative @code{qsub} command that | 217 | (description "This package an alternative @code{qsub} command that |
| @@ -238,12 +235,9 @@ will submit jobs to SLURM.") | |||
| 238 | (arguments | 235 | (arguments |
| 239 | `(#:tests? #f)) | 236 | `(#:tests? #f)) |
| 240 | (native-inputs | 237 | (native-inputs |
| 241 | `(("autoconf" ,autoconf) | 238 | (list autoconf automake pkg-config)) |
| 242 | ("automake" ,automake) | ||
| 243 | ("pkg-config" ,pkg-config))) | ||
| 244 | (inputs | 239 | (inputs |
| 245 | `(("bash" ,bash) | 240 | (list bash guile-3.0)) |
| 246 | ("guile" ,guile-3.0))) | ||
| 247 | (home-page "https://github.com/roelj/qsub-local") | 241 | (home-page "https://github.com/roelj/qsub-local") |
| 248 | (synopsis "Compatibility tool to run SGE pipelines locally.") | 242 | (synopsis "Compatibility tool to run SGE pipelines locally.") |
| 249 | (description "This package an alternative @code{qsub} command that | 243 | (description "This package an alternative @code{qsub} command that |
diff --git a/guix-science/packages/jasp.scm b/guix-science/packages/jasp.scm index 20efd56..ee7c983 100644 --- a/guix-science/packages/jasp.scm +++ b/guix-science/packages/jasp.scm | |||
| @@ -120,44 +120,44 @@ | |||
| 120 | (,(string-append out "/site-library:" (getenv "R_LIBS_SITE")))))) | 120 | (,(string-append out "/site-library:" (getenv "R_LIBS_SITE")))))) |
| 121 | #t))))) | 121 | #t))))) |
| 122 | (native-inputs | 122 | (native-inputs |
| 123 | `(("qtbase" ,qtbase-5))) ; qmake | 123 | (list qtbase-5)) ; qmake |
| 124 | (inputs | 124 | (inputs |
| 125 | `(("qtwebengine" ,qtwebengine-5) | 125 | (list qtwebengine-5 |
| 126 | ("qtsvg" ,qtsvg-5) | 126 | qtsvg-5 |
| 127 | ("qtwebchannel" ,qtwebchannel-5) | 127 | qtwebchannel-5 |
| 128 | ("qtquickcontrols" ,qtquickcontrols-5) ; qtquick styles | 128 | qtquickcontrols-5 ; qtquick styles |
| 129 | ("qtquickcontrols2" ,qtquickcontrols2-5) | 129 | qtquickcontrols2-5 |
| 130 | ("qtdeclarative" ,qtdeclarative-5) | 130 | qtdeclarative-5 |
| 131 | ("qtgraphicaleffects" ,qtgraphicaleffects) | 131 | qtgraphicaleffects |
| 132 | ("boost" ,boost) | 132 | boost |
| 133 | ("libarchive" ,libarchive) | 133 | libarchive |
| 134 | ("zlib" ,zlib) | 134 | zlib |
| 135 | ("readstat" ,readstat) | 135 | readstat |
| 136 | ("r-minimal" ,r-minimal) | 136 | r-minimal |
| 137 | ("r-rcpp" ,r-rcpp) | 137 | r-rcpp |
| 138 | ("r-kknn" ,r-kknn) | 138 | r-kknn |
| 139 | ;; Required to build JASPgraphs. | 139 | ;; Required to build JASPgraphs. |
| 140 | ("r-ggplot2" ,r-ggplot2) | 140 | r-ggplot2 |
| 141 | ("r-gridextra" ,r-gridextra) | 141 | r-gridextra |
| 142 | ("r-scales" ,r-scales) | 142 | r-scales |
| 143 | ("r-gtable" ,r-gtable) | 143 | r-gtable |
| 144 | ("r-jsonlite" ,r-jsonlite) | 144 | r-jsonlite |
| 145 | ("r-r6" ,r-r6) | 145 | r-r6 |
| 146 | ("r-rcolorbrewer" ,r-rcolorbrewer) | 146 | r-rcolorbrewer |
| 147 | ("r-rlang" ,r-rlang) | 147 | r-rlang |
| 148 | ("r-scales" ,r-scales) | 148 | r-scales |
| 149 | ("r-stringr" ,r-stringr) | 149 | r-stringr |
| 150 | ("r-viridislite" ,r-viridislite) | 150 | r-viridislite |
| 151 | ;; Runtime deps. | 151 | ;; Runtime deps. |
| 152 | ("r-rjson" ,r-rjson) | 152 | r-rjson |
| 153 | ("r-hypergeo" ,r-hypergeo) | 153 | r-hypergeo |
| 154 | ("r-logspline" ,r-logspline) | 154 | r-logspline |
| 155 | ("r-effects" ,r-effects) | 155 | r-effects |
| 156 | ("r-car" ,r-car) | 156 | r-car |
| 157 | ("r-afex" ,r-afex) | 157 | r-afex |
| 158 | ("r-lme4" ,r-lme4) | 158 | r-lme4 |
| 159 | ("r-bayesfactor" ,r-bayesfactor) | 159 | r-bayesfactor |
| 160 | ("r-lmtest" ,r-lmtest))) | 160 | r-lmtest)) |
| 161 | (home-page "https://jasp-stats.org/") | 161 | (home-page "https://jasp-stats.org/") |
| 162 | (synopsis "Statistical package for Bayesian and Frequentist statistical | 162 | (synopsis "Statistical package for Bayesian and Frequentist statistical |
| 163 | methods") | 163 | methods") |
diff --git a/guix-science/packages/jupyter-node.scm b/guix-science/packages/jupyter-node.scm index 69dcfe0..54b1e47 100644 --- a/guix-science/packages/jupyter-node.scm +++ b/guix-science/packages/jupyter-node.scm | |||
| @@ -156,10 +156,8 @@ | |||
| 156 | (delete 'configure) | 156 | (delete 'configure) |
| 157 | (delete 'build)))) | 157 | (delete 'build)))) |
| 158 | (inputs | 158 | (inputs |
| 159 | `(("node-follow-redirects" | 159 | (list node-follow-redirects-1.15.2 node-requires-port-1.0.0 |
| 160 | ,node-follow-redirects-1.15.2) | 160 | node-eventemitter3-4.0.7)) |
| 161 | ("node-requires-port" ,node-requires-port-1.0.0) | ||
| 162 | ("node-eventemitter3" ,node-eventemitter3-4.0.7))) | ||
| 163 | (home-page | 161 | (home-page |
| 164 | "https://github.com/http-party/node-http-proxy#readme") | 162 | "https://github.com/http-party/node-http-proxy#readme") |
| 165 | (synopsis "HTTP proxying for the masses") | 163 | (synopsis "HTTP proxying for the masses") |
| @@ -213,7 +211,7 @@ | |||
| 213 | (delete 'configure) | 211 | (delete 'configure) |
| 214 | (delete 'build)))) | 212 | (delete 'build)))) |
| 215 | (inputs | 213 | (inputs |
| 216 | `(("node-bintrees" ,node-bintrees-1.0.2))) | 214 | (list node-bintrees-1.0.2)) |
| 217 | (home-page "https://github.com/welch/tdigest") | 215 | (home-page "https://github.com/welch/tdigest") |
| 218 | (synopsis | 216 | (synopsis |
| 219 | "javascript implementation of Dunning's T-Digest for streaming quantile approximation") | 217 | "javascript implementation of Dunning's T-Digest for streaming quantile approximation") |
| @@ -241,7 +239,7 @@ | |||
| 241 | %standard-phases | 239 | %standard-phases |
| 242 | (delete 'configure) | 240 | (delete 'configure) |
| 243 | (delete 'build)))) | 241 | (delete 'build)))) |
| 244 | (inputs `(("node-tdigest" ,node-tdigest-0.1.2))) | 242 | (inputs (list node-tdigest-0.1.2)) |
| 245 | (home-page | 243 | (home-page |
| 246 | "https://github.com/siimon/prom-client") | 244 | "https://github.com/siimon/prom-client") |
| 247 | (synopsis "Client for prometheus") | 245 | (synopsis "Client for prometheus") |
| @@ -295,7 +293,7 @@ | |||
| 295 | (delete 'configure) | 293 | (delete 'configure) |
| 296 | (delete 'build)))) | 294 | (delete 'build)))) |
| 297 | (inputs | 295 | (inputs |
| 298 | `(("node-color-name" ,node-color-name-1.1.4))) | 296 | (list node-color-name-1.1.4)) |
| 299 | (home-page | 297 | (home-page |
| 300 | "https://github.com/Qix-/color-convert#readme") | 298 | "https://github.com/Qix-/color-convert#readme") |
| 301 | (synopsis "Plain color conversion functions") | 299 | (synopsis "Plain color conversion functions") |
| @@ -378,7 +376,7 @@ | |||
| 378 | (delete 'configure) | 376 | (delete 'configure) |
| 379 | (delete 'build)))) | 377 | (delete 'build)))) |
| 380 | (inputs | 378 | (inputs |
| 381 | `(("node-is-arrayish" ,node-is-arrayish-0.3.2))) | 379 | (list node-is-arrayish-0.3.2)) |
| 382 | (home-page | 380 | (home-page |
| 383 | "https://github.com/qix-/node-simple-swizzle#readme") | 381 | "https://github.com/qix-/node-simple-swizzle#readme") |
| 384 | (synopsis "Simply swizzle your arguments") | 382 | (synopsis "Simply swizzle your arguments") |
| @@ -406,9 +404,7 @@ | |||
| 406 | (delete 'configure) | 404 | (delete 'configure) |
| 407 | (delete 'build)))) | 405 | (delete 'build)))) |
| 408 | (inputs | 406 | (inputs |
| 409 | `(("node-simple-swizzle" | 407 | (list node-simple-swizzle-0.2.2 node-color-name-1.1.4)) |
| 410 | ,node-simple-swizzle-0.2.2) | ||
| 411 | ("node-color-name" ,node-color-name-1.1.4))) | ||
| 412 | (home-page | 408 | (home-page |
| 413 | "https://github.com/Qix-/color-string#readme") | 409 | "https://github.com/Qix-/color-string#readme") |
| 414 | (synopsis | 410 | (synopsis |
| @@ -438,8 +434,7 @@ | |||
| 438 | (delete 'configure) | 434 | (delete 'configure) |
| 439 | (delete 'build)))) | 435 | (delete 'build)))) |
| 440 | (inputs | 436 | (inputs |
| 441 | `(("node-color-string" ,node-color-string-1.9.1) | 437 | (list node-color-string-1.9.1 node-color-convert-1.9.3)) |
| 442 | ("node-color-convert" ,node-color-convert-1.9.3))) | ||
| 443 | (home-page | 438 | (home-page |
| 444 | "https://github.com/Qix-/color#readme") | 439 | "https://github.com/Qix-/color#readme") |
| 445 | (synopsis | 440 | (synopsis |
| @@ -497,8 +492,7 @@ | |||
| 497 | (delete 'configure) | 492 | (delete 'configure) |
| 498 | (delete 'build)))) | 493 | (delete 'build)))) |
| 499 | (inputs | 494 | (inputs |
| 500 | `(("node-text-hex" ,node-text-hex-1.0.0) | 495 | (list node-text-hex-1.0.0 node-color-3.2.1)) |
| 501 | ("node-color" ,node-color-3.2.1))) | ||
| 502 | (home-page | 496 | (home-page |
| 503 | "https://github.com/3rd-Eden/colorspace") | 497 | "https://github.com/3rd-Eden/colorspace") |
| 504 | (synopsis | 498 | (synopsis |
| @@ -583,9 +577,7 @@ | |||
| 583 | (delete 'configure) | 577 | (delete 'configure) |
| 584 | (delete 'build)))) | 578 | (delete 'build)))) |
| 585 | (inputs | 579 | (inputs |
| 586 | `(("node-kuler" ,node-kuler-2.0.0) | 580 | (list node-kuler-2.0.0 node-enabled-2.0.0 node-colorspace-1.1.4)) |
| 587 | ("node-enabled" ,node-enabled-2.0.0) | ||
| 588 | ("node-colorspace" ,node-colorspace-1.1.4))) | ||
| 589 | (home-page | 581 | (home-page |
| 590 | "https://github.com/3rd-Eden/diagnostics") | 582 | "https://github.com/3rd-Eden/diagnostics") |
| 591 | (synopsis | 583 | (synopsis |
| @@ -670,12 +662,8 @@ | |||
| 670 | (delete 'configure) | 662 | (delete 'configure) |
| 671 | (delete 'build)))) | 663 | (delete 'build)))) |
| 672 | (inputs | 664 | (inputs |
| 673 | `(("node-triple-beam" ,node-triple-beam-1.3.0) | 665 | (list node-triple-beam-1.3.0 node-safe-stable-stringify-2.3.1 |
| 674 | ("node-safe-stable-stringify" | 666 | node-ms-2.1.3 node-fecha-4.2.3 node-colors-colors-1.5.0)) |
| 675 | ,node-safe-stable-stringify-2.3.1) | ||
| 676 | ("node-ms" ,node-ms-2.1.3) | ||
| 677 | ("node-fecha" ,node-fecha-4.2.3) | ||
| 678 | ("node-colors-colors" ,node-colors-colors-1.5.0))) | ||
| 679 | (home-page | 667 | (home-page |
| 680 | "https://github.com/winstonjs/logform#readme") | 668 | "https://github.com/winstonjs/logform#readme") |
| 681 | (synopsis | 669 | (synopsis |
| @@ -729,7 +717,7 @@ | |||
| 729 | %standard-phases | 717 | %standard-phases |
| 730 | (delete 'configure) | 718 | (delete 'configure) |
| 731 | (delete 'build)))) | 719 | (delete 'build)))) |
| 732 | (inputs `(("node-fn-name" ,node-fn-name-1.1.0))) | 720 | (inputs (list node-fn-name-1.1.0)) |
| 733 | (home-page | 721 | (home-page |
| 734 | "https://github.com/3rd-Eden/one-time#readme") | 722 | "https://github.com/3rd-Eden/one-time#readme") |
| 735 | (synopsis | 723 | (synopsis |
| @@ -759,11 +747,8 @@ | |||
| 759 | (delete 'configure) | 747 | (delete 'configure) |
| 760 | (delete 'build)))) | 748 | (delete 'build)))) |
| 761 | (inputs | 749 | (inputs |
| 762 | `(("node-util-deprecate" | 750 | (list node-util-deprecate-1.0.2 node-string-decoder-1.3.0 |
| 763 | ,node-util-deprecate-1.0.2) | 751 | node-inherits-2.0.4)) |
| 764 | ("node-string-decoder" | ||
| 765 | ,node-string-decoder-1.3.0) | ||
| 766 | ("node-inherits" ,node-inherits-2.0.4))) | ||
| 767 | (home-page | 752 | (home-page |
| 768 | "https://github.com/nodejs/readable-stream#readme") | 753 | "https://github.com/nodejs/readable-stream#readme") |
| 769 | (synopsis | 754 | (synopsis |
| @@ -981,7 +966,7 @@ | |||
| 981 | (delete 'configure) | 966 | (delete 'configure) |
| 982 | (delete 'build)))) | 967 | (delete 'build)))) |
| 983 | (inputs | 968 | (inputs |
| 984 | `(("node-safe-buffer" ,node-safe-buffer-5.2.1))) | 969 | (list node-safe-buffer-5.2.1)) |
| 985 | (home-page | 970 | (home-page |
| 986 | "https://github.com/nodejs/string_decoder") | 971 | "https://github.com/nodejs/string_decoder") |
| 987 | (synopsis | 972 | (synopsis |
| @@ -1067,10 +1052,8 @@ | |||
| 1067 | (delete 'configure) | 1052 | (delete 'configure) |
| 1068 | (delete 'build)))) | 1053 | (delete 'build)))) |
| 1069 | (inputs | 1054 | (inputs |
| 1070 | `(("node-triple-beam" ,node-triple-beam-1.3.0) | 1055 | (list node-triple-beam-1.3.0 node-readable-stream-3.6.0 |
| 1071 | ("node-readable-stream" | 1056 | node-logform-2.4.2)) |
| 1072 | ,node-readable-stream-3.6.0) | ||
| 1073 | ("node-logform" ,node-logform-2.4.2))) | ||
| 1074 | (home-page | 1057 | (home-page |
| 1075 | "https://github.com/winstonjs/winston-transport#readme") | 1058 | "https://github.com/winstonjs/winston-transport#readme") |
| 1076 | (synopsis | 1059 | (synopsis |
| @@ -1100,21 +1083,17 @@ | |||
| 1100 | (delete 'configure) | 1083 | (delete 'configure) |
| 1101 | (delete 'build)))) | 1084 | (delete 'build)))) |
| 1102 | (inputs | 1085 | (inputs |
| 1103 | `(("node-winston-transport" | 1086 | (list node-winston-transport-4.5.0 |
| 1104 | ,node-winston-transport-4.5.0) | 1087 | node-triple-beam-1.3.0 |
| 1105 | ("node-triple-beam" ,node-triple-beam-1.3.0) | 1088 | node-stack-trace-0.0.10 |
| 1106 | ("node-stack-trace" ,node-stack-trace-0.0.10) | 1089 | node-safe-stable-stringify-2.3.1 |
| 1107 | ("node-safe-stable-stringify" | 1090 | node-readable-stream-3.6.0 |
| 1108 | ,node-safe-stable-stringify-2.3.1) | 1091 | node-one-time-1.0.0 |
| 1109 | ("node-readable-stream" | 1092 | node-logform-2.4.2 |
| 1110 | ,node-readable-stream-3.6.0) | 1093 | node-is-stream-2.0.1 |
| 1111 | ("node-one-time" ,node-one-time-1.0.0) | 1094 | node-async-3.2.4 |
| 1112 | ("node-logform" ,node-logform-2.4.2) | 1095 | node-colors-colors-1.5.0 |
| 1113 | ("node-is-stream" ,node-is-stream-2.0.1) | 1096 | node-dabh-diagnostics-2.0.3)) |
| 1114 | ("node-async" ,node-async-3.2.4) | ||
| 1115 | ("node-colors-colors" ,node-colors-colors-1.5.0) | ||
| 1116 | ("node-dabh-diagnostics" | ||
| 1117 | ,node-dabh-diagnostics-2.0.3))) | ||
| 1118 | (home-page | 1097 | (home-page |
| 1119 | "https://github.com/winstonjs/winston#readme") | 1098 | "https://github.com/winstonjs/winston#readme") |
| 1120 | (synopsis "A logger for just about everything.") | 1099 | (synopsis "A logger for just about everything.") |
| @@ -1143,11 +1122,8 @@ | |||
| 1143 | (delete 'configure) | 1122 | (delete 'configure) |
| 1144 | (delete 'build)))) | 1123 | (delete 'build)))) |
| 1145 | (inputs | 1124 | (inputs |
| 1146 | `(("node-winston" ,node-winston-3.8.2) | 1125 | (list node-winston-3.8.2 node-strftime-0.10.1 node-prom-client-14.1.0 |
| 1147 | ("node-strftime" ,node-strftime-0.10.1) | 1126 | node-http-proxy-1.18.1 node-commander-7.2.0)) |
| 1148 | ("node-prom-client" ,node-prom-client-14.1.0) | ||
| 1149 | ("node-http-proxy" ,node-http-proxy-1.18.1) | ||
| 1150 | ("node-commander" ,node-commander-7.2.0))) | ||
| 1151 | (home-page | 1127 | (home-page |
| 1152 | "https://github.com/jupyterhub/configurable-http-proxy#readme") | 1128 | "https://github.com/jupyterhub/configurable-http-proxy#readme") |
| 1153 | (synopsis "A configurable-on-the-fly HTTP Proxy") | 1129 | (synopsis "A configurable-on-the-fly HTTP Proxy") |
diff --git a/guix-science/packages/jupyter.scm b/guix-science/packages/jupyter.scm index 4ebb3ee..3412ded 100644 --- a/guix-science/packages/jupyter.scm +++ b/guix-science/packages/jupyter.scm | |||
| @@ -220,8 +220,7 @@ based on the Jupyter Notebook and Architecture.") | |||
| 220 | (arguments | 220 | (arguments |
| 221 | `(#:tests? #f)) | 221 | `(#:tests? #f)) |
| 222 | (propagated-inputs | 222 | (propagated-inputs |
| 223 | `(("python-jupyterhub" ,python-jupyterhub) | 223 | (list python-jupyterhub python-pamela)) |
| 224 | ("python-pamela" ,python-pamela))) | ||
| 225 | (home-page "http://jupyter.org") | 224 | (home-page "http://jupyter.org") |
| 226 | (synopsis "Add-on for Jupyterhub to spawn notebooks using batch systems") | 225 | (synopsis "Add-on for Jupyterhub to spawn notebooks using batch systems") |
| 227 | (description | 226 | (description |
| @@ -241,10 +240,8 @@ batch resource managers.") | |||
| 241 | "052khyn6h97jxl3k5i2m81xvga5v6vwh5qixzrax4w6zwcx62p24")))) | 240 | "052khyn6h97jxl3k5i2m81xvga5v6vwh5qixzrax4w6zwcx62p24")))) |
| 242 | (build-system python-build-system) | 241 | (build-system python-build-system) |
| 243 | (propagated-inputs | 242 | (propagated-inputs |
| 244 | `(("python-json-logger" ,python-json-logger) | 243 | (list python-json-logger python-jsonschema python-ruamel.yaml |
| 245 | ("python-jsonschema" ,python-jsonschema) | 244 | python-traitlets)) |
| 246 | ("python-ruamel.yaml" ,python-ruamel.yaml) | ||
| 247 | ("python-traitlets" ,python-traitlets))) | ||
| 248 | (home-page "https://jupyter.org/") | 245 | (home-page "https://jupyter.org/") |
| 249 | (synopsis "Jupyter telemetry library") | 246 | (synopsis "Jupyter telemetry library") |
| 250 | (description "Jupyter telemetry library") | 247 | (description "Jupyter telemetry library") |
| @@ -263,11 +260,8 @@ batch resource managers.") | |||
| 263 | "12xby5j7wmi6qsbb2fjd5qbckkcg5fmdij8qpc9n7ci8vfxq303m")))) | 260 | "12xby5j7wmi6qsbb2fjd5qbckkcg5fmdij8qpc9n7ci8vfxq303m")))) |
| 264 | (build-system python-build-system) | 261 | (build-system python-build-system) |
| 265 | (propagated-inputs | 262 | (propagated-inputs |
| 266 | `(("python-jupyterhub" ,python-jupyterhub) | 263 | (list python-jupyterhub python-jupyter-telemetry python-ldap3 |
| 267 | ("python-jupyter-telemetry" ,python-jupyter-telemetry) | 264 | python-tornado-6 python-traitlets)) |
| 268 | ("python-ldap3" ,python-ldap3) | ||
| 269 | ("python-tornado" ,python-tornado-6) | ||
| 270 | ("python-traitlets" ,python-traitlets))) | ||
| 271 | (home-page "https://github.com/yuvipanda/ldapauthenticator") | 265 | (home-page "https://github.com/yuvipanda/ldapauthenticator") |
| 272 | (synopsis "LDAP Authenticator for JupyterHub") | 266 | (synopsis "LDAP Authenticator for JupyterHub") |
| 273 | (description "LDAP Authenticator for JupyterHub") | 267 | (description "LDAP Authenticator for JupyterHub") |
| @@ -285,9 +279,7 @@ batch resource managers.") | |||
| 285 | (base32 | 279 | (base32 |
| 286 | "1fqlzg06mpglfgkrh9117sx3dj4b2y3xqh476q89533j9v98qqyr")))) | 280 | "1fqlzg06mpglfgkrh9117sx3dj4b2y3xqh476q89533j9v98qqyr")))) |
| 287 | (inputs | 281 | (inputs |
| 288 | `(("jupyter" ,jupyter) | 282 | (list jupyter python-tornado python-jupyterhub)) |
| 289 | ("python-tornado" ,python-tornado) | ||
| 290 | ("python-jupyterhub" ,python-jupyterhub))) | ||
| 291 | (build-system python-build-system) | 283 | (build-system python-build-system) |
| 292 | (home-page "https://github.com/jupyterhub/wrapspawner") | 284 | (home-page "https://github.com/jupyterhub/wrapspawner") |
| 293 | (synopsis "Wrapspawner for JupyterHub") | 285 | (synopsis "Wrapspawner for JupyterHub") |
diff --git a/guix-science/packages/python.scm b/guix-science/packages/python.scm index 0a5aaa1..9eed69a 100644 --- a/guix-science/packages/python.scm +++ b/guix-science/packages/python.scm | |||
| @@ -79,8 +79,7 @@ | |||
| 79 | "14dksvc8mxmci3m3083xzwz70anis95a5s01apqvvqv2z48yc1ir")))) | 79 | "14dksvc8mxmci3m3083xzwz70anis95a5s01apqvvqv2z48yc1ir")))) |
| 80 | (build-system python-build-system) | 80 | (build-system python-build-system) |
| 81 | (propagated-inputs | 81 | (propagated-inputs |
| 82 | `(("python-pytest" ,python-pytest) | 82 | (list python-pytest python-setuptools)) |
| 83 | ("python-setuptools" ,python-setuptools))) | ||
| 84 | (home-page | 83 | (home-page |
| 85 | "https://github.com/pytest-dev/pytest-rerunfailures") | 84 | "https://github.com/pytest-dev/pytest-rerunfailures") |
| 86 | (synopsis "Plugin for pytest to re-run tests to eliminate flaky failures") | 85 | (synopsis "Plugin for pytest to re-run tests to eliminate flaky failures") |
| @@ -148,16 +147,16 @@ download.") | |||
| 148 | (substitute* (list "setup.py" "smart_open.egg-info/requires.txt") | 147 | (substitute* (list "setup.py" "smart_open.egg-info/requires.txt") |
| 149 | (("moto\\[server\\]==1.3.14") "moto"))))))) | 148 | (("moto\\[server\\]==1.3.14") "moto"))))))) |
| 150 | (inputs | 149 | (inputs |
| 151 | `(("python-boto3" ,python-boto3) | 150 | (list python-boto3 |
| 152 | ("python-google-cloud-storage" ,python-google-cloud-storage) | 151 | python-google-cloud-storage |
| 153 | ("python-moto" ,python-moto) | 152 | python-moto |
| 154 | ("python-parameterizedtestcase" ,python-parameterizedtestcase) | 153 | python-parameterizedtestcase |
| 155 | ("python-paramiko" ,python-paramiko) | 154 | python-paramiko |
| 156 | ("python-pathlib2" ,python-pathlib2) | 155 | python-pathlib2 |
| 157 | ("python-pytest" ,python-pytest) | 156 | python-pytest |
| 158 | ("python-pytest-rerunfailures" ,python-pytest-rerunfailures) | 157 | python-pytest-rerunfailures |
| 159 | ("python-requests" ,python-requests) | 158 | python-requests |
| 160 | ("python-responses" ,python-responses))) | 159 | python-responses)) |
| 161 | (home-page "https://github.com/piskvorky/smart_open") | 160 | (home-page "https://github.com/piskvorky/smart_open") |
| 162 | (synopsis "Utilities for streaming large files") | 161 | (synopsis "Utilities for streaming large files") |
| 163 | (description "This package provides a library for efficient streaming of | 162 | (description "This package provides a library for efficient streaming of |
| @@ -239,9 +238,7 @@ lots of nifty extra stuff on top.") | |||
| 239 | "084wl5kl2grr2yi3bibc6i2ak5s7vanwi21wssbwd4bgfskr84lp")))) | 238 | "084wl5kl2grr2yi3bibc6i2ak5s7vanwi21wssbwd4bgfskr84lp")))) |
| 240 | (build-system python-build-system) | 239 | (build-system python-build-system) |
| 241 | (propagated-inputs | 240 | (propagated-inputs |
| 242 | `(("python-numpy" ,python-numpy) | 241 | (list python-numpy python-psutil pybind11-2.6.1)) |
| 243 | ("python-psutil" ,python-psutil) | ||
| 244 | ("pybind11" ,pybind11-2.6.1))) | ||
| 245 | (home-page "https://github.com/nmslib/nmslib") | 242 | (home-page "https://github.com/nmslib/nmslib") |
| 246 | (synopsis "Non-Metric Space Library (NMSLIB)") | 243 | (synopsis "Non-Metric Space Library (NMSLIB)") |
| 247 | (description "Non-Metric Space Library (NMSLIB)") | 244 | (description "Non-Metric Space Library (NMSLIB)") |
| @@ -259,7 +256,7 @@ lots of nifty extra stuff on top.") | |||
| 259 | "0w3yw014760ncm09ymbh0wnw4wwz7ph773dvvxcyaww5dw8w50gw")))) | 256 | "0w3yw014760ncm09ymbh0wnw4wwz7ph773dvvxcyaww5dw8w50gw")))) |
| 260 | (build-system python-build-system) | 257 | (build-system python-build-system) |
| 261 | (propagated-inputs | 258 | (propagated-inputs |
| 262 | `(("python-numpy" ,python-numpy))) | 259 | (list python-numpy)) |
| 263 | (home-page "http://github.com/wmayner/pyemd") | 260 | (home-page "http://github.com/wmayner/pyemd") |
| 264 | (synopsis | 261 | (synopsis |
| 265 | "Wrapper for Pele and Werman's implementation of the Earth Mover's Distance") | 262 | "Wrapper for Pele and Werman's implementation of the Earth Mover's Distance") |
| @@ -280,16 +277,16 @@ implementation of the Earth Mover's Distance.") | |||
| 280 | "09kiczx2i5asqsv214fz7sx8wlyldgbqvxwrd0alhjn24cvx4fn7")))) | 277 | "09kiczx2i5asqsv214fz7sx8wlyldgbqvxwrd0alhjn24cvx4fn7")))) |
| 281 | (build-system python-build-system) | 278 | (build-system python-build-system) |
| 282 | (propagated-inputs | 279 | (propagated-inputs |
| 283 | `(("python-jsonpatch" ,python-jsonpatch) | 280 | (list python-jsonpatch |
| 284 | ("python-numpy" ,python-numpy) | 281 | python-numpy |
| 285 | ("python-pillow" ,python-pillow) | 282 | python-pillow |
| 286 | ("python-pyzmq" ,python-pyzmq) | 283 | python-pyzmq |
| 287 | ("python-requests" ,python-requests) | 284 | python-requests |
| 288 | ("python-scipy" ,python-scipy) | 285 | python-scipy |
| 289 | ("python-six" ,python-six) | 286 | python-six |
| 290 | ("python-torchfile" ,python-torchfile) | 287 | python-torchfile |
| 291 | ("python-tornado" ,python-tornado) | 288 | python-tornado |
| 292 | ("python-websocket-client" ,python-websocket-client))) | 289 | python-websocket-client)) |
| 293 | (home-page "https://github.com/facebookresearch/visdom") | 290 | (home-page "https://github.com/facebookresearch/visdom") |
| 294 | (synopsis "Visualize live, rich data for Torch and Numpy") | 291 | (synopsis "Visualize live, rich data for Torch and Numpy") |
| 295 | (description "This package provides tools for visualizing live, rich data | 292 | (description "This package provides tools for visualizing live, rich data |
| @@ -311,19 +308,17 @@ for @code{Torch} and @code{Numpy}.") | |||
| 311 | (arguments | 308 | (arguments |
| 312 | `(#:tests? #f)) ; Tests need an outdated version of Morfessor. | 309 | `(#:tests? #f)) ; Tests need an outdated version of Morfessor. |
| 313 | (propagated-inputs | 310 | (propagated-inputs |
| 314 | `(("python-numpy" ,python-numpy) | 311 | (list python-numpy python-scipy python-smart-open)) |
| 315 | ("python-scipy" ,python-scipy) | ||
| 316 | ("python-smart-open" ,python-smart-open))) | ||
| 317 | (native-inputs | 312 | (native-inputs |
| 318 | `(("python-cython" ,python-cython) | 313 | (list python-cython |
| 319 | ("python-levenshtein" ,python-levenshtein) | 314 | python-levenshtein |
| 320 | ("python-mock" ,python-mock) | 315 | python-mock |
| 321 | ;("python-morfessor" ,python-morfessor) | 316 | ;("python-morfessor" ,python-morfessor) |
| 322 | ("python-nmslib" ,python-nmslib) | 317 | python-nmslib |
| 323 | ("python-pyemd" ,python-pyemd) | 318 | python-pyemd |
| 324 | ("python-pytest" ,python-pytest) | 319 | python-pytest |
| 325 | ("python-testfixtures" ,python-testfixtures) | 320 | python-testfixtures |
| 326 | ("python-visdom" ,python-visdom))) | 321 | python-visdom)) |
| 327 | (home-page "https://radimrehurek.com/gensim/") | 322 | (home-page "https://radimrehurek.com/gensim/") |
| 328 | (synopsis "Topic modelling for humans") | 323 | (synopsis "Topic modelling for humans") |
| 329 | (description "This package provides a Python library for topic modelling, | 324 | (description "This package provides a Python library for topic modelling, |
| @@ -347,8 +342,7 @@ community.") | |||
| 347 | (arguments | 342 | (arguments |
| 348 | `(#:tests? #f)) | 343 | `(#:tests? #f)) |
| 349 | (propagated-inputs | 344 | (propagated-inputs |
| 350 | `(("python-numpy" ,python-numpy) | 345 | (list python-numpy python-pysam)) |
| 351 | ("python-pysam" ,python-pysam))) | ||
| 352 | (home-page "") | 346 | (home-page "") |
| 353 | (synopsis "Parallel BAM File Analysis") | 347 | (synopsis "Parallel BAM File Analysis") |
| 354 | (description "Parallel BAM File Analysis") | 348 | (description "Parallel BAM File Analysis") |
| @@ -369,10 +363,7 @@ community.") | |||
| 369 | (arguments | 363 | (arguments |
| 370 | `(#:tests? #f)) | 364 | `(#:tests? #f)) |
| 371 | (propagated-inputs | 365 | (propagated-inputs |
| 372 | `(("python-numpy" ,python-numpy) | 366 | (list python-numpy python-pandas python-parabam python-pysam)) |
| 373 | ("python-pandas" ,python-pandas) | ||
| 374 | ("python-parabam" ,python-parabam) | ||
| 375 | ("python-pysam" ,python-pysam))) | ||
| 376 | (home-page "https://pypi.org/project/telomerecat/") | 367 | (home-page "https://pypi.org/project/telomerecat/") |
| 377 | (synopsis "Telomere Computational Analysis Tool") | 368 | (synopsis "Telomere Computational Analysis Tool") |
| 378 | (description "Telomerecat is a tool for estimating the average | 369 | (description "Telomerecat is a tool for estimating the average |
| @@ -391,8 +382,7 @@ telomere length for a paired end, whole genome sequencing sample.") | |||
| 391 | "04b0n1qqyqq0id55zxp2dl3zj367gf59c8jilca406aqnjryv9sl")))) | 382 | "04b0n1qqyqq0id55zxp2dl3zj367gf59c8jilca406aqnjryv9sl")))) |
| 392 | (build-system python-build-system) | 383 | (build-system python-build-system) |
| 393 | (propagated-inputs | 384 | (propagated-inputs |
| 394 | `(("python-numpy" ,python-numpy) | 385 | (list python-numpy python-pandas)) |
| 395 | ("python-pandas" ,python-pandas))) | ||
| 396 | (home-page "https://github.com/wdecoster/nanomath") | 386 | (home-page "https://github.com/wdecoster/nanomath") |
| 397 | (synopsis "Simple math function for other Oxford Nanopore scripts") | 387 | (synopsis "Simple math function for other Oxford Nanopore scripts") |
| 398 | (description "This package contains a few simple math function for other | 388 | (description "This package contains a few simple math function for other |
| @@ -411,11 +401,8 @@ Oxford Nanopore processing scripts.") | |||
| 411 | "0cs5sc2i7mfbikgssfaia28bagvka2a8qpmdzbf6i27piv2c7kyz")))) | 401 | "0cs5sc2i7mfbikgssfaia28bagvka2a8qpmdzbf6i27piv2c7kyz")))) |
| 412 | (build-system python-build-system) | 402 | (build-system python-build-system) |
| 413 | (propagated-inputs | 403 | (propagated-inputs |
| 414 | `(("python-biopython" ,python-biopython) | 404 | (list python-biopython python-nanomath python-numpy python-pandas |
| 415 | ("python-nanomath" ,python-nanomath) | 405 | python-pysam)) |
| 416 | ("python-numpy" ,python-numpy) | ||
| 417 | ("python-pandas" ,python-pandas) | ||
| 418 | ("python-pysam" ,python-pysam))) | ||
| 419 | (home-page "https://github.com/wdecoster/nanoget") | 406 | (home-page "https://github.com/wdecoster/nanoget") |
| 420 | (synopsis "Functions for Oxford Nanopore sequencing data and alignments") | 407 | (synopsis "Functions for Oxford Nanopore sequencing data and alignments") |
| 421 | (description "This package contains functions to extract information from | 408 | (description "This package contains functions to extract information from |
| @@ -434,8 +421,7 @@ Oxford Nanopore sequencing data and alignments.") | |||
| 434 | "1mr81xl08qw1vyl552snnxafzmbg9rv9lskyzvzqg8dhm8baslya")))) | 421 | "1mr81xl08qw1vyl552snnxafzmbg9rv9lskyzvzqg8dhm8baslya")))) |
| 435 | (build-system python-build-system) | 422 | (build-system python-build-system) |
| 436 | (propagated-inputs | 423 | (propagated-inputs |
| 437 | `(("python-nanoget" ,python-nanoget) | 424 | (list python-nanoget python-nanomath)) |
| 438 | ("python-nanomath" ,python-nanomath))) | ||
| 439 | (home-page "https://github.com/wdecoster/nanostat") | 425 | (home-page "https://github.com/wdecoster/nanostat") |
| 440 | (synopsis "Statistics for Oxford Nanopore sequencing data and alignments") | 426 | (synopsis "Statistics for Oxford Nanopore sequencing data and alignments") |
| 441 | (description | 427 | (description |
| @@ -471,14 +457,14 @@ Nanopore sequencing data and alignments.") | |||
| 471 | (("scipy==1.3.1") "scipy>=1.3.1") | 457 | (("scipy==1.3.1") "scipy>=1.3.1") |
| 472 | (("numpy==1.17.1") "numpy>=1.15.4"))))))) | 458 | (("numpy==1.17.1") "numpy>=1.15.4"))))))) |
| 473 | (propagated-inputs | 459 | (propagated-inputs |
| 474 | `(("python-h5py" ,python-h5py) | 460 | (list python-h5py |
| 475 | ("python-jinja2" ,python-jinja2) | 461 | python-jinja2 |
| 476 | ("python-numpy" ,python-numpy) | 462 | python-numpy |
| 477 | ("python-pandas" ,python-pandas) | 463 | python-pandas |
| 478 | ("python-plotly" ,python-plotly) | 464 | python-plotly |
| 479 | ("python-scipy" ,python-scipy) | 465 | python-scipy |
| 480 | ("python-tqdm" ,python-tqdm) | 466 | python-tqdm |
| 481 | ("python-pysam" ,python-pysam))) | 467 | python-pysam)) |
| 482 | (home-page "https://github.com/a-slide/pycoQC") | 468 | (home-page "https://github.com/a-slide/pycoQC") |
| 483 | (synopsis "QC plots for Nanopore basecallers") | 469 | (synopsis "QC plots for Nanopore basecallers") |
| 484 | (description "This package computes metrics and generates Interactive QC | 470 | (description "This package computes metrics and generates Interactive QC |
| @@ -497,7 +483,7 @@ technologies basecaller.") | |||
| 497 | (base32 | 483 | (base32 |
| 498 | "0jhjvzy5mdgvh1vx6fskpqrfjwh81k68rg25a9fgjhs19jha12kq")))) | 484 | "0jhjvzy5mdgvh1vx6fskpqrfjwh81k68rg25a9fgjhs19jha12kq")))) |
| 499 | (build-system python-build-system) | 485 | (build-system python-build-system) |
| 500 | (propagated-inputs `(("python-six" ,python-six))) | 486 | (propagated-inputs (list python-six)) |
| 501 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 487 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 502 | (synopsis "Filesystem and path manipulation tools") | 488 | (synopsis "Filesystem and path manipulation tools") |
| 503 | (description "Filesystem and path manipulation tools.") | 489 | (description "Filesystem and path manipulation tools.") |
| @@ -517,8 +503,7 @@ technologies basecaller.") | |||
| 517 | (arguments | 503 | (arguments |
| 518 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils | 504 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils |
| 519 | (propagated-inputs | 505 | (propagated-inputs |
| 520 | `(("python-dataclasses" ,python-dataclasses) | 506 | (list python-dataclasses python-docspec)) |
| 521 | ("python-docspec" ,python-docspec))) | ||
| 522 | (home-page "") | 507 | (home-page "") |
| 523 | (synopsis "Parser based on lib2to3 producing docspec data from Python code") | 508 | (synopsis "Parser based on lib2to3 producing docspec data from Python code") |
| 524 | (description "This package provides a parser based on lib2to3 producing | 509 | (description "This package provides a parser based on lib2to3 producing |
| @@ -537,7 +522,7 @@ docspec data from Python source code.") | |||
| 537 | "11mscz791vyc5133xvrggaz3srf6fs35qb7zx3k0a9hwn43cd4xq")))) | 522 | "11mscz791vyc5133xvrggaz3srf6fs35qb7zx3k0a9hwn43cd4xq")))) |
| 538 | (build-system python-build-system) | 523 | (build-system python-build-system) |
| 539 | (native-inputs | 524 | (native-inputs |
| 540 | `(("python-pytest" ,python-pytest))) | 525 | (list python-pytest)) |
| 541 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 526 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 542 | (synopsis "Utility functions for applying regular expressions") | 527 | (synopsis "Utility functions for applying regular expressions") |
| 543 | (description "This module provides some utility functions for applying | 528 | (description "This module provides some utility functions for applying |
| @@ -578,11 +563,8 @@ library. It uses dateutil for timezone offset support.") | |||
| 578 | (arguments | 563 | (arguments |
| 579 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils | 564 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils |
| 580 | (propagated-inputs | 565 | (propagated-inputs |
| 581 | `(("python-nr.collections" ,python-nr.collections) | 566 | (list python-nr.collections python-nr.databind.core python-nr.interface |
| 582 | ("python-nr.databind.core" ,python-nr.databind.core) | 567 | python-nr.parsing.date python-nr.pylang.utils)) |
| 583 | ("python-nr.interface" ,python-nr.interface) | ||
| 584 | ("python-nr.parsing.date" ,python-nr.parsing.date) | ||
| 585 | ("python-nr.pylang.utils" ,python-nr.pylang.utils))) | ||
| 586 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 568 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 587 | (synopsis "Deserialize JSON into Python objects and reverse") | 569 | (synopsis "Deserialize JSON into Python objects and reverse") |
| 588 | (description "This package provides a module to deserialize JSON into | 570 | (description "This package provides a module to deserialize JSON into |
| @@ -601,11 +583,9 @@ Python objects and reverse.") | |||
| 601 | "11wzmp8rpsl0vfvg6w6syfy50393zlmj13dhnbzzh1fhszdcjjaw")))) | 583 | "11wzmp8rpsl0vfvg6w6syfy50393zlmj13dhnbzzh1fhszdcjjaw")))) |
| 602 | (build-system python-build-system) | 584 | (build-system python-build-system) |
| 603 | (native-inputs | 585 | (native-inputs |
| 604 | `(("python-pytest" ,python-pytest))) | 586 | (list python-pytest)) |
| 605 | (propagated-inputs | 587 | (propagated-inputs |
| 606 | `(("python-nr.collections" ,python-nr.collections) | 588 | (list python-nr.collections python-nr.pylang.utils python-six)) |
| 607 | ("python-nr.pylang.utils" ,python-nr.pylang.utils) | ||
| 608 | ("python-six" ,python-six))) | ||
| 609 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 589 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 610 | (synopsis "Use iterators like Java streams") | 590 | (synopsis "Use iterators like Java streams") |
| 611 | (description "This package provides a module to use iterators like | 591 | (description "This package provides a module to use iterators like |
| @@ -624,9 +604,9 @@ Java streams.") | |||
| 624 | "1gysjx9b80xp1981qix0iz4p9s82mk319rjfhq1dbl5i4jfmgygx")))) | 604 | "1gysjx9b80xp1981qix0iz4p9s82mk319rjfhq1dbl5i4jfmgygx")))) |
| 625 | (build-system python-build-system) | 605 | (build-system python-build-system) |
| 626 | (native-inputs | 606 | (native-inputs |
| 627 | `(("python-pytest" ,python-pytest))) | 607 | (list python-pytest)) |
| 628 | (propagated-inputs | 608 | (propagated-inputs |
| 629 | `(("python-nr.collections" ,python-nr.collections))) | 609 | (list python-nr.collections)) |
| 630 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 610 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 631 | (synopsis "") | 611 | (synopsis "") |
| 632 | (description "") | 612 | (description "") |
| @@ -646,10 +626,8 @@ Java streams.") | |||
| 646 | (arguments | 626 | (arguments |
| 647 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils | 627 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils |
| 648 | (propagated-inputs | 628 | (propagated-inputs |
| 649 | `(("python-nr.collections" ,python-nr.collections) | 629 | (list python-nr.collections python-nr.metaclass python-nr.pylang.utils |
| 650 | ("python-nr.metaclass" ,python-nr.metaclass) | 630 | python-six)) |
| 651 | ("python-nr.pylang.utils" ,python-nr.pylang.utils) | ||
| 652 | ("python-six" ,python-six))) | ||
| 653 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 631 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 654 | (synopsis "Interface definitions for Python") | 632 | (synopsis "Interface definitions for Python") |
| 655 | (description "This package provides a module to define interface | 633 | (description "This package provides a module to define interface |
| @@ -668,7 +646,7 @@ definitions for Python.") | |||
| 668 | "041ban9b3vvigjdc5wbcya8n3hy3jfas1r9mj55r9hp30gkghlix")))) | 646 | "041ban9b3vvigjdc5wbcya8n3hy3jfas1r9mj55r9hp30gkghlix")))) |
| 669 | (build-system python-build-system) | 647 | (build-system python-build-system) |
| 670 | (native-inputs | 648 | (native-inputs |
| 671 | `(("python-pytest" ,python-pytest))) | 649 | (list python-pytest)) |
| 672 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 650 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 673 | (synopsis "Metaclass utilities.") | 651 | (synopsis "Metaclass utilities.") |
| 674 | (description "Metaclass utilities.") | 652 | (description "Metaclass utilities.") |
| @@ -687,11 +665,9 @@ definitions for Python.") | |||
| 687 | "0klspp025f2d7yzh61pcfb73i23xrx3xsqwacf74xzg3dlx5snv4")))) | 665 | "0klspp025f2d7yzh61pcfb73i23xrx3xsqwacf74xzg3dlx5snv4")))) |
| 688 | (build-system python-build-system) | 666 | (build-system python-build-system) |
| 689 | (native-inputs | 667 | (native-inputs |
| 690 | `(("python-pytest" ,python-pytest))) | 668 | (list python-pytest)) |
| 691 | (propagated-inputs | 669 | (propagated-inputs |
| 692 | `(("python-nr.metaclass" ,python-nr.metaclass) | 670 | (list python-nr.metaclass python-nr.fs python-six)) |
| 693 | ("python-nr.fs" ,python-nr.fs) | ||
| 694 | ("python-six" ,python-six))) | ||
| 695 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 671 | (home-page "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 696 | (synopsis "Useful container datatypes for Python") | 672 | (synopsis "Useful container datatypes for Python") |
| 697 | (description "This package provides container datatypes for | 673 | (description "This package provides container datatypes for |
| @@ -712,10 +688,8 @@ Python 2 and 3.") | |||
| 712 | (arguments | 688 | (arguments |
| 713 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils | 689 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils |
| 714 | (propagated-inputs | 690 | (propagated-inputs |
| 715 | `(("python-nr.collections" ,python-nr.collections) | 691 | (list python-nr.collections python-nr.interface python-nr.pylang.utils |
| 716 | ("python-nr.interface" ,python-nr.interface) | 692 | python-nr.stream)) |
| 717 | ("python-nr.pylang.utils" ,python-nr.pylang.utils) | ||
| 718 | ("python-nr.stream" ,python-nr.stream))) | ||
| 719 | (home-page | 693 | (home-page |
| 720 | "https://git.niklasrosenstein.com/NiklasRosenstein/nr") | 694 | "https://git.niklasrosenstein.com/NiklasRosenstein/nr") |
| 721 | (synopsis "Bind structured data directly to typed objects") | 695 | (synopsis "Bind structured data directly to typed objects") |
| @@ -738,8 +712,7 @@ directly to typed objects.") | |||
| 738 | (arguments | 712 | (arguments |
| 739 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils | 713 | `(#:tests? #f)) ; Needs old version of nr.pylang.utils |
| 740 | (propagated-inputs | 714 | (propagated-inputs |
| 741 | `(("python-nr.databind.core" ,python-nr.databind.core) | 715 | (list python-nr.databind.core python-nr.databind.json)) |
| 742 | ("python-nr.databind.json" ,python-nr.databind.json))) | ||
| 743 | (home-page "") | 716 | (home-page "") |
| 744 | (synopsis "Specification for representing API documentation") | 717 | (synopsis "Specification for representing API documentation") |
| 745 | (description "This package provides a JSON object specification for | 718 | (description "This package provides a JSON object specification for |
| @@ -760,20 +733,20 @@ representing API documentation of programming languages.") | |||
| 760 | (arguments | 733 | (arguments |
| 761 | `(#:tests? #f)) ; Needs newer version of python-watchdog. | 734 | `(#:tests? #f)) ; Needs newer version of python-watchdog. |
| 762 | (propagated-inputs | 735 | (propagated-inputs |
| 763 | `(("python-click" ,python-click) | 736 | (list python-click |
| 764 | ("python-dataclasses" ,python-dataclasses) | 737 | python-dataclasses |
| 765 | ("python-docspec" ,python-docspec) | 738 | python-docspec |
| 766 | ("python-docspec-python" ,python-docspec-python) | 739 | python-docspec-python |
| 767 | ("python-nr.collections" ,python-nr.collections) | 740 | python-nr.collections |
| 768 | ("python-nr.databind.core" ,python-nr.databind.core) | 741 | python-nr.databind.core |
| 769 | ("python-nr.databind.json" ,python-nr.databind.json) | 742 | python-nr.databind.json |
| 770 | ("python-nr.fs" ,python-nr.fs) | 743 | python-nr.fs |
| 771 | ("python-nr.interface" ,python-nr.interface) | 744 | python-nr.interface |
| 772 | ("python-pyyaml" ,python-pyyaml) | 745 | python-pyyaml |
| 773 | ("python-requests" ,python-requests) | 746 | python-requests |
| 774 | ("python-six" ,python-six) | 747 | python-six |
| 775 | ("python-toml" ,python-toml) | 748 | python-toml |
| 776 | ("python-watchdog" ,python-watchdog))) | 749 | python-watchdog)) |
| 777 | (home-page "https://github.com/NiklasRosenstein/pydoc-markdown") | 750 | (home-page "https://github.com/NiklasRosenstein/pydoc-markdown") |
| 778 | (synopsis "Create Python API documentation in Markdown format.") | 751 | (synopsis "Create Python API documentation in Markdown format.") |
| 779 | (description | 752 | (description |
| @@ -793,10 +766,7 @@ using the Markdown format.") | |||
| 793 | "1sg848j1v65i636qr8d9p4b29ps4zpb1p7382cdyav5bglcm259j")))) | 766 | "1sg848j1v65i636qr8d9p4b29ps4zpb1p7382cdyav5bglcm259j")))) |
| 794 | (build-system python-build-system) | 767 | (build-system python-build-system) |
| 795 | (propagated-inputs | 768 | (propagated-inputs |
| 796 | `(("python-coverage" ,python-coverage) | 769 | (list python-coverage python-flake8 python-nose python-docopt)) |
| 797 | ("python-flake8" ,python-flake8) | ||
| 798 | ("python-nose" ,python-nose) | ||
| 799 | ("python-docopt" ,python-docopt))) | ||
| 800 | (home-page "https://github.com/tqdm/pymake") | 770 | (home-page "https://github.com/tqdm/pymake") |
| 801 | (synopsis "Makefile execution powered by pure Python") | 771 | (synopsis "Makefile execution powered by pure Python") |
| 802 | (description "This package provides tools for Makefile execution powered | 772 | (description "This package provides tools for Makefile execution powered |
diff --git a/guix-science/packages/rstudio-node.scm b/guix-science/packages/rstudio-node.scm index 35ba1d2..5d95a98 100644 --- a/guix-science/packages/rstudio-node.scm +++ b/guix-science/packages/rstudio-node.scm | |||
| @@ -87,8 +87,7 @@ | |||
| 87 | "eslint-plugin-standard" | 87 | "eslint-plugin-standard" |
| 88 | "mocha" | 88 | "mocha" |
| 89 | "nyc"))))))) | 89 | "nyc"))))))) |
| 90 | (inputs `(("node-negotiator" ,node-negotiator-0.6.3) | 90 | (inputs (list node-negotiator-0.6.3 node-mime-types-2.1.35)) |
| 91 | ("node-mime-types" ,node-mime-types-2.1.35))) | ||
| 92 | (home-page "https://github.com/jshttp/accepts#readme") | 91 | (home-page "https://github.com/jshttp/accepts#readme") |
| 93 | (synopsis "Higher-level content negotiation") | 92 | (synopsis "Higher-level content negotiation") |
| 94 | (description "Higher-level content negotiation") | 93 | (description "Higher-level content negotiation") |
| @@ -146,7 +145,7 @@ | |||
| 146 | (add-after 'patch-dependencies 'delete-dev-dependencies | 145 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 147 | (lambda _ | 146 | (lambda _ |
| 148 | (delete-dependencies '("chai" "mocha"))))))) | 147 | (delete-dependencies '("chai" "mocha"))))))) |
| 149 | (inputs `(("node-acorn" ,node-acorn-5.7.4))) | 148 | (inputs (list node-acorn-5.7.4)) |
| 150 | (home-page "https://github.com/RReverser/acorn-jsx") | 149 | (home-page "https://github.com/RReverser/acorn-jsx") |
| 151 | (synopsis "Alternative, faster React.js JSX parser") | 150 | (synopsis "Alternative, faster React.js JSX parser") |
| 152 | (description "Alternative, faster React.js JSX parser") | 151 | (description "Alternative, faster React.js JSX parser") |
| @@ -190,7 +189,7 @@ | |||
| 190 | "semver" | 189 | "semver" |
| 191 | "typescript" | 190 | "typescript" |
| 192 | "ws"))))))) | 191 | "ws"))))))) |
| 193 | (inputs `(("node-debug" ,node-debug-4.3.4))) | 192 | (inputs (list node-debug-4.3.4)) |
| 194 | (home-page "https://github.com/TooTallNate/node-agent-base#readme") | 193 | (home-page "https://github.com/TooTallNate/node-agent-base#readme") |
| 195 | (synopsis "Turn a function into an `http.Agent` instance") | 194 | (synopsis "Turn a function into an `http.Agent` instance") |
| 196 | (description "Turn a function into an `http.Agent` instance") | 195 | (description "Turn a function into an `http.Agent` instance") |
| @@ -217,8 +216,7 @@ | |||
| 217 | (delete-dependencies '("body-parser" "express" "grunt" | 216 | (delete-dependencies '("body-parser" "express" "grunt" |
| 218 | "grunt-contrib-jshint" | 217 | "grunt-contrib-jshint" |
| 219 | "serve-static"))))))) | 218 | "serve-static"))))))) |
| 220 | (inputs `(("node-utils-extend" ,node-utils-extend-1.0.8) | 219 | (inputs (list node-utils-extend-1.0.8 node-file-system-2.2.2)) |
| 221 | ("node-file-system" ,node-file-system-2.2.2))) | ||
| 222 | (home-page "https://github.com/douzi8/ajax-request#readme") | 220 | (home-page "https://github.com/douzi8/ajax-request#readme") |
| 223 | (synopsis "Http request for nodejs, and it also support file download") | 221 | (synopsis "Http request for nodejs, and it also support file download") |
| 224 | (description "Http request for nodejs, and it also support file download") | 222 | (description "Http request for nodejs, and it also support file download") |
| @@ -266,10 +264,9 @@ | |||
| 266 | "typescript" | 264 | "typescript" |
| 267 | "uglify-js" | 265 | "uglify-js" |
| 268 | "watch"))))))) | 266 | "watch"))))))) |
| 269 | (inputs `(("node-uri-js" ,node-uri-js-4.4.1) | 267 | (inputs (list node-uri-js-4.4.1 node-json-schema-traverse-0.4.1 |
| 270 | ("node-json-schema-traverse" ,node-json-schema-traverse-0.4.1) | 268 | node-fast-json-stable-stringify-2.1.0 |
| 271 | ("node-fast-json-stable-stringify" ,node-fast-json-stable-stringify-2.1.0) | 269 | node-fast-deep-equal-3.1.3)) |
| 272 | ("node-fast-deep-equal" ,node-fast-deep-equal-3.1.3))) | ||
| 273 | (home-page "https://github.com/ajv-validator/ajv") | 270 | (home-page "https://github.com/ajv-validator/ajv") |
| 274 | (synopsis "Another JSON Schema Validator") | 271 | (synopsis "Another JSON Schema Validator") |
| 275 | (description "Another JSON Schema Validator") | 272 | (description "Another JSON Schema Validator") |
| @@ -387,7 +384,7 @@ | |||
| 387 | (lambda _ | 384 | (lambda _ |
| 388 | (delete-dependencies '("ava" "babel-polyfill" | 385 | (delete-dependencies '("ava" "babel-polyfill" |
| 389 | "svg-term-cli" "xo"))))))) | 386 | "svg-term-cli" "xo"))))))) |
| 390 | (inputs `(("node-color-convert" ,node-color-convert-1.9.3))) | 387 | (inputs (list node-color-convert-1.9.3)) |
| 391 | (home-page "https://github.com/chalk/ansi-styles#readme") | 388 | (home-page "https://github.com/chalk/ansi-styles#readme") |
| 392 | (synopsis "ANSI escape codes for styling strings in the terminal") | 389 | (synopsis "ANSI escape codes for styling strings in the terminal") |
| 393 | (description "ANSI escape codes for styling strings in the terminal") | 390 | (description "ANSI escape codes for styling strings in the terminal") |
| @@ -413,7 +410,7 @@ | |||
| 413 | (lambda _ | 410 | (lambda _ |
| 414 | (delete-dependencies '("@types/color-convert" "ava" | 411 | (delete-dependencies '("@types/color-convert" "ava" |
| 415 | "svg-term-cli" "tsd" "xo"))))))) | 412 | "svg-term-cli" "tsd" "xo"))))))) |
| 416 | (inputs `(("node-color-convert" ,node-color-convert-2.0.1))) | 413 | (inputs (list node-color-convert-2.0.1)) |
| 417 | (home-page "https://github.com/chalk/ansi-styles#readme") | 414 | (home-page "https://github.com/chalk/ansi-styles#readme") |
| 418 | (synopsis "ANSI escape codes for styling strings in the terminal") | 415 | (synopsis "ANSI escape codes for styling strings in the terminal") |
| 419 | (description "ANSI escape codes for styling strings in the terminal") | 416 | (description "ANSI escape codes for styling strings in the terminal") |
| @@ -437,8 +434,7 @@ | |||
| 437 | (add-after 'patch-dependencies 'delete-dev-dependencies | 434 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 438 | (lambda _ | 435 | (lambda _ |
| 439 | (delete-dependencies '("coveralls" "istanbul" "mocha"))))))) | 436 | (delete-dependencies '("coveralls" "istanbul" "mocha"))))))) |
| 440 | (inputs `(("node-normalize-path" ,node-normalize-path-2.1.1) | 437 | (inputs (list node-normalize-path-2.1.1 node-micromatch-2.3.11)) |
| 441 | ("node-micromatch" ,node-micromatch-2.3.11))) | ||
| 442 | (home-page "https://github.com/es128/anymatch") | 438 | (home-page "https://github.com/es128/anymatch") |
| 443 | (synopsis | 439 | (synopsis |
| 444 | "Matches strings against configurable strings, globs, regular expressions, and/or functions") | 440 | "Matches strings against configurable strings, globs, regular expressions, and/or functions") |
| @@ -559,8 +555,7 @@ | |||
| 559 | (delete-dependencies '("@npmcli/eslint-config" | 555 | (delete-dependencies '("@npmcli/eslint-config" |
| 560 | "@npmcli/template-oss" "eslint" | 556 | "@npmcli/template-oss" "eslint" |
| 561 | "eslint-plugin-node" "tap"))))))) | 557 | "eslint-plugin-node" "tap"))))))) |
| 562 | (inputs `(("node-readable-stream" ,node-readable-stream-3.6.2) | 558 | (inputs (list node-readable-stream-3.6.2 node-delegates-1.0.0)) |
| 563 | ("node-delegates" ,node-delegates-1.0.0))) | ||
| 564 | (home-page "https://github.com/npm/are-we-there-yet") | 559 | (home-page "https://github.com/npm/are-we-there-yet") |
| 565 | (synopsis | 560 | (synopsis |
| 566 | "Keep track of the overall completion of many disparate processes") | 561 | "Keep track of the overall completion of many disparate processes") |
| @@ -613,7 +608,7 @@ | |||
| 613 | (delete-dependencies '("array-differ" "array-slice" | 608 | (delete-dependencies '("array-differ" "array-slice" |
| 614 | "benchmarked" "chalk" "mocha" | 609 | "benchmarked" "chalk" "mocha" |
| 615 | "should"))))))) | 610 | "should"))))))) |
| 616 | (inputs `(("node-arr-flatten" ,node-arr-flatten-1.1.0))) | 611 | (inputs (list node-arr-flatten-1.1.0)) |
| 617 | (home-page "https://github.com/jonschlinkert/arr-diff") | 612 | (home-page "https://github.com/jonschlinkert/arr-diff") |
| 618 | (synopsis | 613 | (synopsis |
| 619 | "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.") | 614 | "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.") |
| @@ -819,7 +814,7 @@ | |||
| 819 | (lambda _ | 814 | (lambda _ |
| 820 | (delete-dependencies '("istanbul" "faucet" "tape" | 815 | (delete-dependencies '("istanbul" "faucet" "tape" |
| 821 | "eslint" "eslint-plugin-joyent"))))))) | 816 | "eslint" "eslint-plugin-joyent"))))))) |
| 822 | (inputs `(("node-safer-buffer" ,node-safer-buffer-2.1.2))) | 817 | (inputs (list node-safer-buffer-2.1.2)) |
| 823 | (home-page "https://github.com/joyent/node-asn1#readme") | 818 | (home-page "https://github.com/joyent/node-asn1#readme") |
| 824 | (synopsis | 819 | (synopsis |
| 825 | "Contains parsers and serializers for ASN.1 (currently BER only)") | 820 | "Contains parsers and serializers for ASN.1 (currently BER only)") |
| @@ -1022,7 +1017,7 @@ | |||
| 1022 | (add-after 'patch-dependencies 'delete-dev-dependencies | 1017 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 1023 | (lambda _ | 1018 | (lambda _ |
| 1024 | (delete-dependencies '("strip-ansi"))))))) | 1019 | (delete-dependencies '("strip-ansi"))))))) |
| 1025 | (inputs `(("node-babel-highlight" ,node-babel-highlight-7.22.5))) | 1020 | (inputs (list node-babel-highlight-7.22.5)) |
| 1026 | (home-page "https://babel.dev/docs/en/next/babel-code-frame") | 1021 | (home-page "https://babel.dev/docs/en/next/babel-code-frame") |
| 1027 | (synopsis | 1022 | (synopsis |
| 1028 | "Generate errors that contain a code frame that point to source locations.") | 1023 | "Generate errors that contain a code frame that point to source locations.") |
| @@ -1049,7 +1044,7 @@ | |||
| 1049 | (add-after 'patch-dependencies 'delete-dev-dependencies | 1044 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 1050 | (lambda _ | 1045 | (lambda _ |
| 1051 | (delete-dependencies '("@babel/core" "@babel/traverse"))))))) | 1046 | (delete-dependencies '("@babel/core" "@babel/traverse"))))))) |
| 1052 | (inputs `(("node-babel-types" ,node-babel-types-7.22.5))) | 1047 | (inputs (list node-babel-types-7.22.5)) |
| 1053 | (home-page "https://babel.dev/docs/en/next/babel-helper-module-imports") | 1048 | (home-page "https://babel.dev/docs/en/next/babel-helper-module-imports") |
| 1054 | (synopsis "Babel helper functions for inserting module loads") | 1049 | (synopsis "Babel helper functions for inserting module loads") |
| 1055 | (description "Babel helper functions for inserting module loads") | 1050 | (description "Babel helper functions for inserting module loads") |
| @@ -1124,9 +1119,8 @@ | |||
| 1124 | (add-after 'patch-dependencies 'delete-dev-dependencies | 1119 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 1125 | (lambda _ | 1120 | (lambda _ |
| 1126 | (delete-dependencies '("@types/chalk" "strip-ansi"))))))) | 1121 | (delete-dependencies '("@types/chalk" "strip-ansi"))))))) |
| 1127 | (inputs `(("node-js-tokens" ,node-js-tokens-4.0.0) | 1122 | (inputs (list node-js-tokens-4.0.0 node-chalk-2.4.2 |
| 1128 | ("node-chalk" ,node-chalk-2.4.2) | 1123 | node-babel-helper-validator-identifier-7.22.5)) |
| 1129 | ("node-babel-helper-validator-identifier" ,node-babel-helper-validator-identifier-7.22.5))) | ||
| 1130 | (home-page "https://babel.dev/docs/en/next/babel-highlight") | 1124 | (home-page "https://babel.dev/docs/en/next/babel-highlight") |
| 1131 | (synopsis "Syntax highlight JavaScript strings for output in terminals.") | 1125 | (synopsis "Syntax highlight JavaScript strings for output in terminals.") |
| 1132 | (description | 1126 | (description |
| @@ -1153,18 +1147,18 @@ | |||
| 1153 | (lambda _ | 1147 | (lambda _ |
| 1154 | (delete-dependencies '("babel-check-duplicated-nodes" | 1148 | (delete-dependencies '("babel-check-duplicated-nodes" |
| 1155 | "babel-core"))))))) | 1149 | "babel-core"))))))) |
| 1156 | (inputs `(("node-touch" ,node-touch-2.0.2) | 1150 | (inputs (list node-touch-2.0.2 |
| 1157 | ("node-source-map" ,node-source-map-0.5.7) | 1151 | node-source-map-0.5.7 |
| 1158 | ("node-mkdirp" ,node-mkdirp-0.5.6) | 1152 | node-mkdirp-0.5.6 |
| 1159 | ("node-find-root" ,node-find-root-1.1.0) | 1153 | node-find-root-1.1.0 |
| 1160 | ("node-convert-source-map" ,node-convert-source-map-1.9.0) | 1154 | node-convert-source-map-1.9.0 |
| 1161 | ("node-babel-plugin-syntax-jsx" ,node-babel-plugin-syntax-jsx-6.18.0) | 1155 | node-babel-plugin-syntax-jsx-6.18.0 |
| 1162 | ("node-babel-plugin-macros" ,node-babel-plugin-macros-2.8.0) | 1156 | node-babel-plugin-macros-2.8.0 |
| 1163 | ("node-emotion-stylis" ,node-emotion-stylis-0.7.1) | 1157 | node-emotion-stylis-0.7.1 |
| 1164 | ("node-emotion-memoize" ,node-emotion-memoize-0.6.6) | 1158 | node-emotion-memoize-0.6.6 |
| 1165 | ("node-emotion-hash" ,node-emotion-hash-0.6.6) | 1159 | node-emotion-hash-0.6.6 |
| 1166 | ("node-emotion-babel-utils" ,node-emotion-babel-utils-0.6.10) | 1160 | node-emotion-babel-utils-0.6.10 |
| 1167 | ("node-babel-helper-module-imports" ,node-babel-helper-module-imports-7.22.5))) | 1161 | node-babel-helper-module-imports-7.22.5)) |
| 1168 | (home-page "https://emotion.sh") | 1162 | (home-page "https://emotion.sh") |
| 1169 | (synopsis | 1163 | (synopsis |
| 1170 | "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.") | 1164 | "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.") |
| @@ -1197,9 +1191,8 @@ | |||
| 1197 | "babel-plugin-transform-es2015-modules-commonjs" | 1191 | "babel-plugin-transform-es2015-modules-commonjs" |
| 1198 | "cpy" | 1192 | "cpy" |
| 1199 | "kcd-scripts"))))))) | 1193 | "kcd-scripts"))))))) |
| 1200 | (inputs `(("node-resolve" ,node-resolve-1.22.3) | 1194 | (inputs (list node-resolve-1.22.3 node-cosmiconfig-6.0.0 |
| 1201 | ("node-cosmiconfig" ,node-cosmiconfig-6.0.0) | 1195 | node-babel-runtime-7.22.5)) |
| 1202 | ("node-babel-runtime" ,node-babel-runtime-7.22.5))) | ||
| 1203 | (home-page "https://github.com/kentcdodds/babel-plugin-macros#readme") | 1196 | (home-page "https://github.com/kentcdodds/babel-plugin-macros#readme") |
| 1204 | (synopsis "Allows you to build compile-time libraries") | 1197 | (synopsis "Allows you to build compile-time libraries") |
| 1205 | (description "Allows you to build compile-time libraries") | 1198 | (description "Allows you to build compile-time libraries") |
| @@ -1230,9 +1223,8 @@ | |||
| 1230 | "babel-plugin-transform-es2015-modules-commonjs" | 1223 | "babel-plugin-transform-es2015-modules-commonjs" |
| 1231 | "cpy" | 1224 | "cpy" |
| 1232 | "kcd-scripts"))))))) | 1225 | "kcd-scripts"))))))) |
| 1233 | (inputs `(("node-resolve" ,node-resolve-1.22.3) | 1226 | (inputs (list node-resolve-1.22.3 node-cosmiconfig-7.1.0 |
| 1234 | ("node-cosmiconfig" ,node-cosmiconfig-7.1.0) | 1227 | node-babel-runtime-7.22.5)) |
| 1235 | ("node-babel-runtime" ,node-babel-runtime-7.22.5))) | ||
| 1236 | (home-page "https://github.com/kentcdodds/babel-plugin-macros#readme") | 1228 | (home-page "https://github.com/kentcdodds/babel-plugin-macros#readme") |
| 1237 | (synopsis "Allows you to build compile-time libraries") | 1229 | (synopsis "Allows you to build compile-time libraries") |
| 1238 | (description "Allows you to build compile-time libraries") | 1230 | (description "Allows you to build compile-time libraries") |
| @@ -1279,8 +1271,7 @@ | |||
| 1279 | (lambda _ | 1271 | (lambda _ |
| 1280 | (delete-dependencies '("babel-helpers" | 1272 | (delete-dependencies '("babel-helpers" |
| 1281 | "babel-plugin-transform-runtime"))))))) | 1273 | "babel-plugin-transform-runtime"))))))) |
| 1282 | (inputs `(("node-regenerator-runtime" ,node-regenerator-runtime-0.11.1) | 1274 | (inputs (list node-regenerator-runtime-0.11.1 node-core-js-2.6.12)) |
| 1283 | ("node-core-js" ,node-core-js-2.6.12))) | ||
| 1284 | (home-page "https://www.npmjs.com/package/node-babel-runtime") | 1275 | (home-page "https://www.npmjs.com/package/node-babel-runtime") |
| 1285 | (synopsis "babel selfContained runtime") | 1276 | (synopsis "babel selfContained runtime") |
| 1286 | (description "babel selfContained runtime") | 1277 | (description "babel selfContained runtime") |
| @@ -1302,7 +1293,7 @@ | |||
| 1302 | '(#:tests? #f | 1293 | '(#:tests? #f |
| 1303 | #:phases (modify-phases %standard-phases | 1294 | #:phases (modify-phases %standard-phases |
| 1304 | (delete 'build)))) | 1295 | (delete 'build)))) |
| 1305 | (inputs `(("node-regenerator-runtime" ,node-regenerator-runtime-0.13.11))) | 1296 | (inputs (list node-regenerator-runtime-0.13.11)) |
| 1306 | (home-page "https://babel.dev/docs/en/next/babel-runtime") | 1297 | (home-page "https://babel.dev/docs/en/next/babel-runtime") |
| 1307 | (synopsis "babel's modular runtime helpers") | 1298 | (synopsis "babel's modular runtime helpers") |
| 1308 | (description "babel's modular runtime helpers") | 1299 | (description "babel's modular runtime helpers") |
| @@ -1324,8 +1315,7 @@ | |||
| 1324 | '(#:tests? #f | 1315 | '(#:tests? #f |
| 1325 | #:phases (modify-phases %standard-phases | 1316 | #:phases (modify-phases %standard-phases |
| 1326 | (delete 'build)))) | 1317 | (delete 'build)))) |
| 1327 | (inputs `(("node-regenerator-runtime" ,node-regenerator-runtime-0.13.11) | 1318 | (inputs (list node-regenerator-runtime-0.13.11 node-core-js-pure-3.30.2)) |
| 1328 | ("node-core-js-pure" ,node-core-js-pure-3.30.2))) | ||
| 1329 | (home-page "https://www.npmjs.com/package/node-babel-runtime-corejs3") | 1319 | (home-page "https://www.npmjs.com/package/node-babel-runtime-corejs3") |
| 1330 | (synopsis "babel's modular runtime helpers with core-js@@3 polyfilling") | 1320 | (synopsis "babel's modular runtime helpers with core-js@@3 polyfilling") |
| 1331 | (description "babel's modular runtime helpers with core-js@@3 polyfilling") | 1321 | (description "babel's modular runtime helpers with core-js@@3 polyfilling") |
| @@ -1351,9 +1341,9 @@ | |||
| 1351 | (lambda _ | 1341 | (lambda _ |
| 1352 | (delete-dependencies '("@babel/generator" | 1342 | (delete-dependencies '("@babel/generator" |
| 1353 | "@babel/parser" "chalk" "glob"))))))) | 1343 | "@babel/parser" "chalk" "glob"))))))) |
| 1354 | (inputs `(("node-to-fast-properties" ,node-to-fast-properties-2.0.0) | 1344 | (inputs (list node-to-fast-properties-2.0.0 |
| 1355 | ("node-babel-helper-validator-identifier" ,node-babel-helper-validator-identifier-7.22.5) | 1345 | node-babel-helper-validator-identifier-7.22.5 |
| 1356 | ("node-babel-helper-string-parser" ,node-babel-helper-string-parser-7.22.5))) | 1346 | node-babel-helper-string-parser-7.22.5)) |
| 1357 | (home-page "https://babel.dev/docs/en/next/babel-types") | 1347 | (home-page "https://babel.dev/docs/en/next/babel-types") |
| 1358 | (synopsis "Babel Types is a Lodash-esque utility library for AST nodes") | 1348 | (synopsis "Babel Types is a Lodash-esque utility library for AST nodes") |
| 1359 | (description "Babel Types is a Lodash-esque utility library for AST nodes") | 1349 | (description "Babel Types is a Lodash-esque utility library for AST nodes") |
| @@ -1409,13 +1399,13 @@ | |||
| 1409 | "should" | 1399 | "should" |
| 1410 | "through2" | 1400 | "through2" |
| 1411 | "verb-generate-readme"))))))) | 1401 | "verb-generate-readme"))))))) |
| 1412 | (inputs `(("node-pascalcase" ,node-pascalcase-0.1.1) | 1402 | (inputs (list node-pascalcase-0.1.1 |
| 1413 | ("node-mixin-deep" ,node-mixin-deep-1.3.2) | 1403 | node-mixin-deep-1.3.2 |
| 1414 | ("node-isobject" ,node-isobject-3.0.1) | 1404 | node-isobject-3.0.1 |
| 1415 | ("node-define-property" ,node-define-property-1.0.0) | 1405 | node-define-property-1.0.0 |
| 1416 | ("node-component-emitter" ,node-component-emitter-1.3.0) | 1406 | node-component-emitter-1.3.0 |
| 1417 | ("node-class-utils" ,node-class-utils-0.3.6) | 1407 | node-class-utils-0.3.6 |
| 1418 | ("node-cache-base" ,node-cache-base-1.0.1))) | 1408 | node-cache-base-1.0.1)) |
| 1419 | (home-page "https://github.com/node-base/base") | 1409 | (home-page "https://github.com/node-base/base") |
| 1420 | (synopsis | 1410 | (synopsis |
| 1421 | "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.") | 1411 | "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.") |
| @@ -1470,8 +1460,7 @@ | |||
| 1470 | (add-after 'patch-dependencies 'delete-dev-dependencies | 1460 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 1471 | (lambda _ | 1461 | (lambda _ |
| 1472 | (delete-dependencies '("grunt" "grunt-contrib-jshint"))))))) | 1462 | (delete-dependencies '("grunt" "grunt-contrib-jshint"))))))) |
| 1473 | (inputs `(("node-file-system" ,node-file-system-2.2.2) | 1463 | (inputs (list node-file-system-2.2.2 node-ajax-request-1.2.3)) |
| 1474 | ("node-ajax-request" ,node-ajax-request-1.2.3))) | ||
| 1475 | (home-page "https://github.com/douzi8/base64-img") | 1464 | (home-page "https://github.com/douzi8/base64-img") |
| 1476 | (synopsis "Convert img or svg to base64, or convert base64 to img") | 1465 | (synopsis "Convert img or svg to base64, or convert base64 to img") |
| 1477 | (description "Convert img or svg to base64, or convert base64 to img") | 1466 | (description "Convert img or svg to base64, or convert base64 to img") |
| @@ -1518,7 +1507,7 @@ | |||
| 1518 | '(#:tests? #f | 1507 | '(#:tests? #f |
| 1519 | #:phases (modify-phases %standard-phases | 1508 | #:phases (modify-phases %standard-phases |
| 1520 | (delete 'build)))) | 1509 | (delete 'build)))) |
| 1521 | (inputs `(("node-tweetnacl" ,node-tweetnacl-0.14.5))) | 1510 | (inputs (list node-tweetnacl-0.14.5)) |
| 1522 | (home-page "https://github.com/joyent/node-bcrypt-pbkdf#readme") | 1511 | (home-page "https://github.com/joyent/node-bcrypt-pbkdf#readme") |
| 1523 | (synopsis "Port of the OpenBSD bcrypt_pbkdf function to pure JS") | 1512 | (synopsis "Port of the OpenBSD bcrypt_pbkdf function to pure JS") |
| 1524 | (description "Port of the OpenBSD bcrypt_pbkdf function to pure JS") | 1513 | (description "Port of the OpenBSD bcrypt_pbkdf function to pure JS") |
| @@ -1573,7 +1562,7 @@ | |||
| 1573 | "tslib" | 1562 | "tslib" |
| 1574 | "typescript" | 1563 | "typescript" |
| 1575 | "updates"))))))) | 1564 | "updates"))))))) |
| 1576 | (inputs `(("node-xregexp" ,node-xregexp-5.1.1))) | 1565 | (inputs (list node-xregexp-5.1.1)) |
| 1577 | (home-page "https://github.com/fiduswriter/biblatex-csl-converter#readme") | 1566 | (home-page "https://github.com/fiduswriter/biblatex-csl-converter#readme") |
| 1578 | (synopsis | 1567 | (synopsis |
| 1579 | "a set of converters: biblatex => json, json => biblatex, json => CSL") | 1568 | "a set of converters: biblatex => json, json => biblatex, json => CSL") |
| @@ -1637,18 +1626,18 @@ | |||
| 1637 | "nyc" | 1626 | "nyc" |
| 1638 | "safe-buffer" | 1627 | "safe-buffer" |
| 1639 | "supertest"))))))) | 1628 | "supertest"))))))) |
| 1640 | (inputs `(("node-unpipe" ,node-unpipe-1.0.0) | 1629 | (inputs (list node-unpipe-1.0.0 |
| 1641 | ("node-type-is" ,node-type-is-1.6.18) | 1630 | node-type-is-1.6.18 |
| 1642 | ("node-raw-body" ,node-raw-body-2.5.1) | 1631 | node-raw-body-2.5.1 |
| 1643 | ("node-qs" ,node-qs-6.11.0) | 1632 | node-qs-6.11.0 |
| 1644 | ("node-on-finished" ,node-on-finished-2.4.1) | 1633 | node-on-finished-2.4.1 |
| 1645 | ("node-iconv-lite" ,node-iconv-lite-0.4.24) | 1634 | node-iconv-lite-0.4.24 |
| 1646 | ("node-http-errors" ,node-http-errors-2.0.0) | 1635 | node-http-errors-2.0.0 |
| 1647 | ("node-destroy" ,node-destroy-1.2.0) | 1636 | node-destroy-1.2.0 |
| 1648 | ("node-depd" ,node-depd-2.0.0) | 1637 | node-depd-2.0.0 |
| 1649 | ("node-debug" ,node-debug-2.6.9) | 1638 | node-debug-2.6.9 |
| 1650 | ("node-content-type" ,node-content-type-1.0.5) | 1639 | node-content-type-1.0.5 |
| 1651 | ("node-bytes" ,node-bytes-3.1.2))) | 1640 | node-bytes-3.1.2)) |
| 1652 | (home-page "https://github.com/expressjs/body-parser#readme") | 1641 | (home-page "https://github.com/expressjs/body-parser#readme") |
| 1653 | (synopsis "Node.js body parsing middleware") | 1642 | (synopsis "Node.js body parsing middleware") |
| 1654 | (description "Node.js body parsing middleware") | 1643 | (description "Node.js body parsing middleware") |
| @@ -1751,8 +1740,7 @@ | |||
| 1751 | (add-after 'patch-dependencies 'delete-dev-dependencies | 1740 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 1752 | (lambda _ | 1741 | (lambda _ |
| 1753 | (delete-dependencies '("matcha" "tape"))))))) | 1742 | (delete-dependencies '("matcha" "tape"))))))) |
| 1754 | (inputs `(("node-concat-map" ,node-concat-map-0.0.1) | 1743 | (inputs (list node-concat-map-0.0.1 node-balanced-match-1.0.2)) |
| 1755 | ("node-balanced-match" ,node-balanced-match-1.0.2))) | ||
| 1756 | (home-page "https://github.com/juliangruber/brace-expansion") | 1744 | (home-page "https://github.com/juliangruber/brace-expansion") |
| 1757 | (synopsis "Brace expansion as known from sh/bash") | 1745 | (synopsis "Brace expansion as known from sh/bash") |
| 1758 | (description "Brace expansion as known from sh/bash") | 1746 | (description "Brace expansion as known from sh/bash") |
| @@ -1782,9 +1770,8 @@ | |||
| 1782 | "minimist" | 1770 | "minimist" |
| 1783 | "mocha" | 1771 | "mocha" |
| 1784 | "should"))))))) | 1772 | "should"))))))) |
| 1785 | (inputs `(("node-repeat-element" ,node-repeat-element-1.1.4) | 1773 | (inputs (list node-repeat-element-1.1.4 node-preserve-0.2.0 |
| 1786 | ("node-preserve" ,node-preserve-0.2.0) | 1774 | node-expand-range-1.8.2)) |
| 1787 | ("node-expand-range" ,node-expand-range-1.8.2))) | ||
| 1788 | (home-page "https://github.com/jonschlinkert/braces") | 1775 | (home-page "https://github.com/jonschlinkert/braces") |
| 1789 | (synopsis | 1776 | (synopsis |
| 1790 | "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.") | 1777 | "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.") |
| @@ -1825,16 +1812,16 @@ | |||
| 1825 | "text-table" | 1812 | "text-table" |
| 1826 | "time-diff" | 1813 | "time-diff" |
| 1827 | "yargs-parser"))))))) | 1814 | "yargs-parser"))))))) |
| 1828 | (inputs `(("node-to-regex" ,node-to-regex-3.0.2) | 1815 | (inputs (list node-to-regex-3.0.2 |
| 1829 | ("node-split-string" ,node-split-string-3.1.0) | 1816 | node-split-string-3.1.0 |
| 1830 | ("node-snapdragon-node" ,node-snapdragon-node-2.1.1) | 1817 | node-snapdragon-node-2.1.1 |
| 1831 | ("node-snapdragon" ,node-snapdragon-0.8.2) | 1818 | node-snapdragon-0.8.2 |
| 1832 | ("node-repeat-element" ,node-repeat-element-1.1.4) | 1819 | node-repeat-element-1.1.4 |
| 1833 | ("node-isobject" ,node-isobject-3.0.1) | 1820 | node-isobject-3.0.1 |
| 1834 | ("node-fill-range" ,node-fill-range-4.0.0) | 1821 | node-fill-range-4.0.0 |
| 1835 | ("node-extend-shallow" ,node-extend-shallow-2.0.1) | 1822 | node-extend-shallow-2.0.1 |
| 1836 | ("node-array-unique" ,node-array-unique-0.3.2) | 1823 | node-array-unique-0.3.2 |
| 1837 | ("node-arr-flatten" ,node-arr-flatten-1.1.0))) | 1824 | node-arr-flatten-1.1.0)) |
| 1838 | (home-page "https://github.com/micromatch/braces") | 1825 | (home-page "https://github.com/micromatch/braces") |
| 1839 | (synopsis | 1826 | (synopsis |
| 1840 | "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.") | 1827 | "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.") |
| @@ -1887,7 +1874,7 @@ | |||
| 1887 | (add-after 'patch-dependencies 'delete-dev-dependencies | 1874 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 1888 | (lambda _ | 1875 | (lambda _ |
| 1889 | (delete-dependencies '("mocha" "node-gyp" "prebuildify"))))))) | 1876 | (delete-dependencies '("mocha" "node-gyp" "prebuildify"))))))) |
| 1890 | (inputs `(("node-node-gyp-build" ,node-node-gyp-build-4.6.0))) | 1877 | (inputs (list node-node-gyp-build-4.6.0)) |
| 1891 | (home-page "https://github.com/websockets/bufferutil") | 1878 | (home-page "https://github.com/websockets/bufferutil") |
| 1892 | (synopsis "WebSocket buffer utils") | 1879 | (synopsis "WebSocket buffer utils") |
| 1893 | (description "WebSocket buffer utils") | 1880 | (description "WebSocket buffer utils") |
| @@ -1936,15 +1923,15 @@ | |||
| 1936 | (add-after 'patch-dependencies 'delete-dev-dependencies | 1923 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 1937 | (lambda _ | 1924 | (lambda _ |
| 1938 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 1925 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 1939 | (inputs `(("node-unset-value" ,node-unset-value-1.0.0) | 1926 | (inputs (list node-unset-value-1.0.0 |
| 1940 | ("node-union-value" ,node-union-value-1.0.1) | 1927 | node-union-value-1.0.1 |
| 1941 | ("node-to-object-path" ,node-to-object-path-0.3.0) | 1928 | node-to-object-path-0.3.0 |
| 1942 | ("node-set-value" ,node-set-value-2.0.1) | 1929 | node-set-value-2.0.1 |
| 1943 | ("node-isobject" ,node-isobject-3.0.1) | 1930 | node-isobject-3.0.1 |
| 1944 | ("node-has-value" ,node-has-value-1.0.0) | 1931 | node-has-value-1.0.0 |
| 1945 | ("node-get-value" ,node-get-value-2.0.6) | 1932 | node-get-value-2.0.6 |
| 1946 | ("node-component-emitter" ,node-component-emitter-1.3.0) | 1933 | node-component-emitter-1.3.0 |
| 1947 | ("node-collection-visit" ,node-collection-visit-1.0.0))) | 1934 | node-collection-visit-1.0.0)) |
| 1948 | (home-page "https://github.com/jonschlinkert/cache-base") | 1935 | (home-page "https://github.com/jonschlinkert/cache-base") |
| 1949 | (synopsis | 1936 | (synopsis |
| 1950 | "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.") | 1937 | "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.") |
| @@ -1976,8 +1963,7 @@ | |||
| 1976 | "nyc" | 1963 | "nyc" |
| 1977 | "safe-publish-latest" | 1964 | "safe-publish-latest" |
| 1978 | "tape"))))))) | 1965 | "tape"))))))) |
| 1979 | (inputs `(("node-get-intrinsic" ,node-get-intrinsic-1.2.1) | 1966 | (inputs (list node-get-intrinsic-1.2.1 node-function-bind-1.1.1)) |
| 1980 | ("node-function-bind" ,node-function-bind-1.1.1))) | ||
| 1981 | (home-page "https://github.com/ljharb/call-bind#readme") | 1967 | (home-page "https://github.com/ljharb/call-bind#readme") |
| 1982 | (synopsis "Robustly `.call.bind()` a function") | 1968 | (synopsis "Robustly `.call.bind()` a function") |
| 1983 | (description "Robustly `.call.bind()` a function") | 1969 | (description "Robustly `.call.bind()` a function") |
| @@ -2077,7 +2063,7 @@ | |||
| 2077 | "rollup" | 2063 | "rollup" |
| 2078 | "rollup-plugin-commonjs" | 2064 | "rollup-plugin-commonjs" |
| 2079 | "rollup-plugin-node-resolve"))))))) | 2065 | "rollup-plugin-node-resolve"))))))) |
| 2080 | (inputs `(("node-inspector-gadget" ,node-inspector-gadget-1.0.0))) | 2066 | (inputs (list node-inspector-gadget-1.0.0)) |
| 2081 | (home-page "https://github.com/fluents/chain-able#readme") | 2067 | (home-page "https://github.com/fluents/chain-able#readme") |
| 2082 | (synopsis "next level chaining.") | 2068 | (synopsis "next level chaining.") |
| 2083 | (description "next level chaining.") | 2069 | (description "next level chaining.") |
| @@ -2165,9 +2151,8 @@ | |||
| 2165 | "resolve-from" | 2151 | "resolve-from" |
| 2166 | "typescript" | 2152 | "typescript" |
| 2167 | "xo"))))))) | 2153 | "xo"))))))) |
| 2168 | (inputs `(("node-supports-color" ,node-supports-color-5.5.0) | 2154 | (inputs (list node-supports-color-5.5.0 node-escape-string-regexp-1.0.5 |
| 2169 | ("node-escape-string-regexp" ,node-escape-string-regexp-1.0.5) | 2155 | node-ansi-styles-3.2.1)) |
| 2170 | ("node-ansi-styles" ,node-ansi-styles-3.2.1))) | ||
| 2171 | (home-page "https://github.com/chalk/chalk#readme") | 2156 | (home-page "https://github.com/chalk/chalk#readme") |
| 2172 | (synopsis "Terminal string styling done right") | 2157 | (synopsis "Terminal string styling done right") |
| 2173 | (description "Terminal string styling done right") | 2158 | (description "Terminal string styling done right") |
| @@ -2220,14 +2205,14 @@ | |||
| 2220 | "rimraf" | 2205 | "rimraf" |
| 2221 | "sinon" | 2206 | "sinon" |
| 2222 | "sinon-chai"))))))) | 2207 | "sinon-chai"))))))) |
| 2223 | (inputs `(("node-readdirp" ,node-readdirp-2.2.1) | 2208 | (inputs (list node-readdirp-2.2.1 |
| 2224 | ("node-path-is-absolute" ,node-path-is-absolute-1.0.1) | 2209 | node-path-is-absolute-1.0.1 |
| 2225 | ("node-is-glob" ,node-is-glob-2.0.1) | 2210 | node-is-glob-2.0.1 |
| 2226 | ("node-is-binary-path" ,node-is-binary-path-1.0.1) | 2211 | node-is-binary-path-1.0.1 |
| 2227 | ("node-inherits" ,node-inherits-2.0.4) | 2212 | node-inherits-2.0.4 |
| 2228 | ("node-glob-parent" ,node-glob-parent-2.0.0) | 2213 | node-glob-parent-2.0.0 |
| 2229 | ("node-async-each" ,node-async-each-1.0.6) | 2214 | node-async-each-1.0.6 |
| 2230 | ("node-anymatch" ,node-anymatch-1.3.2))) | 2215 | node-anymatch-1.3.2)) |
| 2231 | (home-page "https://github.com/paulmillr/chokidar") | 2216 | (home-page "https://github.com/paulmillr/chokidar") |
| 2232 | (synopsis | 2217 | (synopsis |
| 2233 | "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.") | 2218 | "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.") |
| @@ -2283,10 +2268,8 @@ | |||
| 2283 | "mocha" | 2268 | "mocha" |
| 2284 | "should" | 2269 | "should" |
| 2285 | "through2"))))))) | 2270 | "through2"))))))) |
| 2286 | (inputs `(("node-static-extend" ,node-static-extend-0.1.2) | 2271 | (inputs (list node-static-extend-0.1.2 node-isobject-3.0.1 |
| 2287 | ("node-isobject" ,node-isobject-3.0.1) | 2272 | node-define-property-0.2.5 node-arr-union-3.1.0)) |
| 2288 | ("node-define-property" ,node-define-property-0.2.5) | ||
| 2289 | ("node-arr-union" ,node-arr-union-3.1.0))) | ||
| 2290 | (home-page "https://github.com/jonschlinkert/class-utils") | 2273 | (home-page "https://github.com/jonschlinkert/class-utils") |
| 2291 | (synopsis | 2274 | (synopsis |
| 2292 | "Utils for working with JavaScript classes and prototype methods.") | 2275 | "Utils for working with JavaScript classes and prototype methods.") |
| @@ -2318,7 +2301,7 @@ | |||
| 2318 | "server-destroy" | 2301 | "server-destroy" |
| 2319 | "uglify-js" | 2302 | "uglify-js" |
| 2320 | "vows"))))))) | 2303 | "vows"))))))) |
| 2321 | (inputs `(("node-source-map" ,node-source-map-0.6.1))) | 2304 | (inputs (list node-source-map-0.6.1)) |
| 2322 | (home-page "https://github.com/jakubpawlowicz/clean-css") | 2305 | (home-page "https://github.com/jakubpawlowicz/clean-css") |
| 2323 | (synopsis "A well-tested CSS minifier") | 2306 | (synopsis "A well-tested CSS minifier") |
| 2324 | (description "A well-tested CSS minifier") | 2307 | (description "A well-tested CSS minifier") |
| @@ -2343,7 +2326,7 @@ | |||
| 2343 | (add-after 'patch-dependencies 'delete-dev-dependencies | 2326 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 2344 | (lambda _ | 2327 | (lambda _ |
| 2345 | (delete-dependencies '("ava" "xo"))))))) | 2328 | (delete-dependencies '("ava" "xo"))))))) |
| 2346 | (inputs `(("node-restore-cursor" ,node-restore-cursor-2.0.0))) | 2329 | (inputs (list node-restore-cursor-2.0.0)) |
| 2347 | (home-page "https://github.com/sindresorhus/cli-cursor#readme") | 2330 | (home-page "https://github.com/sindresorhus/cli-cursor#readme") |
| 2348 | (synopsis "Toggle the CLI cursor") | 2331 | (synopsis "Toggle the CLI cursor") |
| 2349 | (description "Toggle the CLI cursor") | 2332 | (description "Toggle the CLI cursor") |
| @@ -2419,9 +2402,8 @@ | |||
| 2419 | "uglifyjs-webpack-plugin" | 2402 | "uglifyjs-webpack-plugin" |
| 2420 | "webpack" | 2403 | "webpack" |
| 2421 | "webpack-cli"))))))) | 2404 | "webpack-cli"))))))) |
| 2422 | (inputs `(("node-tiny-emitter" ,node-tiny-emitter-2.1.0) | 2405 | (inputs (list node-tiny-emitter-2.1.0 node-select-1.1.2 |
| 2423 | ("node-select" ,node-select-1.1.2) | 2406 | node-good-listener-1.2.2)) |
| 2424 | ("node-good-listener" ,node-good-listener-1.2.2))) | ||
| 2425 | (home-page "https://clipboardjs.com") | 2407 | (home-page "https://clipboardjs.com") |
| 2426 | (synopsis "Modern copy to clipboard. No Flash. Just 2kb") | 2408 | (synopsis "Modern copy to clipboard. No Flash. Just 2kb") |
| 2427 | (description "Modern copy to clipboard. No Flash. Just 2kb") | 2409 | (description "Modern copy to clipboard. No Flash. Just 2kb") |
| @@ -2490,9 +2472,8 @@ | |||
| 2490 | "rollup-plugin-ts" | 2472 | "rollup-plugin-ts" |
| 2491 | "standardx" | 2473 | "standardx" |
| 2492 | "typescript"))))))) | 2474 | "typescript"))))))) |
| 2493 | (inputs `(("node-wrap-ansi" ,node-wrap-ansi-7.0.0) | 2475 | (inputs (list node-wrap-ansi-7.0.0 node-strip-ansi-6.0.1 |
| 2494 | ("node-strip-ansi" ,node-strip-ansi-6.0.1) | 2476 | node-string-width-4.2.3)) |
| 2495 | ("node-string-width" ,node-string-width-4.2.3))) | ||
| 2496 | (home-page "https://github.com/yargs/cliui#readme") | 2477 | (home-page "https://github.com/yargs/cliui#readme") |
| 2497 | (synopsis "easily create complex multi-column command-line-interfaces") | 2478 | (synopsis "easily create complex multi-column command-line-interfaces") |
| 2498 | (description "easily create complex multi-column command-line-interfaces") | 2479 | (description "easily create complex multi-column command-line-interfaces") |
| @@ -2522,8 +2503,7 @@ | |||
| 2522 | "gulp-istanbul" | 2503 | "gulp-istanbul" |
| 2523 | "gulp-mocha" | 2504 | "gulp-mocha" |
| 2524 | "mocha"))))))) | 2505 | "mocha"))))))) |
| 2525 | (inputs `(("node-object-visit" ,node-object-visit-1.0.1) | 2506 | (inputs (list node-object-visit-1.0.1 node-map-visit-1.0.0)) |
| 2526 | ("node-map-visit" ,node-map-visit-1.0.0))) | ||
| 2527 | (home-page "https://github.com/jonschlinkert/collection-visit") | 2507 | (home-page "https://github.com/jonschlinkert/collection-visit") |
| 2528 | (synopsis | 2508 | (synopsis |
| 2529 | "Visit a method over the items in an object, or map visit over the objects in an array.") | 2509 | "Visit a method over the items in an object, or map visit over the objects in an array.") |
| @@ -2575,7 +2555,7 @@ | |||
| 2575 | (add-after 'patch-dependencies 'delete-dev-dependencies | 2555 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 2576 | (lambda _ | 2556 | (lambda _ |
| 2577 | (delete-dependencies '("chalk" "xo"))))))) | 2557 | (delete-dependencies '("chalk" "xo"))))))) |
| 2578 | (inputs `(("node-color-name" ,node-color-name-1.1.4))) | 2558 | (inputs (list node-color-name-1.1.4)) |
| 2579 | (home-page "https://github.com/Qix-/color-convert#readme") | 2559 | (home-page "https://github.com/Qix-/color-convert#readme") |
| 2580 | (synopsis "Plain color conversion functions") | 2560 | (synopsis "Plain color conversion functions") |
| 2581 | (description "Plain color conversion functions") | 2561 | (description "Plain color conversion functions") |
| @@ -2650,7 +2630,7 @@ | |||
| 2650 | (add-after 'patch-dependencies 'delete-dev-dependencies | 2630 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 2651 | (lambda _ | 2631 | (lambda _ |
| 2652 | (delete-dependencies '("far"))))))) | 2632 | (delete-dependencies '("far"))))))) |
| 2653 | (inputs `(("node-delayed-stream" ,node-delayed-stream-1.0.0))) | 2633 | (inputs (list node-delayed-stream-1.0.0)) |
| 2654 | (home-page "https://github.com/felixge/node-combined-stream") | 2634 | (home-page "https://github.com/felixge/node-combined-stream") |
| 2655 | (synopsis "A stream that emits multiple other streams one after another.") | 2635 | (synopsis "A stream that emits multiple other streams one after another.") |
| 2656 | (description | 2636 | (description |
| @@ -2676,7 +2656,7 @@ | |||
| 2676 | (add-after 'patch-dependencies 'delete-dev-dependencies | 2656 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 2677 | (lambda _ | 2657 | (lambda _ |
| 2678 | (delete-dependencies '("should"))))))) | 2658 | (delete-dependencies '("should"))))))) |
| 2679 | (inputs `(("node-keypress" ,node-keypress-0.1.0))) | 2659 | (inputs (list node-keypress-0.1.0)) |
| 2680 | (home-page "https://www.npmjs.com/package/node-commander") | 2660 | (home-page "https://www.npmjs.com/package/node-commander") |
| 2681 | (synopsis "the complete solution for node.js command-line programs") | 2661 | (synopsis "the complete solution for node.js command-line programs") |
| 2682 | (description "the complete solution for node.js command-line programs") | 2662 | (description "the complete solution for node.js command-line programs") |
| @@ -2778,10 +2758,8 @@ | |||
| 2778 | (add-after 'patch-dependencies 'delete-dev-dependencies | 2758 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 2779 | (lambda _ | 2759 | (lambda _ |
| 2780 | (delete-dependencies '("tape"))))))) | 2760 | (delete-dependencies '("tape"))))))) |
| 2781 | (inputs `(("node-typedarray" ,node-typedarray-0.0.6) | 2761 | (inputs (list node-typedarray-0.0.6 node-readable-stream-2.3.8 |
| 2782 | ("node-readable-stream" ,node-readable-stream-2.3.8) | 2762 | node-inherits-2.0.4 node-buffer-from-1.1.2)) |
| 2783 | ("node-inherits" ,node-inherits-2.0.4) | ||
| 2784 | ("node-buffer-from" ,node-buffer-from-1.1.2))) | ||
| 2785 | (home-page "https://github.com/maxogden/concat-stream#readme") | 2763 | (home-page "https://github.com/maxogden/concat-stream#readme") |
| 2786 | (synopsis | 2764 | (synopsis |
| 2787 | "writable stream that concatenates strings or binary data and calls a callback with the result") | 2765 | "writable stream that concatenates strings or binary data and calls a callback with the result") |
| @@ -2808,10 +2786,8 @@ | |||
| 2808 | (add-after 'patch-dependencies 'delete-dev-dependencies | 2786 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 2809 | (lambda _ | 2787 | (lambda _ |
| 2810 | (delete-dependencies '("tape"))))))) | 2788 | (delete-dependencies '("tape"))))))) |
| 2811 | (inputs `(("node-typedarray" ,node-typedarray-0.0.6) | 2789 | (inputs (list node-typedarray-0.0.6 node-readable-stream-3.6.2 |
| 2812 | ("node-readable-stream" ,node-readable-stream-3.6.2) | 2790 | node-inherits-2.0.4 node-buffer-from-1.1.2)) |
| 2813 | ("node-inherits" ,node-inherits-2.0.4) | ||
| 2814 | ("node-buffer-from" ,node-buffer-from-1.1.2))) | ||
| 2815 | (home-page "https://github.com/maxogden/concat-stream#readme") | 2791 | (home-page "https://github.com/maxogden/concat-stream#readme") |
| 2816 | (synopsis | 2792 | (synopsis |
| 2817 | "writable stream that concatenates strings or binary data and calls a callback with the result") | 2793 | "writable stream that concatenates strings or binary data and calls a callback with the result") |
| @@ -2872,7 +2848,7 @@ | |||
| 2872 | "eslint-plugin-standard" | 2848 | "eslint-plugin-standard" |
| 2873 | "istanbul" | 2849 | "istanbul" |
| 2874 | "mocha"))))))) | 2850 | "mocha"))))))) |
| 2875 | (inputs `(("node-safe-buffer" ,node-safe-buffer-5.2.1))) | 2851 | (inputs (list node-safe-buffer-5.2.1)) |
| 2876 | (home-page "https://github.com/jshttp/content-disposition#readme") | 2852 | (home-page "https://github.com/jshttp/content-disposition#readme") |
| 2877 | (synopsis "Create and parse Content-Disposition header") | 2853 | (synopsis "Create and parse Content-Disposition header") |
| 2878 | (description "Create and parse Content-Disposition header") | 2854 | (description "Create and parse Content-Disposition header") |
| @@ -3168,11 +3144,8 @@ | |||
| 3168 | "prettier" | 3144 | "prettier" |
| 3169 | "remark-preset-davidtheclark" | 3145 | "remark-preset-davidtheclark" |
| 3170 | "typescript"))))))) | 3146 | "typescript"))))))) |
| 3171 | (inputs `(("node-yaml" ,node-yaml-1.10.2) | 3147 | (inputs (list node-yaml-1.10.2 node-path-type-4.0.0 node-parse-json-5.2.0 |
| 3172 | ("node-path-type" ,node-path-type-4.0.0) | 3148 | node-import-fresh-3.3.0 node-types-parse-json-4.0.0)) |
| 3173 | ("node-parse-json" ,node-parse-json-5.2.0) | ||
| 3174 | ("node-import-fresh" ,node-import-fresh-3.3.0) | ||
| 3175 | ("node-types-parse-json" ,node-types-parse-json-4.0.0))) | ||
| 3176 | (home-page "https://github.com/davidtheclark/cosmiconfig#readme") | 3149 | (home-page "https://github.com/davidtheclark/cosmiconfig#readme") |
| 3177 | (synopsis | 3150 | (synopsis |
| 3178 | "Find and load configuration from a package.json property, rc file, or CommonJS module") | 3151 | "Find and load configuration from a package.json property, rc file, or CommonJS module") |
| @@ -3222,11 +3195,8 @@ | |||
| 3222 | "prettier" | 3195 | "prettier" |
| 3223 | "remark-preset-davidtheclark" | 3196 | "remark-preset-davidtheclark" |
| 3224 | "typescript"))))))) | 3197 | "typescript"))))))) |
| 3225 | (inputs `(("node-yaml" ,node-yaml-1.10.2) | 3198 | (inputs (list node-yaml-1.10.2 node-path-type-4.0.0 node-parse-json-5.2.0 |
| 3226 | ("node-path-type" ,node-path-type-4.0.0) | 3199 | node-import-fresh-3.3.0 node-types-parse-json-4.0.0)) |
| 3227 | ("node-parse-json" ,node-parse-json-5.2.0) | ||
| 3228 | ("node-import-fresh" ,node-import-fresh-3.3.0) | ||
| 3229 | ("node-types-parse-json" ,node-types-parse-json-4.0.0))) | ||
| 3230 | (home-page "https://github.com/davidtheclark/cosmiconfig#readme") | 3200 | (home-page "https://github.com/davidtheclark/cosmiconfig#readme") |
| 3231 | (synopsis | 3201 | (synopsis |
| 3232 | "Find and load configuration from a package.json property, rc file, or CommonJS module") | 3202 | "Find and load configuration from a package.json property, rc file, or CommonJS module") |
| @@ -3255,13 +3225,13 @@ | |||
| 3255 | (delete-dependencies '("@types/react" | 3225 | (delete-dependencies '("@types/react" |
| 3256 | "babel-plugin-transform-define" | 3226 | "babel-plugin-transform-define" |
| 3257 | "dtslint"))))))) | 3227 | "dtslint"))))))) |
| 3258 | (inputs `(("node-stylis-rule-sheet" ,node-stylis-rule-sheet-0.0.10) | 3228 | (inputs (list node-stylis-rule-sheet-0.0.10 |
| 3259 | ("node-stylis" ,node-stylis-3.5.4) | 3229 | node-stylis-3.5.4 |
| 3260 | ("node-csstype" ,node-csstype-2.6.21) | 3230 | node-csstype-2.6.21 |
| 3261 | ("node-emotion-unitless" ,node-emotion-unitless-0.6.7) | 3231 | node-emotion-unitless-0.6.7 |
| 3262 | ("node-emotion-stylis" ,node-emotion-stylis-0.7.1) | 3232 | node-emotion-stylis-0.7.1 |
| 3263 | ("node-emotion-memoize" ,node-emotion-memoize-0.6.6) | 3233 | node-emotion-memoize-0.6.6 |
| 3264 | ("node-emotion-hash" ,node-emotion-hash-0.6.6))) | 3234 | node-emotion-hash-0.6.6)) |
| 3265 | (home-page "https://emotion.sh") | 3235 | (home-page "https://emotion.sh") |
| 3266 | (synopsis "The Next Generation of CSS-in-JS.") | 3236 | (synopsis "The Next Generation of CSS-in-JS.") |
| 3267 | (description "The Next Generation of CSS-in-JS.") | 3237 | (description "The Next Generation of CSS-in-JS.") |
| @@ -3287,8 +3257,7 @@ | |||
| 3287 | (lambda _ | 3257 | (lambda _ |
| 3288 | (delete-dependencies '("@types/react" "dtslint" | 3258 | (delete-dependencies '("@types/react" "dtslint" |
| 3289 | "prop-types"))))))) | 3259 | "prop-types"))))))) |
| 3290 | (inputs `(("node-emotion-is-prop-valid" ,node-emotion-is-prop-valid-0.6.8) | 3260 | (inputs (list node-emotion-is-prop-valid-0.6.8 node-prop-types-15.8.1)) |
| 3291 | ("node-prop-types" ,node-prop-types-15.8.1))) | ||
| 3292 | (home-page "https://emotion.sh") | 3261 | (home-page "https://emotion.sh") |
| 3293 | (synopsis "The styled API for emotion") | 3262 | (synopsis "The styled API for emotion") |
| 3294 | (description "The styled API for emotion") | 3263 | (description "The styled API for emotion") |
| @@ -3446,7 +3415,7 @@ | |||
| 3446 | (add-after 'patch-dependencies 'delete-dev-dependencies | 3415 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 3447 | (lambda _ | 3416 | (lambda _ |
| 3448 | (delete-dependencies '("nodeunit"))))))) | 3417 | (delete-dependencies '("nodeunit"))))))) |
| 3449 | (inputs `(("node-assert-plus" ,node-assert-plus-1.0.0))) | 3418 | (inputs (list node-assert-plus-1.0.0)) |
| 3450 | (home-page "https://github.com/trentm/node-dashdash#readme") | 3419 | (home-page "https://github.com/trentm/node-dashdash#readme") |
| 3451 | (synopsis "A light, featureful and explicit option parsing library.") | 3420 | (synopsis "A light, featureful and explicit option parsing library.") |
| 3452 | (description "A light, featureful and explicit option parsing library.") | 3421 | (description "A light, featureful and explicit option parsing library.") |
| @@ -3484,7 +3453,7 @@ | |||
| 3484 | "rimraf" | 3453 | "rimraf" |
| 3485 | "sinon" | 3454 | "sinon" |
| 3486 | "sinon-chai"))))))) | 3455 | "sinon-chai"))))))) |
| 3487 | (inputs `(("node-ms" ,node-ms-2.0.0))) | 3456 | (inputs (list node-ms-2.0.0)) |
| 3488 | (home-page "https://github.com/visionmedia/debug#readme") | 3457 | (home-page "https://github.com/visionmedia/debug#readme") |
| 3489 | (synopsis "small debugging utility") | 3458 | (synopsis "small debugging utility") |
| 3490 | (description "small debugging utility") | 3459 | (description "small debugging utility") |
| @@ -3517,7 +3486,7 @@ | |||
| 3517 | "mocha" | 3486 | "mocha" |
| 3518 | "mocha-lcov-reporter" | 3487 | "mocha-lcov-reporter" |
| 3519 | "xo"))))))) | 3488 | "xo"))))))) |
| 3520 | (inputs `(("node-ms" ,node-ms-2.1.2))) | 3489 | (inputs (list node-ms-2.1.2)) |
| 3521 | (home-page "https://github.com/debug-js/debug#readme") | 3490 | (home-page "https://github.com/debug-js/debug#readme") |
| 3522 | (synopsis "Lightweight debugging utility for Node.js and the browser") | 3491 | (synopsis "Lightweight debugging utility for Node.js and the browser") |
| 3523 | (description "Lightweight debugging utility for Node.js and the browser") | 3492 | (description "Lightweight debugging utility for Node.js and the browser") |
| @@ -3591,7 +3560,7 @@ | |||
| 3591 | (add-after 'patch-dependencies 'delete-dev-dependencies | 3560 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 3592 | (lambda _ | 3561 | (lambda _ |
| 3593 | (delete-dependencies '("mocha" "should"))))))) | 3562 | (delete-dependencies '("mocha" "should"))))))) |
| 3594 | (inputs `(("node-is-descriptor" ,node-is-descriptor-0.1.6))) | 3563 | (inputs (list node-is-descriptor-0.1.6)) |
| 3595 | (home-page "https://github.com/jonschlinkert/define-property") | 3564 | (home-page "https://github.com/jonschlinkert/define-property") |
| 3596 | (synopsis "Define a non-enumerable property on an object.") | 3565 | (synopsis "Define a non-enumerable property on an object.") |
| 3597 | (description "Define a non-enumerable property on an object.") | 3566 | (description "Define a non-enumerable property on an object.") |
| @@ -3616,7 +3585,7 @@ | |||
| 3616 | (add-after 'patch-dependencies 'delete-dev-dependencies | 3585 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 3617 | (lambda _ | 3586 | (lambda _ |
| 3618 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 3587 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 3619 | (inputs `(("node-is-descriptor" ,node-is-descriptor-1.0.2))) | 3588 | (inputs (list node-is-descriptor-1.0.2)) |
| 3620 | (home-page "https://github.com/jonschlinkert/define-property") | 3589 | (home-page "https://github.com/jonschlinkert/define-property") |
| 3621 | (synopsis "Define a non-enumerable property on an object.") | 3590 | (synopsis "Define a non-enumerable property on an object.") |
| 3622 | (description "Define a non-enumerable property on an object.") | 3591 | (description "Define a non-enumerable property on an object.") |
| @@ -3641,8 +3610,7 @@ | |||
| 3641 | (add-after 'patch-dependencies 'delete-dev-dependencies | 3610 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 3642 | (lambda _ | 3611 | (lambda _ |
| 3643 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 3612 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 3644 | (inputs `(("node-isobject" ,node-isobject-3.0.1) | 3613 | (inputs (list node-isobject-3.0.1 node-is-descriptor-1.0.2)) |
| 3645 | ("node-is-descriptor" ,node-is-descriptor-1.0.2))) | ||
| 3646 | (home-page "https://github.com/jonschlinkert/define-property") | 3614 | (home-page "https://github.com/jonschlinkert/define-property") |
| 3647 | (synopsis | 3615 | (synopsis |
| 3648 | "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.") | 3616 | "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.") |
| @@ -3890,8 +3858,7 @@ | |||
| 3890 | '(#:tests? #f | 3858 | '(#:tests? #f |
| 3891 | #:phases (modify-phases %standard-phases | 3859 | #:phases (modify-phases %standard-phases |
| 3892 | (delete 'build)))) | 3860 | (delete 'build)))) |
| 3893 | (inputs `(("node-safer-buffer" ,node-safer-buffer-2.1.2) | 3861 | (inputs (list node-safer-buffer-2.1.2 node-jsbn-0.1.1)) |
| 3894 | ("node-jsbn" ,node-jsbn-0.1.1))) | ||
| 3895 | (home-page "https://github.com/quartzjer/ecc-jsbn") | 3862 | (home-page "https://github.com/quartzjer/ecc-jsbn") |
| 3896 | (synopsis "ECC JS code based on JSBN") | 3863 | (synopsis "ECC JS code based on JSBN") |
| 3897 | (description "ECC JS code based on JSBN") | 3864 | (description "ECC JS code based on JSBN") |
| @@ -3971,8 +3938,7 @@ | |||
| 3971 | (delete-dependencies '("@types/react" | 3938 | (delete-dependencies '("@types/react" |
| 3972 | "babel-plugin-transform-define" | 3939 | "babel-plugin-transform-define" |
| 3973 | "dtslint"))))))) | 3940 | "dtslint"))))))) |
| 3974 | (inputs `(("node-create-emotion" ,node-create-emotion-9.2.12) | 3941 | (inputs (list node-create-emotion-9.2.12 node-babel-plugin-emotion-9.2.11)) |
| 3975 | ("node-babel-plugin-emotion" ,node-babel-plugin-emotion-9.2.11))) | ||
| 3976 | (home-page "https://emotion.sh") | 3942 | (home-page "https://emotion.sh") |
| 3977 | (synopsis "The Next Generation of CSS-in-JS.") | 3943 | (synopsis "The Next Generation of CSS-in-JS.") |
| 3978 | (description "The Next Generation of CSS-in-JS.") | 3944 | (description "The Next Generation of CSS-in-JS.") |
| @@ -3998,17 +3964,17 @@ | |||
| 3998 | (lambda _ | 3964 | (lambda _ |
| 3999 | (delete-dependencies '("@babel/core" | 3965 | (delete-dependencies '("@babel/core" |
| 4000 | "babel-check-duplicated-nodes"))))))) | 3966 | "babel-check-duplicated-nodes"))))))) |
| 4001 | (inputs `(("node-stylis" ,node-stylis-4.2.0) | 3967 | (inputs (list node-stylis-4.2.0 |
| 4002 | ("node-source-map" ,node-source-map-0.5.7) | 3968 | node-source-map-0.5.7 |
| 4003 | ("node-find-root" ,node-find-root-1.1.0) | 3969 | node-find-root-1.1.0 |
| 4004 | ("node-escape-string-regexp" ,node-escape-string-regexp-4.0.0) | 3970 | node-escape-string-regexp-4.0.0 |
| 4005 | ("node-convert-source-map" ,node-convert-source-map-1.9.0) | 3971 | node-convert-source-map-1.9.0 |
| 4006 | ("node-babel-plugin-macros" ,node-babel-plugin-macros-3.1.0) | 3972 | node-babel-plugin-macros-3.1.0 |
| 4007 | ("node-emotion-serialize" ,node-emotion-serialize-1.1.2) | 3973 | node-emotion-serialize-1.1.2 |
| 4008 | ("node-emotion-memoize" ,node-emotion-memoize-0.8.1) | 3974 | node-emotion-memoize-0.8.1 |
| 4009 | ("node-emotion-hash" ,node-emotion-hash-0.9.1) | 3975 | node-emotion-hash-0.9.1 |
| 4010 | ("node-babel-runtime" ,node-babel-runtime-7.22.5) | 3976 | node-babel-runtime-7.22.5 |
| 4011 | ("node-babel-helper-module-imports" ,node-babel-helper-module-imports-7.22.5))) | 3977 | node-babel-helper-module-imports-7.22.5)) |
| 4012 | (home-page "https://emotion.sh") | 3978 | (home-page "https://emotion.sh") |
| 4013 | (synopsis | 3979 | (synopsis |
| 4014 | "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.") | 3980 | "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.") |
| @@ -4032,12 +3998,12 @@ | |||
| 4032 | '(#:tests? #f | 3998 | '(#:tests? #f |
| 4033 | #:phases (modify-phases %standard-phases | 3999 | #:phases (modify-phases %standard-phases |
| 4034 | (delete 'build)))) | 4000 | (delete 'build)))) |
| 4035 | (inputs `(("node-source-map" ,node-source-map-0.7.4) | 4001 | (inputs (list node-source-map-0.7.4 |
| 4036 | ("node-find-root" ,node-find-root-1.1.0) | 4002 | node-find-root-1.1.0 |
| 4037 | ("node-convert-source-map" ,node-convert-source-map-1.9.0) | 4003 | node-convert-source-map-1.9.0 |
| 4038 | ("node-emotion-serialize" ,node-emotion-serialize-0.9.1) | 4004 | node-emotion-serialize-0.9.1 |
| 4039 | ("node-emotion-memoize" ,node-emotion-memoize-0.6.6) | 4005 | node-emotion-memoize-0.6.6 |
| 4040 | ("node-emotion-hash" ,node-emotion-hash-0.6.6))) | 4006 | node-emotion-hash-0.6.6)) |
| 4041 | (home-page "https://www.npmjs.com/package/node-emotion-babel-utils") | 4007 | (home-page "https://www.npmjs.com/package/node-emotion-babel-utils") |
| 4042 | (synopsis "Internal Babel utils used in various macros") | 4008 | (synopsis "Internal Babel utils used in various macros") |
| 4043 | (description "Internal Babel utils used in various macros") | 4009 | (description "Internal Babel utils used in various macros") |
| @@ -4063,11 +4029,9 @@ | |||
| 4063 | (lambda _ | 4029 | (lambda _ |
| 4064 | (delete-dependencies '("@definitelytyped/dtslint" | 4030 | (delete-dependencies '("@definitelytyped/dtslint" |
| 4065 | "@emotion/hash" "typescript"))))))) | 4031 | "@emotion/hash" "typescript"))))))) |
| 4066 | (inputs `(("node-stylis" ,node-stylis-4.2.0) | 4032 | (inputs (list node-stylis-4.2.0 node-emotion-weak-memoize-0.3.1 |
| 4067 | ("node-emotion-weak-memoize" ,node-emotion-weak-memoize-0.3.1) | 4033 | node-emotion-utils-1.2.1 node-emotion-sheet-1.2.2 |
| 4068 | ("node-emotion-utils" ,node-emotion-utils-1.2.1) | 4034 | node-emotion-memoize-0.8.1)) |
| 4069 | ("node-emotion-sheet" ,node-emotion-sheet-1.2.2) | ||
| 4070 | ("node-emotion-memoize" ,node-emotion-memoize-0.8.1))) | ||
| 4071 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") | 4035 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") |
| 4072 | (synopsis "emotion's cache") | 4036 | (synopsis "emotion's cache") |
| 4073 | (description "emotion's cache") | 4037 | (description "emotion's cache") |
| @@ -4092,11 +4056,9 @@ | |||
| 4092 | (lambda _ | 4056 | (lambda _ |
| 4093 | (delete-dependencies '("@definitelytyped/dtslint" | 4057 | (delete-dependencies '("@definitelytyped/dtslint" |
| 4094 | "typescript"))))))) | 4058 | "typescript"))))))) |
| 4095 | (inputs `(("node-emotion-utils" ,node-emotion-utils-1.2.1) | 4059 | (inputs (list node-emotion-utils-1.2.1 node-emotion-sheet-1.2.2 |
| 4096 | ("node-emotion-sheet" ,node-emotion-sheet-1.2.2) | 4060 | node-emotion-serialize-1.1.2 node-emotion-cache-11.11.0 |
| 4097 | ("node-emotion-serialize" ,node-emotion-serialize-1.1.2) | 4061 | node-emotion-babel-plugin-11.11.0)) |
| 4098 | ("node-emotion-cache" ,node-emotion-cache-11.11.0) | ||
| 4099 | ("node-emotion-babel-plugin" ,node-emotion-babel-plugin-11.11.0))) | ||
| 4100 | (home-page "https://emotion.sh") | 4062 | (home-page "https://emotion.sh") |
| 4101 | (synopsis "The Next Generation of CSS-in-JS.") | 4063 | (synopsis "The Next Generation of CSS-in-JS.") |
| 4102 | (description "The Next Generation of CSS-in-JS.") | 4064 | (description "The Next Generation of CSS-in-JS.") |
| @@ -4162,7 +4124,7 @@ | |||
| 4162 | '(#:tests? #f | 4124 | '(#:tests? #f |
| 4163 | #:phases (modify-phases %standard-phases | 4125 | #:phases (modify-phases %standard-phases |
| 4164 | (delete 'build)))) | 4126 | (delete 'build)))) |
| 4165 | (inputs `(("node-emotion-memoize" ,node-emotion-memoize-0.6.6))) | 4127 | (inputs (list node-emotion-memoize-0.6.6)) |
| 4166 | (home-page "https://www.npmjs.com/package/node-emotion-is-prop-valid") | 4128 | (home-page "https://www.npmjs.com/package/node-emotion-is-prop-valid") |
| 4167 | (synopsis | 4129 | (synopsis |
| 4168 | "A function to check whether a prop is valid for HTML and SVG elements") | 4130 | "A function to check whether a prop is valid for HTML and SVG elements") |
| @@ -4190,7 +4152,7 @@ | |||
| 4190 | (lambda _ | 4152 | (lambda _ |
| 4191 | (delete-dependencies '("@definitelytyped/dtslint" | 4153 | (delete-dependencies '("@definitelytyped/dtslint" |
| 4192 | "typescript"))))))) | 4154 | "typescript"))))))) |
| 4193 | (inputs `(("node-emotion-memoize" ,node-emotion-memoize-0.8.1))) | 4155 | (inputs (list node-emotion-memoize-0.8.1)) |
| 4194 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") | 4156 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") |
| 4195 | (synopsis | 4157 | (synopsis |
| 4196 | "A function to check whether a prop is valid for HTML and SVG elements") | 4158 | "A function to check whether a prop is valid for HTML and SVG elements") |
| @@ -4271,15 +4233,15 @@ | |||
| 4271 | "react" | 4233 | "react" |
| 4272 | "svg-tag-names" | 4234 | "svg-tag-names" |
| 4273 | "typescript"))))))) | 4235 | "typescript"))))))) |
| 4274 | (inputs `(("node-hoist-non-react-statics" ,node-hoist-non-react-statics-3.3.2) | 4236 | (inputs (list node-hoist-non-react-statics-3.3.2 |
| 4275 | ("node-emotion-weak-memoize" ,node-emotion-weak-memoize-0.3.1) | 4237 | node-emotion-weak-memoize-0.3.1 |
| 4276 | ("node-emotion-utils" ,node-emotion-utils-1.2.1) | 4238 | node-emotion-utils-1.2.1 |
| 4277 | ("node-emotion-use-insertion-effect-with-fallbacks" ,node-emotion-use-insertion-effect-with-fallbacks-1.0.1) | 4239 | node-emotion-use-insertion-effect-with-fallbacks-1.0.1 |
| 4278 | ("node-emotion-serialize" ,node-emotion-serialize-1.1.2) | 4240 | node-emotion-serialize-1.1.2 |
| 4279 | ("node-emotion-cache" ,node-emotion-cache-11.11.0) | 4241 | node-emotion-cache-11.11.0 |
| 4280 | ("node-emotion-babel-plugin" ,node-emotion-babel-plugin-11.11.0) | 4242 | node-emotion-babel-plugin-11.11.0 |
| 4281 | ("node-babel-runtime" ,node-babel-runtime-7.22.5) | 4243 | node-babel-runtime-7.22.5 |
| 4282 | ("node-react" ,node-react-18.2.0))) | 4244 | node-react-18.2.0)) |
| 4283 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") | 4245 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") |
| 4284 | (synopsis "> Simple styling in React.") | 4246 | (synopsis "> Simple styling in React.") |
| 4285 | (description "> Simple styling in React.") | 4247 | (description "> Simple styling in React.") |
| @@ -4301,10 +4263,8 @@ | |||
| 4301 | '(#:tests? #f | 4263 | '(#:tests? #f |
| 4302 | #:phases (modify-phases %standard-phases | 4264 | #:phases (modify-phases %standard-phases |
| 4303 | (delete 'build)))) | 4265 | (delete 'build)))) |
| 4304 | (inputs `(("node-emotion-utils" ,node-emotion-utils-0.8.2) | 4266 | (inputs (list node-emotion-utils-0.8.2 node-emotion-unitless-0.6.7 |
| 4305 | ("node-emotion-unitless" ,node-emotion-unitless-0.6.7) | 4267 | node-emotion-memoize-0.6.6 node-emotion-hash-0.6.6)) |
| 4306 | ("node-emotion-memoize" ,node-emotion-memoize-0.6.6) | ||
| 4307 | ("node-emotion-hash" ,node-emotion-hash-0.6.6))) | ||
| 4308 | (home-page "https://www.npmjs.com/package/node-emotion-serialize") | 4268 | (home-page "https://www.npmjs.com/package/node-emotion-serialize") |
| 4309 | (synopsis "serialization utils for emotion") | 4269 | (synopsis "serialization utils for emotion") |
| 4310 | (description "serialization utils for emotion") | 4270 | (description "serialization utils for emotion") |
| @@ -4330,11 +4290,9 @@ | |||
| 4330 | (lambda _ | 4290 | (lambda _ |
| 4331 | (delete-dependencies '("@definitelytyped/dtslint" | 4291 | (delete-dependencies '("@definitelytyped/dtslint" |
| 4332 | "typescript"))))))) | 4292 | "typescript"))))))) |
| 4333 | (inputs `(("node-csstype" ,node-csstype-3.1.2) | 4293 | (inputs (list node-csstype-3.1.2 node-emotion-utils-1.2.1 |
| 4334 | ("node-emotion-utils" ,node-emotion-utils-1.2.1) | 4294 | node-emotion-unitless-0.8.1 node-emotion-memoize-0.8.1 |
| 4335 | ("node-emotion-unitless" ,node-emotion-unitless-0.8.1) | 4295 | node-emotion-hash-0.9.1)) |
| 4336 | ("node-emotion-memoize" ,node-emotion-memoize-0.8.1) | ||
| 4337 | ("node-emotion-hash" ,node-emotion-hash-0.9.1))) | ||
| 4338 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") | 4296 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") |
| 4339 | (synopsis "serialization utils for emotion") | 4297 | (synopsis "serialization utils for emotion") |
| 4340 | (description "serialization utils for emotion") | 4298 | (description "serialization utils for emotion") |
| @@ -4386,14 +4344,14 @@ | |||
| 4386 | (delete-dependencies '("@definitelytyped/dtslint" | 4344 | (delete-dependencies '("@definitelytyped/dtslint" |
| 4387 | "@emotion/react" "react" | 4345 | "@emotion/react" "react" |
| 4388 | "typescript"))))))) | 4346 | "typescript"))))))) |
| 4389 | (inputs `(("node-emotion-utils" ,node-emotion-utils-1.2.1) | 4347 | (inputs (list node-emotion-utils-1.2.1 |
| 4390 | ("node-emotion-use-insertion-effect-with-fallbacks" ,node-emotion-use-insertion-effect-with-fallbacks-1.0.1) | 4348 | node-emotion-use-insertion-effect-with-fallbacks-1.0.1 |
| 4391 | ("node-emotion-serialize" ,node-emotion-serialize-1.1.2) | 4349 | node-emotion-serialize-1.1.2 |
| 4392 | ("node-emotion-is-prop-valid" ,node-emotion-is-prop-valid-1.2.1) | 4350 | node-emotion-is-prop-valid-1.2.1 |
| 4393 | ("node-emotion-babel-plugin" ,node-emotion-babel-plugin-11.11.0) | 4351 | node-emotion-babel-plugin-11.11.0 |
| 4394 | ("node-babel-runtime" ,node-babel-runtime-7.22.5) | 4352 | node-babel-runtime-7.22.5 |
| 4395 | ("node-react" ,node-react-18.2.0) | 4353 | node-react-18.2.0 |
| 4396 | ("node-emotion-react" ,node-emotion-react-11.11.1))) | 4354 | node-emotion-react-11.11.1)) |
| 4397 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") | 4355 | (home-page "https://github.com/emotion-js/emotion/tree/main#readme") |
| 4398 | (synopsis "styled API for emotion") | 4356 | (synopsis "styled API for emotion") |
| 4399 | (description "styled API for emotion") | 4357 | (description "styled API for emotion") |
| @@ -4620,7 +4578,7 @@ | |||
| 4620 | (add-after 'patch-dependencies 'delete-dev-dependencies | 4578 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 4621 | (lambda _ | 4579 | (lambda _ |
| 4622 | (delete-dependencies '("nodeunit"))))))) | 4580 | (delete-dependencies '("nodeunit"))))))) |
| 4623 | (inputs `(("node-iconv-lite" ,node-iconv-lite-0.6.3))) | 4581 | (inputs (list node-iconv-lite-0.6.3)) |
| 4624 | (home-page "https://github.com/andris9/encoding#readme") | 4582 | (home-page "https://github.com/andris9/encoding#readme") |
| 4625 | (synopsis "Convert encodings, uses iconv-lite") | 4583 | (synopsis "Convert encodings, uses iconv-lite") |
| 4626 | (description "Convert encodings, uses iconv-lite") | 4584 | (description "Convert encodings, uses iconv-lite") |
| @@ -4702,7 +4660,7 @@ | |||
| 4702 | (lambda _ | 4660 | (lambda _ |
| 4703 | (delete-dependencies '("coffee-script" "coveralls" | 4661 | (delete-dependencies '("coffee-script" "coveralls" |
| 4704 | "istanbul" "mocha" "should" "xo"))))))) | 4662 | "istanbul" "mocha" "should" "xo"))))))) |
| 4705 | (inputs `(("node-is-arrayish" ,node-is-arrayish-0.2.1))) | 4663 | (inputs (list node-is-arrayish-0.2.1)) |
| 4706 | (home-page "https://github.com/qix-/node-error-ex#readme") | 4664 | (home-page "https://github.com/qix-/node-error-ex#readme") |
| 4707 | (synopsis "Easy error subclassing and stack customization") | 4665 | (synopsis "Easy error subclassing and stack customization") |
| 4708 | (description "Easy error subclassing and stack customization") | 4666 | (description "Easy error subclassing and stack customization") |
| @@ -4801,7 +4759,7 @@ | |||
| 4801 | (lambda _ | 4759 | (lambda _ |
| 4802 | (delete-dependencies '("babel-preset-es2015" "eslint" | 4760 | (delete-dependencies '("babel-preset-es2015" "eslint" |
| 4803 | "gulp" "gulp-babel" "nodeunit"))))))) | 4761 | "gulp" "gulp-babel" "nodeunit"))))))) |
| 4804 | (inputs `(("node-es6-promise" ,node-es6-promise-4.2.8))) | 4762 | (inputs (list node-es6-promise-4.2.8)) |
| 4805 | (home-page "https://github.com/digitaldesignlabs/es6-promisify#readme") | 4763 | (home-page "https://github.com/digitaldesignlabs/es6-promisify#readme") |
| 4806 | (synopsis "Converts callback-based functions to ES6 Promises") | 4764 | (synopsis "Converts callback-based functions to ES6 Promises") |
| 4807 | (description "Converts callback-based functions to ES6 Promises") | 4765 | (description "Converts callback-based functions to ES6 Promises") |
| @@ -4930,11 +4888,8 @@ | |||
| 4930 | "gulp-eslint" | 4888 | "gulp-eslint" |
| 4931 | "gulp-mocha" | 4889 | "gulp-mocha" |
| 4932 | "semver"))))))) | 4890 | "semver"))))))) |
| 4933 | (inputs `(("node-source-map" ,node-source-map-0.6.1) | 4891 | (inputs (list node-source-map-0.6.1 node-optionator-0.8.3 |
| 4934 | ("node-optionator" ,node-optionator-0.8.3) | 4892 | node-esprima-4.0.1 node-esutils-2.0.3 node-estraverse-4.3.0)) |
| 4935 | ("node-esprima" ,node-esprima-4.0.1) | ||
| 4936 | ("node-esutils" ,node-esutils-2.0.3) | ||
| 4937 | ("node-estraverse" ,node-estraverse-4.3.0))) | ||
| 4938 | (home-page "http://github.com/estools/escodegen") | 4893 | (home-page "http://github.com/estools/escodegen") |
| 4939 | (synopsis "ECMAScript code generator") | 4894 | (synopsis "ECMAScript code generator") |
| 4940 | (description "ECMAScript code generator") | 4895 | (description "ECMAScript code generator") |
| @@ -5103,7 +5058,7 @@ | |||
| 5103 | "mocha" | 5058 | "mocha" |
| 5104 | "sinon" | 5059 | "sinon" |
| 5105 | "standard"))))))) | 5060 | "standard"))))))) |
| 5106 | (inputs `(("node-merge" ,node-merge-1.2.1))) | 5061 | (inputs (list node-merge-1.2.1)) |
| 5107 | (home-page "https://github.com/tsertkov/exec-sh#readme") | 5062 | (home-page "https://github.com/tsertkov/exec-sh#readme") |
| 5108 | (synopsis "Execute shell command forwarding all stdio.") | 5063 | (synopsis "Execute shell command forwarding all stdio.") |
| 5109 | (description "Execute shell command forwarding all stdio.") | 5064 | (description "Execute shell command forwarding all stdio.") |
| @@ -5128,7 +5083,7 @@ | |||
| 5128 | (add-after 'patch-dependencies 'delete-dev-dependencies | 5083 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 5129 | (lambda _ | 5084 | (lambda _ |
| 5130 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) | 5085 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) |
| 5131 | (inputs `(("node-is-posix-bracket" ,node-is-posix-bracket-0.1.1))) | 5086 | (inputs (list node-is-posix-bracket-0.1.1)) |
| 5132 | (home-page "https://github.com/jonschlinkert/expand-brackets") | 5087 | (home-page "https://github.com/jonschlinkert/expand-brackets") |
| 5133 | (synopsis | 5088 | (synopsis |
| 5134 | "Expand POSIX bracket expressions (character classes) in glob patterns.") | 5089 | "Expand POSIX bracket expressions (character classes) in glob patterns.") |
| @@ -5160,13 +5115,13 @@ | |||
| 5160 | "mocha" | 5115 | "mocha" |
| 5161 | "multimatch" | 5116 | "multimatch" |
| 5162 | "yargs-parser"))))))) | 5117 | "yargs-parser"))))))) |
| 5163 | (inputs `(("node-to-regex" ,node-to-regex-3.0.2) | 5118 | (inputs (list node-to-regex-3.0.2 |
| 5164 | ("node-snapdragon" ,node-snapdragon-0.8.2) | 5119 | node-snapdragon-0.8.2 |
| 5165 | ("node-regex-not" ,node-regex-not-1.0.2) | 5120 | node-regex-not-1.0.2 |
| 5166 | ("node-posix-character-classes" ,node-posix-character-classes-0.1.1) | 5121 | node-posix-character-classes-0.1.1 |
| 5167 | ("node-extend-shallow" ,node-extend-shallow-2.0.1) | 5122 | node-extend-shallow-2.0.1 |
| 5168 | ("node-define-property" ,node-define-property-0.2.5) | 5123 | node-define-property-0.2.5 |
| 5169 | ("node-debug" ,node-debug-2.6.9))) | 5124 | node-debug-2.6.9)) |
| 5170 | (home-page "https://github.com/jonschlinkert/expand-brackets") | 5125 | (home-page "https://github.com/jonschlinkert/expand-brackets") |
| 5171 | (synopsis | 5126 | (synopsis |
| 5172 | "Expand POSIX bracket expressions (character classes) in glob patterns.") | 5127 | "Expand POSIX bracket expressions (character classes) in glob patterns.") |
| @@ -5195,7 +5150,7 @@ | |||
| 5195 | (delete-dependencies '("benchmarked" "brace-expansion" | 5150 | (delete-dependencies '("benchmarked" "brace-expansion" |
| 5196 | "glob" "gulp-format-md" | 5151 | "glob" "gulp-format-md" |
| 5197 | "minimatch" "mocha"))))))) | 5152 | "minimatch" "mocha"))))))) |
| 5198 | (inputs `(("node-fill-range" ,node-fill-range-2.2.4))) | 5153 | (inputs (list node-fill-range-2.2.4)) |
| 5199 | (home-page "https://github.com/jonschlinkert/expand-range") | 5154 | (home-page "https://github.com/jonschlinkert/expand-range") |
| 5200 | (synopsis | 5155 | (synopsis |
| 5201 | "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.") | 5156 | "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.") |
| @@ -5236,37 +5191,37 @@ | |||
| 5236 | "pbkdf2-password" | 5191 | "pbkdf2-password" |
| 5237 | "supertest" | 5192 | "supertest" |
| 5238 | "vhost"))))))) | 5193 | "vhost"))))))) |
| 5239 | (inputs `(("node-vary" ,node-vary-1.1.2) | 5194 | (inputs (list node-vary-1.1.2 |
| 5240 | ("node-utils-merge" ,node-utils-merge-1.0.1) | 5195 | node-utils-merge-1.0.1 |
| 5241 | ("node-type-is" ,node-type-is-1.6.18) | 5196 | node-type-is-1.6.18 |
| 5242 | ("node-statuses" ,node-statuses-2.0.1) | 5197 | node-statuses-2.0.1 |
| 5243 | ("node-setprototypeof" ,node-setprototypeof-1.2.0) | 5198 | node-setprototypeof-1.2.0 |
| 5244 | ("node-serve-static" ,node-serve-static-1.15.0) | 5199 | node-serve-static-1.15.0 |
| 5245 | ("node-send" ,node-send-0.18.0) | 5200 | node-send-0.18.0 |
| 5246 | ("node-safe-buffer" ,node-safe-buffer-5.2.1) | 5201 | node-safe-buffer-5.2.1 |
| 5247 | ("node-range-parser" ,node-range-parser-1.2.1) | 5202 | node-range-parser-1.2.1 |
| 5248 | ("node-qs" ,node-qs-6.11.0) | 5203 | node-qs-6.11.0 |
| 5249 | ("node-proxy-addr" ,node-proxy-addr-2.0.7) | 5204 | node-proxy-addr-2.0.7 |
| 5250 | ("node-path-to-regexp" ,node-path-to-regexp-0.1.7) | 5205 | node-path-to-regexp-0.1.7 |
| 5251 | ("node-parseurl" ,node-parseurl-1.3.3) | 5206 | node-parseurl-1.3.3 |
| 5252 | ("node-on-finished" ,node-on-finished-2.4.1) | 5207 | node-on-finished-2.4.1 |
| 5253 | ("node-methods" ,node-methods-1.1.2) | 5208 | node-methods-1.1.2 |
| 5254 | ("node-merge-descriptors" ,node-merge-descriptors-1.0.1) | 5209 | node-merge-descriptors-1.0.1 |
| 5255 | ("node-http-errors" ,node-http-errors-2.0.0) | 5210 | node-http-errors-2.0.0 |
| 5256 | ("node-fresh" ,node-fresh-0.5.2) | 5211 | node-fresh-0.5.2 |
| 5257 | ("node-finalhandler" ,node-finalhandler-1.2.0) | 5212 | node-finalhandler-1.2.0 |
| 5258 | ("node-etag" ,node-etag-1.8.1) | 5213 | node-etag-1.8.1 |
| 5259 | ("node-escape-html" ,node-escape-html-1.0.3) | 5214 | node-escape-html-1.0.3 |
| 5260 | ("node-encodeurl" ,node-encodeurl-1.0.2) | 5215 | node-encodeurl-1.0.2 |
| 5261 | ("node-depd" ,node-depd-2.0.0) | 5216 | node-depd-2.0.0 |
| 5262 | ("node-debug" ,node-debug-2.6.9) | 5217 | node-debug-2.6.9 |
| 5263 | ("node-cookie-signature" ,node-cookie-signature-1.0.6) | 5218 | node-cookie-signature-1.0.6 |
| 5264 | ("node-cookie" ,node-cookie-0.5.0) | 5219 | node-cookie-0.5.0 |
| 5265 | ("node-content-type" ,node-content-type-1.0.5) | 5220 | node-content-type-1.0.5 |
| 5266 | ("node-content-disposition" ,node-content-disposition-0.5.4) | 5221 | node-content-disposition-0.5.4 |
| 5267 | ("node-body-parser" ,node-body-parser-1.20.1) | 5222 | node-body-parser-1.20.1 |
| 5268 | ("node-array-flatten" ,node-array-flatten-1.1.1) | 5223 | node-array-flatten-1.1.1 |
| 5269 | ("node-accepts" ,node-accepts-1.3.8))) | 5224 | node-accepts-1.3.8)) |
| 5270 | (home-page "http://expressjs.com/") | 5225 | (home-page "http://expressjs.com/") |
| 5271 | (synopsis "Fast, unopinionated, minimalist web framework") | 5226 | (synopsis "Fast, unopinionated, minimalist web framework") |
| 5272 | (description "Fast, unopinionated, minimalist web framework") | 5227 | (description "Fast, unopinionated, minimalist web framework") |
| @@ -5323,7 +5278,7 @@ | |||
| 5323 | "minimist" | 5278 | "minimist" |
| 5324 | "mocha" | 5279 | "mocha" |
| 5325 | "should"))))))) | 5280 | "should"))))))) |
| 5326 | (inputs `(("node-is-extendable" ,node-is-extendable-0.1.1))) | 5281 | (inputs (list node-is-extendable-0.1.1)) |
| 5327 | (home-page "https://github.com/jonschlinkert/extend-shallow") | 5282 | (home-page "https://github.com/jonschlinkert/extend-shallow") |
| 5328 | (synopsis | 5283 | (synopsis |
| 5329 | "Extend an object with the properties of additional objects. node.js/javascript util.") | 5284 | "Extend an object with the properties of additional objects. node.js/javascript util.") |
| @@ -5357,8 +5312,7 @@ | |||
| 5357 | "minimist" | 5312 | "minimist" |
| 5358 | "mocha" | 5313 | "mocha" |
| 5359 | "object-assign"))))))) | 5314 | "object-assign"))))))) |
| 5360 | (inputs `(("node-is-extendable" ,node-is-extendable-1.0.1) | 5315 | (inputs (list node-is-extendable-1.0.1 node-assign-symbols-1.0.0)) |
| 5361 | ("node-assign-symbols" ,node-assign-symbols-1.0.0))) | ||
| 5362 | (home-page "https://github.com/jonschlinkert/extend-shallow") | 5316 | (home-page "https://github.com/jonschlinkert/extend-shallow") |
| 5363 | (synopsis | 5317 | (synopsis |
| 5364 | "Extend an object with the properties of additional objects. node.js/javascript util.") | 5318 | "Extend an object with the properties of additional objects. node.js/javascript util.") |
| @@ -5386,9 +5340,7 @@ | |||
| 5386 | (lambda _ | 5340 | (lambda _ |
| 5387 | (delete-dependencies '("chai" "coffee-script" | 5341 | (delete-dependencies '("chai" "coffee-script" |
| 5388 | "coffeelint" "mocha"))))))) | 5342 | "coffeelint" "mocha"))))))) |
| 5389 | (inputs `(("node-tmp" ,node-tmp-0.0.33) | 5343 | (inputs (list node-tmp-0.0.33 node-iconv-lite-0.4.24 node-chardet-0.4.2)) |
| 5390 | ("node-iconv-lite" ,node-iconv-lite-0.4.24) | ||
| 5391 | ("node-chardet" ,node-chardet-0.4.2))) | ||
| 5392 | (home-page "https://github.com/mrkmg/node-external-editor#readme") | 5344 | (home-page "https://github.com/mrkmg/node-external-editor#readme") |
| 5393 | (synopsis | 5345 | (synopsis |
| 5394 | "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT") | 5346 | "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT") |
| @@ -5419,7 +5371,7 @@ | |||
| 5419 | "mocha" | 5371 | "mocha" |
| 5420 | "should" | 5372 | "should" |
| 5421 | "success-symbol"))))))) | 5373 | "success-symbol"))))))) |
| 5422 | (inputs `(("node-is-extglob" ,node-is-extglob-1.0.0))) | 5374 | (inputs (list node-is-extglob-1.0.0)) |
| 5423 | (home-page "https://github.com/jonschlinkert/extglob") | 5375 | (home-page "https://github.com/jonschlinkert/extglob") |
| 5424 | (synopsis | 5376 | (synopsis |
| 5425 | "Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.") | 5377 | "Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.") |
| @@ -5458,14 +5410,14 @@ | |||
| 5458 | "minimist" | 5410 | "minimist" |
| 5459 | "mocha" | 5411 | "mocha" |
| 5460 | "multimatch"))))))) | 5412 | "multimatch"))))))) |
| 5461 | (inputs `(("node-to-regex" ,node-to-regex-3.0.2) | 5413 | (inputs (list node-to-regex-3.0.2 |
| 5462 | ("node-snapdragon" ,node-snapdragon-0.8.2) | 5414 | node-snapdragon-0.8.2 |
| 5463 | ("node-regex-not" ,node-regex-not-1.0.2) | 5415 | node-regex-not-1.0.2 |
| 5464 | ("node-fragment-cache" ,node-fragment-cache-0.2.1) | 5416 | node-fragment-cache-0.2.1 |
| 5465 | ("node-extend-shallow" ,node-extend-shallow-2.0.1) | 5417 | node-extend-shallow-2.0.1 |
| 5466 | ("node-expand-brackets" ,node-expand-brackets-2.1.4) | 5418 | node-expand-brackets-2.1.4 |
| 5467 | ("node-define-property" ,node-define-property-1.0.0) | 5419 | node-define-property-1.0.0 |
| 5468 | ("node-array-unique" ,node-array-unique-0.3.2))) | 5420 | node-array-unique-0.3.2)) |
| 5469 | (home-page "https://github.com/micromatch/extglob") | 5421 | (home-page "https://github.com/micromatch/extglob") |
| 5470 | (synopsis | 5422 | (synopsis |
| 5471 | "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.") | 5423 | "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.") |
| @@ -5654,7 +5606,7 @@ | |||
| 5654 | (lambda _ | 5606 | (lambda _ |
| 5655 | (delete-dependencies '("ava" "markdown-table" | 5607 | (delete-dependencies '("ava" "markdown-table" |
| 5656 | "require-uncached" "xo"))))))) | 5608 | "require-uncached" "xo"))))))) |
| 5657 | (inputs `(("node-escape-string-regexp" ,node-escape-string-regexp-1.0.5))) | 5609 | (inputs (list node-escape-string-regexp-1.0.5)) |
| 5658 | (home-page "https://github.com/sindresorhus/figures#readme") | 5610 | (home-page "https://github.com/sindresorhus/figures#readme") |
| 5659 | (synopsis "Unicode symbols with Windows CMD fallbacks") | 5611 | (synopsis "Unicode symbols with Windows CMD fallbacks") |
| 5660 | (description "Unicode symbols with Windows CMD fallbacks") | 5612 | (description "Unicode symbols with Windows CMD fallbacks") |
| @@ -5680,7 +5632,7 @@ | |||
| 5680 | (lambda _ | 5632 | (lambda _ |
| 5681 | (delete-dependencies '("grunt" "grunt-contrib-jshint" | 5633 | (delete-dependencies '("grunt" "grunt-contrib-jshint" |
| 5682 | "mocha"))))))) | 5634 | "mocha"))))))) |
| 5683 | (inputs `(("node-utils-extend" ,node-utils-extend-1.0.8))) | 5635 | (inputs (list node-utils-extend-1.0.8)) |
| 5684 | (home-page "https://github.com/douzi8/file-match") | 5636 | (home-page "https://github.com/douzi8/file-match") |
| 5685 | (synopsis | 5637 | (synopsis |
| 5686 | "Match filepath is validated, or exclude filepath that don't need.") | 5638 | "Match filepath is validated, or exclude filepath that don't need.") |
| @@ -5708,8 +5660,7 @@ | |||
| 5708 | (lambda _ | 5660 | (lambda _ |
| 5709 | (delete-dependencies '("grunt" "grunt-contrib-jshint" | 5661 | (delete-dependencies '("grunt" "grunt-contrib-jshint" |
| 5710 | "mocha"))))))) | 5662 | "mocha"))))))) |
| 5711 | (inputs `(("node-utils-extend" ,node-utils-extend-1.0.8) | 5663 | (inputs (list node-utils-extend-1.0.8 node-file-match-1.0.2)) |
| 5712 | ("node-file-match" ,node-file-match-1.0.2))) | ||
| 5713 | (home-page "https://github.com/douzi8/file-system") | 5664 | (home-page "https://github.com/douzi8/file-system") |
| 5714 | (synopsis "Strengthen the ability of file system") | 5665 | (synopsis "Strengthen the ability of file system") |
| 5715 | (description "Strengthen the ability of file system") | 5666 | (description "Strengthen the ability of file system") |
| @@ -5761,11 +5712,9 @@ | |||
| 5761 | (lambda _ | 5712 | (lambda _ |
| 5762 | (delete-dependencies '("benchmarked" "chalk" | 5713 | (delete-dependencies '("benchmarked" "chalk" |
| 5763 | "gulp-format-md" "should"))))))) | 5714 | "gulp-format-md" "should"))))))) |
| 5764 | (inputs `(("node-repeat-string" ,node-repeat-string-1.6.1) | 5715 | (inputs (list node-repeat-string-1.6.1 node-repeat-element-1.1.4 |
| 5765 | ("node-repeat-element" ,node-repeat-element-1.1.4) | 5716 | node-randomatic-3.1.1 node-isobject-2.1.0 |
| 5766 | ("node-randomatic" ,node-randomatic-3.1.1) | 5717 | node-is-number-2.1.0)) |
| 5767 | ("node-isobject" ,node-isobject-2.1.0) | ||
| 5768 | ("node-is-number" ,node-is-number-2.1.0))) | ||
| 5769 | (home-page "https://github.com/jonschlinkert/fill-range") | 5718 | (home-page "https://github.com/jonschlinkert/fill-range") |
| 5770 | (synopsis | 5719 | (synopsis |
| 5771 | "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.") | 5720 | "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.") |
| @@ -5794,10 +5743,8 @@ | |||
| 5794 | (delete-dependencies '("ansi-cyan" "benchmarked" | 5743 | (delete-dependencies '("ansi-cyan" "benchmarked" |
| 5795 | "gulp-format-md" "minimist" | 5744 | "gulp-format-md" "minimist" |
| 5796 | "mocha"))))))) | 5745 | "mocha"))))))) |
| 5797 | (inputs `(("node-to-regex-range" ,node-to-regex-range-2.1.1) | 5746 | (inputs (list node-to-regex-range-2.1.1 node-repeat-string-1.6.1 |
| 5798 | ("node-repeat-string" ,node-repeat-string-1.6.1) | 5747 | node-is-number-3.0.0 node-extend-shallow-2.0.1)) |
| 5799 | ("node-is-number" ,node-is-number-3.0.0) | ||
| 5800 | ("node-extend-shallow" ,node-extend-shallow-2.0.1))) | ||
| 5801 | (home-page "https://github.com/jonschlinkert/fill-range") | 5748 | (home-page "https://github.com/jonschlinkert/fill-range") |
| 5802 | (synopsis | 5749 | (synopsis |
| 5803 | "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`") | 5750 | "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`") |
| @@ -5834,13 +5781,13 @@ | |||
| 5834 | "readable-stream" | 5781 | "readable-stream" |
| 5835 | "safe-buffer" | 5782 | "safe-buffer" |
| 5836 | "supertest"))))))) | 5783 | "supertest"))))))) |
| 5837 | (inputs `(("node-unpipe" ,node-unpipe-1.0.0) | 5784 | (inputs (list node-unpipe-1.0.0 |
| 5838 | ("node-statuses" ,node-statuses-2.0.1) | 5785 | node-statuses-2.0.1 |
| 5839 | ("node-parseurl" ,node-parseurl-1.3.3) | 5786 | node-parseurl-1.3.3 |
| 5840 | ("node-on-finished" ,node-on-finished-2.4.1) | 5787 | node-on-finished-2.4.1 |
| 5841 | ("node-escape-html" ,node-escape-html-1.0.3) | 5788 | node-escape-html-1.0.3 |
| 5842 | ("node-encodeurl" ,node-encodeurl-1.0.2) | 5789 | node-encodeurl-1.0.2 |
| 5843 | ("node-debug" ,node-debug-2.6.9))) | 5790 | node-debug-2.6.9)) |
| 5844 | (home-page "https://github.com/pillarjs/finalhandler#readme") | 5791 | (home-page "https://github.com/pillarjs/finalhandler#readme") |
| 5845 | (synopsis "Node.js final http responder") | 5792 | (synopsis "Node.js final http responder") |
| 5846 | (description "Node.js final http responder") | 5793 | (description "Node.js final http responder") |
| @@ -5886,7 +5833,7 @@ | |||
| 5886 | '(#:tests? #f | 5833 | '(#:tests? #f |
| 5887 | #:phases (modify-phases %standard-phases | 5834 | #:phases (modify-phases %standard-phases |
| 5888 | (delete 'build)))) | 5835 | (delete 'build)))) |
| 5889 | (inputs `(("node-chain-able" ,node-chain-able-1.0.1))) | 5836 | (inputs (list node-chain-able-1.0.1)) |
| 5890 | (home-page "https://github.com/fliphub/fliplog") | 5837 | (home-page "https://github.com/fliphub/fliplog") |
| 5891 | (synopsis | 5838 | (synopsis |
| 5892 | "fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, clearing, & presets") | 5839 | "fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, clearing, & presets") |
| @@ -5937,7 +5884,7 @@ | |||
| 5937 | (add-after 'patch-dependencies 'delete-dev-dependencies | 5884 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 5938 | (lambda _ | 5885 | (lambda _ |
| 5939 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 5886 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 5940 | (inputs `(("node-for-in" ,node-for-in-1.0.2))) | 5887 | (inputs (list node-for-in-1.0.2)) |
| 5941 | (home-page "https://github.com/jonschlinkert/for-own") | 5888 | (home-page "https://github.com/jonschlinkert/for-own") |
| 5942 | (synopsis | 5889 | (synopsis |
| 5943 | "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.") | 5890 | "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.") |
| @@ -6004,9 +5951,8 @@ | |||
| 6004 | "request" | 5951 | "request" |
| 6005 | "rimraf" | 5952 | "rimraf" |
| 6006 | "tape"))))))) | 5953 | "tape"))))))) |
| 6007 | (inputs `(("node-mime-types" ,node-mime-types-2.1.35) | 5954 | (inputs (list node-mime-types-2.1.35 node-combined-stream-1.0.8 |
| 6008 | ("node-combined-stream" ,node-combined-stream-1.0.8) | 5955 | node-asynckit-0.4.0)) |
| 6009 | ("node-asynckit" ,node-asynckit-0.4.0))) | ||
| 6010 | (home-page "https://github.com/form-data/form-data#readme") | 5956 | (home-page "https://github.com/form-data/form-data#readme") |
| 6011 | (synopsis | 5957 | (synopsis |
| 6012 | "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.") | 5958 | "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.") |
| @@ -6068,7 +6014,7 @@ | |||
| 6068 | (delete-dependencies '("gulp" "gulp-eslint" | 6014 | (delete-dependencies '("gulp" "gulp-eslint" |
| 6069 | "gulp-format-md" "gulp-istanbul" | 6015 | "gulp-format-md" "gulp-istanbul" |
| 6070 | "gulp-mocha" "mocha"))))))) | 6016 | "gulp-mocha" "mocha"))))))) |
| 6071 | (inputs `(("node-map-cache" ,node-map-cache-0.2.2))) | 6017 | (inputs (list node-map-cache-0.2.2)) |
| 6072 | (home-page "https://github.com/jonschlinkert/fragment-cache") | 6018 | (home-page "https://github.com/jonschlinkert/fragment-cache") |
| 6073 | (synopsis "A cache for managing namespaced sub-caches") | 6019 | (synopsis "A cache for managing namespaced sub-caches") |
| 6074 | (description "A cache for managing namespaced sub-caches") | 6020 | (description "A cache for managing namespaced sub-caches") |
| @@ -6135,9 +6081,8 @@ | |||
| 6135 | "semver" | 6081 | "semver" |
| 6136 | "standard" | 6082 | "standard" |
| 6137 | "standard-markdown"))))))) | 6083 | "standard-markdown"))))))) |
| 6138 | (inputs `(("node-universalify" ,node-universalify-0.1.2) | 6084 | (inputs (list node-universalify-0.1.2 node-jsonfile-4.0.0 |
| 6139 | ("node-jsonfile" ,node-jsonfile-4.0.0) | 6085 | node-graceful-fs-4.2.11)) |
| 6140 | ("node-graceful-fs" ,node-graceful-fs-4.2.11))) | ||
| 6141 | (home-page "https://github.com/jprichardson/node-fs-extra") | 6086 | (home-page "https://github.com/jprichardson/node-fs-extra") |
| 6142 | (synopsis | 6087 | (synopsis |
| 6143 | "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.") | 6088 | "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.") |
| @@ -6164,7 +6109,7 @@ | |||
| 6164 | (add-after 'patch-dependencies 'delete-dev-dependencies | 6109 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 6165 | (lambda _ | 6110 | (lambda _ |
| 6166 | (delete-dependencies '("mutate-fs" "tap"))))))) | 6111 | (delete-dependencies '("mutate-fs" "tap"))))))) |
| 6167 | (inputs `(("node-minipass" ,node-minipass-3.3.6))) | 6112 | (inputs (list node-minipass-3.3.6)) |
| 6168 | (home-page "https://github.com/npm/fs-minipass#readme") | 6113 | (home-page "https://github.com/npm/fs-minipass#readme") |
| 6169 | (synopsis "fs read and write streams based on minipass") | 6114 | (synopsis "fs read and write streams based on minipass") |
| 6170 | (description "fs read and write streams based on minipass") | 6115 | (description "fs read and write streams based on minipass") |
| @@ -6297,39 +6242,39 @@ | |||
| 6297 | "vue-template-compiler" | 6242 | "vue-template-compiler" |
| 6298 | "vue-template-es2015-compiler" | 6243 | "vue-template-es2015-compiler" |
| 6299 | "wires-reactive"))))))) | 6244 | "wires-reactive"))))))) |
| 6300 | (inputs `(("node-ws" ,node-ws-1.1.5) | 6245 | (inputs (list node-ws-1.1.5 |
| 6301 | ("node-watch" ,node-watch-1.0.2) | 6246 | node-watch-1.0.2 |
| 6302 | ("node-tslib" ,node-tslib-1.14.1) | 6247 | node-tslib-1.14.1 |
| 6303 | ("node-sourcemap-blender" ,node-sourcemap-blender-1.0.5) | 6248 | node-sourcemap-blender-1.0.5 |
| 6304 | ("node-stream-browserify" ,node-stream-browserify-2.0.2) | 6249 | node-stream-browserify-2.0.2 |
| 6305 | ("node-source-map" ,node-source-map-0.7.4) | 6250 | node-source-map-0.7.4 |
| 6306 | ("node-shorthash" ,node-shorthash-0.0.2) | 6251 | node-shorthash-0.0.2 |
| 6307 | ("node-request" ,node-request-2.88.2) | 6252 | node-request-2.88.2 |
| 6308 | ("node-regexpu-core" ,node-regexpu-core-4.8.0) | 6253 | node-regexpu-core-4.8.0 |
| 6309 | ("node-realm-utils" ,node-realm-utils-1.0.9) | 6254 | node-realm-utils-1.0.9 |
| 6310 | ("node-prettysize" ,node-prettysize-0.0.3) | 6255 | node-prettysize-0.0.3 |
| 6311 | ("node-pretty-time" ,node-pretty-time-0.2.0) | 6256 | node-pretty-time-0.2.0 |
| 6312 | ("node-postcss" ,node-postcss-6.0.23) | 6257 | node-postcss-6.0.23 |
| 6313 | ("node-mustache" ,node-mustache-2.3.2) | 6258 | node-mustache-2.3.2 |
| 6314 | ("node-lego-api" ,node-lego-api-1.0.8) | 6259 | node-lego-api-1.0.8 |
| 6315 | ("node-inquirer" ,node-inquirer-3.3.0) | 6260 | node-inquirer-3.3.0 |
| 6316 | ("node-ieee754" ,node-ieee754-1.2.1) | 6261 | node-ieee754-1.2.1 |
| 6317 | ("node-glob" ,node-glob-7.2.3) | 6262 | node-glob-7.2.3 |
| 6318 | ("node-getopts" ,node-getopts-2.3.0) | 6263 | node-getopts-2.3.0 |
| 6319 | ("node-fuse-concat-with-sourcemaps" ,node-fuse-concat-with-sourcemaps-1.0.5) | 6264 | node-fuse-concat-with-sourcemaps-1.0.5 |
| 6320 | ("node-fs-extra" ,node-fs-extra-7.0.1) | 6265 | node-fs-extra-7.0.1 |
| 6321 | ("node-fliplog" ,node-fliplog-0.3.13) | 6266 | node-fliplog-0.3.13 |
| 6322 | ("node-express" ,node-express-4.18.2) | 6267 | node-express-4.18.2 |
| 6323 | ("node-escodegen" ,node-escodegen-1.14.3) | 6268 | node-escodegen-1.14.3 |
| 6324 | ("node-clean-css" ,node-clean-css-4.2.4) | 6269 | node-clean-css-4.2.4 |
| 6325 | ("node-chokidar" ,node-chokidar-1.7.0) | 6270 | node-chokidar-1.7.0 |
| 6326 | ("node-bowser" ,node-bowser-2.11.0) | 6271 | node-bowser-2.11.0 |
| 6327 | ("node-base64-js" ,node-base64-js-1.5.1) | 6272 | node-base64-js-1.5.1 |
| 6328 | ("node-base64-img" ,node-base64-img-1.0.4) | 6273 | node-base64-img-1.0.4 |
| 6329 | ("node-app-root-path" ,node-app-root-path-2.2.1) | 6274 | node-app-root-path-2.2.1 |
| 6330 | ("node-ansi" ,node-ansi-0.3.1) | 6275 | node-ansi-0.3.1 |
| 6331 | ("node-acorn-jsx" ,node-acorn-jsx-4.1.1) | 6276 | node-acorn-jsx-4.1.1 |
| 6332 | ("node-acorn" ,node-acorn-5.7.4))) | 6277 | node-acorn-5.7.4)) |
| 6333 | (home-page "https://github.com/fuse-box/fuse-box#readme") | 6278 | (home-page "https://github.com/fuse-box/fuse-box#readme") |
| 6334 | (synopsis "Fuse-Box a bundler that does it right") | 6279 | (synopsis "Fuse-Box a bundler that does it right") |
| 6335 | (description "Fuse-Box a bundler that does it right") | 6280 | (description "Fuse-Box a bundler that does it right") |
| @@ -6355,7 +6300,7 @@ | |||
| 6355 | (lambda _ | 6300 | (lambda _ |
| 6356 | (delete-dependencies '("jshint" "tape" "istanbul" | 6301 | (delete-dependencies '("jshint" "tape" "istanbul" |
| 6357 | "faucet" "coveralls"))))))) | 6302 | "faucet" "coveralls"))))))) |
| 6358 | (inputs `(("node-source-map" ,node-source-map-0.6.1))) | 6303 | (inputs (list node-source-map-0.6.1)) |
| 6359 | (home-page "http://github.com/floridoo/concat-with-sourcemaps") | 6304 | (home-page "http://github.com/floridoo/concat-with-sourcemaps") |
| 6360 | (synopsis | 6305 | (synopsis |
| 6361 | "Concatenate file contents with a custom separator and generate a source map") | 6306 | "Concatenate file contents with a custom separator and generate a source map") |
| @@ -6443,15 +6388,15 @@ | |||
| 6443 | (delete-dependencies '("readable-stream" | 6388 | (delete-dependencies '("readable-stream" |
| 6444 | "require-inject" "standard" "tap" | 6389 | "require-inject" "standard" "tap" |
| 6445 | "through2"))))))) | 6390 | "through2"))))))) |
| 6446 | (inputs `(("node-wide-align" ,node-wide-align-1.1.5) | 6391 | (inputs (list node-wide-align-1.1.5 |
| 6447 | ("node-strip-ansi" ,node-strip-ansi-6.0.1) | 6392 | node-strip-ansi-6.0.1 |
| 6448 | ("node-string-width" ,node-string-width-4.2.3) | 6393 | node-string-width-4.2.3 |
| 6449 | ("node-signal-exit" ,node-signal-exit-3.0.7) | 6394 | node-signal-exit-3.0.7 |
| 6450 | ("node-object-assign" ,node-object-assign-4.1.1) | 6395 | node-object-assign-4.1.1 |
| 6451 | ("node-has-unicode" ,node-has-unicode-2.0.1) | 6396 | node-has-unicode-2.0.1 |
| 6452 | ("node-console-control-strings" ,node-console-control-strings-1.1.0) | 6397 | node-console-control-strings-1.1.0 |
| 6453 | ("node-color-support" ,node-color-support-1.1.3) | 6398 | node-color-support-1.1.3 |
| 6454 | ("node-aproba" ,node-aproba-2.0.0))) | 6399 | node-aproba-2.0.0)) |
| 6455 | (home-page "https://github.com/npm/gauge") | 6400 | (home-page "https://github.com/npm/gauge") |
| 6456 | (synopsis "A terminal based horizontal guage") | 6401 | (synopsis "A terminal based horizontal guage") |
| 6457 | (description "A terminal based horizontal guage") | 6402 | (description "A terminal based horizontal guage") |
| @@ -6555,10 +6500,8 @@ | |||
| 6555 | "object-inspect" | 6500 | "object-inspect" |
| 6556 | "safe-publish-latest" | 6501 | "safe-publish-latest" |
| 6557 | "tape"))))))) | 6502 | "tape"))))))) |
| 6558 | (inputs `(("node-has-symbols" ,node-has-symbols-1.0.3) | 6503 | (inputs (list node-has-symbols-1.0.3 node-has-proto-1.0.1 node-has-1.0.3 |
| 6559 | ("node-has-proto" ,node-has-proto-1.0.1) | 6504 | node-function-bind-1.1.1)) |
| 6560 | ("node-has" ,node-has-1.0.3) | ||
| 6561 | ("node-function-bind" ,node-function-bind-1.1.1))) | ||
| 6562 | (home-page "https://github.com/ljharb/get-intrinsic#readme") | 6505 | (home-page "https://github.com/ljharb/get-intrinsic#readme") |
| 6563 | (synopsis | 6506 | (synopsis |
| 6564 | "Get and robustly cache all JS language-level intrinsics at first require time") | 6507 | "Get and robustly cache all JS language-level intrinsics at first require time") |
| @@ -6670,7 +6613,7 @@ | |||
| 6670 | '(#:tests? #f | 6613 | '(#:tests? #f |
| 6671 | #:phases (modify-phases %standard-phases | 6614 | #:phases (modify-phases %standard-phases |
| 6672 | (delete 'build)))) | 6615 | (delete 'build)))) |
| 6673 | (inputs `(("node-assert-plus" ,node-assert-plus-1.0.0))) | 6616 | (inputs (list node-assert-plus-1.0.0)) |
| 6674 | (home-page "https://github.com/arekinath/node-getpass#readme") | 6617 | (home-page "https://github.com/arekinath/node-getpass#readme") |
| 6675 | (synopsis "getpass for node.js") | 6618 | (synopsis "getpass for node.js") |
| 6676 | (description "getpass for node.js") | 6619 | (description "getpass for node.js") |
| @@ -6695,12 +6638,12 @@ | |||
| 6695 | (lambda _ | 6638 | (lambda _ |
| 6696 | (delete-dependencies '("memfs" "mkdirp" "rimraf" "tap" | 6639 | (delete-dependencies '("memfs" "mkdirp" "rimraf" "tap" |
| 6697 | "tick"))))))) | 6640 | "tick"))))))) |
| 6698 | (inputs `(("node-path-is-absolute" ,node-path-is-absolute-1.0.1) | 6641 | (inputs (list node-path-is-absolute-1.0.1 |
| 6699 | ("node-once" ,node-once-1.4.0) | 6642 | node-once-1.4.0 |
| 6700 | ("node-minimatch" ,node-minimatch-3.1.2) | 6643 | node-minimatch-3.1.2 |
| 6701 | ("node-inherits" ,node-inherits-2.0.4) | 6644 | node-inherits-2.0.4 |
| 6702 | ("node-inflight" ,node-inflight-1.0.6) | 6645 | node-inflight-1.0.6 |
| 6703 | ("node-fs-realpath" ,node-fs-realpath-1.0.0))) | 6646 | node-fs-realpath-1.0.0)) |
| 6704 | (home-page "https://github.com/isaacs/node-glob#readme") | 6647 | (home-page "https://github.com/isaacs/node-glob#readme") |
| 6705 | (synopsis "a little globber") | 6648 | (synopsis "a little globber") |
| 6706 | (description "a little globber") | 6649 | (description "a little globber") |
| @@ -6725,8 +6668,7 @@ | |||
| 6725 | (add-after 'patch-dependencies 'delete-dev-dependencies | 6668 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 6726 | (lambda _ | 6669 | (lambda _ |
| 6727 | (delete-dependencies '("mocha" "should"))))))) | 6670 | (delete-dependencies '("mocha" "should"))))))) |
| 6728 | (inputs `(("node-is-glob" ,node-is-glob-2.0.1) | 6671 | (inputs (list node-is-glob-2.0.1 node-glob-parent-2.0.0)) |
| 6729 | ("node-glob-parent" ,node-glob-parent-2.0.0))) | ||
| 6730 | (home-page "https://github.com/jonschlinkert/glob-base") | 6672 | (home-page "https://github.com/jonschlinkert/glob-base") |
| 6731 | (synopsis | 6673 | (synopsis |
| 6732 | "Returns an object with the (non-glob) base path and the actual pattern.") | 6674 | "Returns an object with the (non-glob) base path and the actual pattern.") |
| @@ -6753,7 +6695,7 @@ | |||
| 6753 | (add-after 'patch-dependencies 'delete-dev-dependencies | 6695 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 6754 | (lambda _ | 6696 | (lambda _ |
| 6755 | (delete-dependencies '("coveralls" "istanbul" "mocha"))))))) | 6697 | (delete-dependencies '("coveralls" "istanbul" "mocha"))))))) |
| 6756 | (inputs `(("node-is-glob" ,node-is-glob-2.0.1))) | 6698 | (inputs (list node-is-glob-2.0.1)) |
| 6757 | (home-page "https://github.com/es128/glob-parent") | 6699 | (home-page "https://github.com/es128/glob-parent") |
| 6758 | (synopsis "Strips glob magic from a string to provide the parent path") | 6700 | (synopsis "Strips glob magic from a string to provide the parent path") |
| 6759 | (description "Strips glob magic from a string to provide the parent path") | 6701 | (description "Strips glob magic from a string to provide the parent path") |
| @@ -6790,7 +6732,7 @@ | |||
| 6790 | "simulant" | 6732 | "simulant" |
| 6791 | "sinon" | 6733 | "sinon" |
| 6792 | "watchify"))))))) | 6734 | "watchify"))))))) |
| 6793 | (inputs `(("node-delegate" ,node-delegate-3.2.0))) | 6735 | (inputs (list node-delegate-3.2.0)) |
| 6794 | (home-page "https://github.com/zenorocha/good-listener#readme") | 6736 | (home-page "https://github.com/zenorocha/good-listener#readme") |
| 6795 | (synopsis "A more versatile way of adding & removing event listeners") | 6737 | (synopsis "A more versatile way of adding & removing event listeners") |
| 6796 | (description "A more versatile way of adding & removing event listeners") | 6738 | (description "A more versatile way of adding & removing event listeners") |
| @@ -6869,8 +6811,7 @@ | |||
| 6869 | (add-after 'patch-dependencies 'delete-dev-dependencies | 6811 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 6870 | (lambda _ | 6812 | (lambda _ |
| 6871 | (delete-dependencies '("tap"))))))) | 6813 | (delete-dependencies '("tap"))))))) |
| 6872 | (inputs `(("node-har-schema" ,node-har-schema-2.0.0) | 6814 | (inputs (list node-har-schema-2.0.0 node-ajv-6.12.6)) |
| 6873 | ("node-ajv" ,node-ajv-6.12.6))) | ||
| 6874 | (home-page "https://github.com/ahmadnassri/node-har-validator") | 6815 | (home-page "https://github.com/ahmadnassri/node-har-validator") |
| 6875 | (synopsis "Extremely fast HTTP Archive (HAR) validator using JSON Schema") | 6816 | (synopsis "Extremely fast HTTP Archive (HAR) validator using JSON Schema") |
| 6876 | (description | 6817 | (description |
| @@ -6896,7 +6837,7 @@ | |||
| 6896 | (lambda _ | 6837 | (lambda _ |
| 6897 | (delete-dependencies '("@ljharb/eslint-config" "eslint" | 6838 | (delete-dependencies '("@ljharb/eslint-config" "eslint" |
| 6898 | "tape"))))))) | 6839 | "tape"))))))) |
| 6899 | (inputs `(("node-function-bind" ,node-function-bind-1.1.1))) | 6840 | (inputs (list node-function-bind-1.1.1)) |
| 6900 | (home-page "https://github.com/tarruda/has") | 6841 | (home-page "https://github.com/tarruda/has") |
| 6901 | (synopsis "Object.prototype.hasOwnProperty.call shortcut") | 6842 | (synopsis "Object.prototype.hasOwnProperty.call shortcut") |
| 6902 | (description "Object.prototype.hasOwnProperty.call shortcut") | 6843 | (description "Object.prototype.hasOwnProperty.call shortcut") |
| @@ -7033,9 +6974,8 @@ | |||
| 7033 | (add-after 'patch-dependencies 'delete-dev-dependencies | 6974 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7034 | (lambda _ | 6975 | (lambda _ |
| 7035 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 6976 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 7036 | (inputs `(("node-isobject" ,node-isobject-2.1.0) | 6977 | (inputs (list node-isobject-2.1.0 node-has-values-0.1.4 |
| 7037 | ("node-has-values" ,node-has-values-0.1.4) | 6978 | node-get-value-2.0.6)) |
| 7038 | ("node-get-value" ,node-get-value-2.0.6))) | ||
| 7039 | (home-page "https://github.com/jonschlinkert/has-value") | 6979 | (home-page "https://github.com/jonschlinkert/has-value") |
| 7040 | (synopsis | 6980 | (synopsis |
| 7041 | "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.") | 6981 | "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.") |
| @@ -7062,9 +7002,8 @@ | |||
| 7062 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7002 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7063 | (lambda _ | 7003 | (lambda _ |
| 7064 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 7004 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 7065 | (inputs `(("node-isobject" ,node-isobject-3.0.1) | 7005 | (inputs (list node-isobject-3.0.1 node-has-values-1.0.0 |
| 7066 | ("node-has-values" ,node-has-values-1.0.0) | 7006 | node-get-value-2.0.6)) |
| 7067 | ("node-get-value" ,node-get-value-2.0.6))) | ||
| 7068 | (home-page "https://github.com/jonschlinkert/has-value") | 7007 | (home-page "https://github.com/jonschlinkert/has-value") |
| 7069 | (synopsis | 7008 | (synopsis |
| 7070 | "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.") | 7009 | "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.") |
| @@ -7117,8 +7056,7 @@ | |||
| 7117 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7056 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7118 | (lambda _ | 7057 | (lambda _ |
| 7119 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 7058 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 7120 | (inputs `(("node-kind-of" ,node-kind-of-4.0.0) | 7059 | (inputs (list node-kind-of-4.0.0 node-is-number-3.0.0)) |
| 7121 | ("node-is-number" ,node-is-number-3.0.0))) | ||
| 7122 | (home-page "https://github.com/jonschlinkert/has-values") | 7060 | (home-page "https://github.com/jonschlinkert/has-values") |
| 7123 | (synopsis | 7061 | (synopsis |
| 7124 | "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ") | 7062 | "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ") |
| @@ -7164,7 +7102,7 @@ | |||
| 7164 | "rollup-plugin-commonjs" | 7102 | "rollup-plugin-commonjs" |
| 7165 | "rollup-plugin-node-resolve" | 7103 | "rollup-plugin-node-resolve" |
| 7166 | "rollup-plugin-terser"))))))) | 7104 | "rollup-plugin-terser"))))))) |
| 7167 | (inputs `(("node-react-is" ,node-react-is-16.13.1))) | 7105 | (inputs (list node-react-is-16.13.1)) |
| 7168 | (home-page "https://github.com/mridgway/hoist-non-react-statics#readme") | 7106 | (home-page "https://github.com/mridgway/hoist-non-react-statics#readme") |
| 7169 | (synopsis | 7107 | (synopsis |
| 7170 | "Copies non-react specific statics from a child component to a parent component") | 7108 | "Copies non-react specific statics from a child component to a parent component") |
| @@ -7187,7 +7125,7 @@ | |||
| 7187 | '(#:tests? #f | 7125 | '(#:tests? #f |
| 7188 | #:phases (modify-phases %standard-phases | 7126 | #:phases (modify-phases %standard-phases |
| 7189 | (delete 'build)))) | 7127 | (delete 'build)))) |
| 7190 | (inputs `(("node-concat-stream" ,node-concat-stream-1.6.2))) | 7128 | (inputs (list node-concat-stream-1.6.2)) |
| 7191 | (home-page "https://github.com/maxogden/commonjs-html-prettyprinter") | 7129 | (home-page "https://github.com/maxogden/commonjs-html-prettyprinter") |
| 7192 | (synopsis "HTML pretty printer CLI utility (based on jsbeautifier)") | 7130 | (synopsis "HTML pretty printer CLI utility (based on jsbeautifier)") |
| 7193 | (description "HTML pretty printer CLI utility (based on jsbeautifier)") | 7131 | (description "HTML pretty printer CLI utility (based on jsbeautifier)") |
| @@ -7219,11 +7157,9 @@ | |||
| 7219 | "eslint-plugin-standard" | 7157 | "eslint-plugin-standard" |
| 7220 | "mocha" | 7158 | "mocha" |
| 7221 | "nyc"))))))) | 7159 | "nyc"))))))) |
| 7222 | (inputs `(("node-toidentifier" ,node-toidentifier-1.0.1) | 7160 | (inputs (list node-toidentifier-1.0.1 node-statuses-2.0.1 |
| 7223 | ("node-statuses" ,node-statuses-2.0.1) | 7161 | node-setprototypeof-1.2.0 node-inherits-2.0.4 |
| 7224 | ("node-setprototypeof" ,node-setprototypeof-1.2.0) | 7162 | node-depd-2.0.0)) |
| 7225 | ("node-inherits" ,node-inherits-2.0.4) | ||
| 7226 | ("node-depd" ,node-depd-2.0.0))) | ||
| 7227 | (home-page "https://github.com/jshttp/http-errors#readme") | 7163 | (home-page "https://github.com/jshttp/http-errors#readme") |
| 7228 | (synopsis "Create HTTP error objects") | 7164 | (synopsis "Create HTTP error objects") |
| 7229 | (description "Create HTTP error objects") | 7165 | (description "Create HTTP error objects") |
| @@ -7248,9 +7184,7 @@ | |||
| 7248 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7184 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7249 | (lambda _ | 7185 | (lambda _ |
| 7250 | (delete-dependencies '("tap" "uuid"))))))) | 7186 | (delete-dependencies '("tap" "uuid"))))))) |
| 7251 | (inputs `(("node-sshpk" ,node-sshpk-1.17.0) | 7187 | (inputs (list node-sshpk-1.17.0 node-jsprim-1.4.2 node-assert-plus-1.0.0)) |
| 7252 | ("node-jsprim" ,node-jsprim-1.4.2) | ||
| 7253 | ("node-assert-plus" ,node-assert-plus-1.0.0))) | ||
| 7254 | (home-page "https://github.com/joyent/node-http-signature/") | 7188 | (home-page "https://github.com/joyent/node-http-signature/") |
| 7255 | (synopsis "Reference implementation of Joyent's HTTP Signature scheme.") | 7189 | (synopsis "Reference implementation of Joyent's HTTP Signature scheme.") |
| 7256 | (description "Reference implementation of Joyent's HTTP Signature scheme.") | 7190 | (description "Reference implementation of Joyent's HTTP Signature scheme.") |
| @@ -7288,8 +7222,7 @@ | |||
| 7288 | "proxy" | 7222 | "proxy" |
| 7289 | "rimraf" | 7223 | "rimraf" |
| 7290 | "typescript"))))))) | 7224 | "typescript"))))))) |
| 7291 | (inputs `(("node-debug" ,node-debug-4.3.4) | 7225 | (inputs (list node-debug-4.3.4 node-agent-base-6.0.2)) |
| 7292 | ("node-agent-base" ,node-agent-base-6.0.2))) | ||
| 7293 | (home-page "https://github.com/TooTallNate/node-https-proxy-agent#readme") | 7226 | (home-page "https://github.com/TooTallNate/node-https-proxy-agent#readme") |
| 7294 | (synopsis "An HTTP(s) proxy `http.Agent` implementation for HTTPS") | 7227 | (synopsis "An HTTP(s) proxy `http.Agent` implementation for HTTPS") |
| 7295 | (description "An HTTP(s) proxy `http.Agent` implementation for HTTPS") | 7228 | (description "An HTTP(s) proxy `http.Agent` implementation for HTTPS") |
| @@ -7320,7 +7253,7 @@ | |||
| 7320 | "istanbul" | 7253 | "istanbul" |
| 7321 | "semver" | 7254 | "semver" |
| 7322 | "iconv"))))))) | 7255 | "iconv"))))))) |
| 7323 | (inputs `(("node-safer-buffer" ,node-safer-buffer-2.1.2))) | 7256 | (inputs (list node-safer-buffer-2.1.2)) |
| 7324 | (home-page "https://github.com/ashtuchkin/iconv-lite") | 7257 | (home-page "https://github.com/ashtuchkin/iconv-lite") |
| 7325 | (synopsis "Convert character encodings in pure javascript.") | 7258 | (synopsis "Convert character encodings in pure javascript.") |
| 7326 | (description "Convert character encodings in pure javascript.") | 7259 | (description "Convert character encodings in pure javascript.") |
| @@ -7351,7 +7284,7 @@ | |||
| 7351 | "request" | 7284 | "request" |
| 7352 | "semver" | 7285 | "semver" |
| 7353 | "unorm"))))))) | 7286 | "unorm"))))))) |
| 7354 | (inputs `(("node-safer-buffer" ,node-safer-buffer-2.1.2))) | 7287 | (inputs (list node-safer-buffer-2.1.2)) |
| 7355 | (home-page "https://github.com/ashtuchkin/iconv-lite") | 7288 | (home-page "https://github.com/ashtuchkin/iconv-lite") |
| 7356 | (synopsis "Convert character encodings in pure javascript.") | 7289 | (synopsis "Convert character encodings in pure javascript.") |
| 7357 | (description "Convert character encodings in pure javascript.") | 7290 | (description "Convert character encodings in pure javascript.") |
| @@ -7422,8 +7355,7 @@ | |||
| 7422 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7355 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7423 | (lambda _ | 7356 | (lambda _ |
| 7424 | (delete-dependencies '("ava" "heapdump" "tsd" "xo"))))))) | 7357 | (delete-dependencies '("ava" "heapdump" "tsd" "xo"))))))) |
| 7425 | (inputs `(("node-resolve-from" ,node-resolve-from-4.0.0) | 7358 | (inputs (list node-resolve-from-4.0.0 node-parent-module-1.0.1)) |
| 7426 | ("node-parent-module" ,node-parent-module-1.0.1))) | ||
| 7427 | (home-page "https://github.com/sindresorhus/import-fresh#readme") | 7359 | (home-page "https://github.com/sindresorhus/import-fresh#readme") |
| 7428 | (synopsis "Import a module while bypassing the cache") | 7360 | (synopsis "Import a module while bypassing the cache") |
| 7429 | (description "Import a module while bypassing the cache") | 7361 | (description "Import a module while bypassing the cache") |
| @@ -7447,8 +7379,7 @@ | |||
| 7447 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7379 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7448 | (lambda _ | 7380 | (lambda _ |
| 7449 | (delete-dependencies '("tap"))))))) | 7381 | (delete-dependencies '("tap"))))))) |
| 7450 | (inputs `(("node-wrappy" ,node-wrappy-1.0.2) | 7382 | (inputs (list node-wrappy-1.0.2 node-once-1.4.0)) |
| 7451 | ("node-once" ,node-once-1.4.0))) | ||
| 7452 | (home-page "https://github.com/isaacs/inflight") | 7383 | (home-page "https://github.com/isaacs/inflight") |
| 7453 | (synopsis "Add callbacks to requests in flight to avoid async duplication") | 7384 | (synopsis "Add callbacks to requests in flight to avoid async duplication") |
| 7454 | (description | 7385 | (description |
| @@ -7491,20 +7422,20 @@ | |||
| 7491 | "mocha" | 7422 | "mocha" |
| 7492 | "mockery" | 7423 | "mockery" |
| 7493 | "sinon"))))))) | 7424 | "sinon"))))))) |
| 7494 | (inputs `(("node-through" ,node-through-2.3.8) | 7425 | (inputs (list node-through-2.3.8 |
| 7495 | ("node-strip-ansi" ,node-strip-ansi-4.0.0) | 7426 | node-strip-ansi-4.0.0 |
| 7496 | ("node-string-width" ,node-string-width-2.1.1) | 7427 | node-string-width-2.1.1 |
| 7497 | ("node-rx-lite-aggregates" ,node-rx-lite-aggregates-4.0.8) | 7428 | node-rx-lite-aggregates-4.0.8 |
| 7498 | ("node-rx-lite" ,node-rx-lite-4.0.8) | 7429 | node-rx-lite-4.0.8 |
| 7499 | ("node-run-async" ,node-run-async-2.4.1) | 7430 | node-run-async-2.4.1 |
| 7500 | ("node-mute-stream" ,node-mute-stream-0.0.7) | 7431 | node-mute-stream-0.0.7 |
| 7501 | ("node-lodash" ,node-lodash-4.17.21) | 7432 | node-lodash-4.17.21 |
| 7502 | ("node-figures" ,node-figures-2.0.0) | 7433 | node-figures-2.0.0 |
| 7503 | ("node-external-editor" ,node-external-editor-2.2.0) | 7434 | node-external-editor-2.2.0 |
| 7504 | ("node-cli-width" ,node-cli-width-2.2.1) | 7435 | node-cli-width-2.2.1 |
| 7505 | ("node-cli-cursor" ,node-cli-cursor-2.1.0) | 7436 | node-cli-cursor-2.1.0 |
| 7506 | ("node-chalk" ,node-chalk-2.4.2) | 7437 | node-chalk-2.4.2 |
| 7507 | ("node-ansi-escapes" ,node-ansi-escapes-3.2.0))) | 7438 | node-ansi-escapes-3.2.0)) |
| 7508 | (home-page "https://github.com/SBoudrias/Inquirer.js#readme") | 7439 | (home-page "https://github.com/SBoudrias/Inquirer.js#readme") |
| 7509 | (synopsis | 7440 | (synopsis |
| 7510 | "A collection of common interactive command line user interfaces.") | 7441 | "A collection of common interactive command line user interfaces.") |
| @@ -7528,7 +7459,7 @@ | |||
| 7528 | '(#:tests? #f | 7459 | '(#:tests? #f |
| 7529 | #:phases (modify-phases %standard-phases | 7460 | #:phases (modify-phases %standard-phases |
| 7530 | (delete 'build)))) | 7461 | (delete 'build)))) |
| 7531 | (inputs `(("node-javascript-stringify" ,node-javascript-stringify-1.6.0))) | 7462 | (inputs (list node-javascript-stringify-1.6.0)) |
| 7532 | (home-page "https://github.com/fliphub/fliphub#readme") | 7463 | (home-page "https://github.com/fliphub/fliphub#readme") |
| 7533 | (synopsis | 7464 | (synopsis |
| 7534 | "preconfigured nodejs util for inspecting, and customizing inspecting") | 7465 | "preconfigured nodejs util for inspecting, and customizing inspecting") |
| @@ -7582,7 +7513,7 @@ | |||
| 7582 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7513 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7583 | (lambda _ | 7514 | (lambda _ |
| 7584 | (delete-dependencies '("mocha" "should"))))))) | 7515 | (delete-dependencies '("mocha" "should"))))))) |
| 7585 | (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) | 7516 | (inputs (list node-kind-of-3.2.2)) |
| 7586 | (home-page "https://github.com/jonschlinkert/is-accessor-descriptor") | 7517 | (home-page "https://github.com/jonschlinkert/is-accessor-descriptor") |
| 7587 | (synopsis | 7518 | (synopsis |
| 7588 | "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.") | 7519 | "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.") |
| @@ -7609,7 +7540,7 @@ | |||
| 7609 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7540 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7610 | (lambda _ | 7541 | (lambda _ |
| 7611 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 7542 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 7612 | (inputs `(("node-kind-of" ,node-kind-of-6.0.3))) | 7543 | (inputs (list node-kind-of-6.0.3)) |
| 7613 | (home-page "https://github.com/jonschlinkert/is-accessor-descriptor") | 7544 | (home-page "https://github.com/jonschlinkert/is-accessor-descriptor") |
| 7614 | (synopsis | 7545 | (synopsis |
| 7615 | "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.") | 7546 | "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.") |
| @@ -7661,7 +7592,7 @@ | |||
| 7661 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7592 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7662 | (lambda _ | 7593 | (lambda _ |
| 7663 | (delete-dependencies '("ava"))))))) | 7594 | (delete-dependencies '("ava"))))))) |
| 7664 | (inputs `(("node-binary-extensions" ,node-binary-extensions-1.13.1))) | 7595 | (inputs (list node-binary-extensions-1.13.1)) |
| 7665 | (home-page "https://github.com/sindresorhus/is-binary-path") | 7596 | (home-page "https://github.com/sindresorhus/is-binary-path") |
| 7666 | (synopsis "Check if a filepath is a binary file") | 7597 | (synopsis "Check if a filepath is a binary file") |
| 7667 | (description "Check if a filepath is a binary file") | 7598 | (description "Check if a filepath is a binary file") |
| @@ -7719,7 +7650,7 @@ | |||
| 7719 | "safe-publish-latest" | 7650 | "safe-publish-latest" |
| 7720 | "semver" | 7651 | "semver" |
| 7721 | "tape"))))))) | 7652 | "tape"))))))) |
| 7722 | (inputs `(("node-has" ,node-has-1.0.3))) | 7653 | (inputs (list node-has-1.0.3)) |
| 7723 | (home-page "https://github.com/inspect-js/is-core-module") | 7654 | (home-page "https://github.com/inspect-js/is-core-module") |
| 7724 | (synopsis "Is this specifier a node.js core module?") | 7655 | (synopsis "Is this specifier a node.js core module?") |
| 7725 | (description "Is this specifier a node.js core module?") | 7656 | (description "Is this specifier a node.js core module?") |
| @@ -7744,7 +7675,7 @@ | |||
| 7744 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7675 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7745 | (lambda _ | 7676 | (lambda _ |
| 7746 | (delete-dependencies '("mocha" "should"))))))) | 7677 | (delete-dependencies '("mocha" "should"))))))) |
| 7747 | (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) | 7678 | (inputs (list node-kind-of-3.2.2)) |
| 7748 | (home-page "https://github.com/jonschlinkert/is-data-descriptor") | 7679 | (home-page "https://github.com/jonschlinkert/is-data-descriptor") |
| 7749 | (synopsis | 7680 | (synopsis |
| 7750 | "Returns true if a value has the characteristics of a valid JavaScript data descriptor.") | 7681 | "Returns true if a value has the characteristics of a valid JavaScript data descriptor.") |
| @@ -7771,7 +7702,7 @@ | |||
| 7771 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7702 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7772 | (lambda _ | 7703 | (lambda _ |
| 7773 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 7704 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 7774 | (inputs `(("node-kind-of" ,node-kind-of-6.0.3))) | 7705 | (inputs (list node-kind-of-6.0.3)) |
| 7775 | (home-page "https://github.com/jonschlinkert/is-data-descriptor") | 7706 | (home-page "https://github.com/jonschlinkert/is-data-descriptor") |
| 7776 | (synopsis | 7707 | (synopsis |
| 7777 | "Returns true if a value has the characteristics of a valid JavaScript data descriptor.") | 7708 | "Returns true if a value has the characteristics of a valid JavaScript data descriptor.") |
| @@ -7798,9 +7729,8 @@ | |||
| 7798 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7729 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7799 | (lambda _ | 7730 | (lambda _ |
| 7800 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 7731 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 7801 | (inputs `(("node-kind-of" ,node-kind-of-5.1.0) | 7732 | (inputs (list node-kind-of-5.1.0 node-is-data-descriptor-0.1.4 |
| 7802 | ("node-is-data-descriptor" ,node-is-data-descriptor-0.1.4) | 7733 | node-is-accessor-descriptor-0.1.6)) |
| 7803 | ("node-is-accessor-descriptor" ,node-is-accessor-descriptor-0.1.6))) | ||
| 7804 | (home-page "https://github.com/jonschlinkert/is-descriptor") | 7734 | (home-page "https://github.com/jonschlinkert/is-descriptor") |
| 7805 | (synopsis | 7735 | (synopsis |
| 7806 | "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.") | 7736 | "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.") |
| @@ -7827,9 +7757,8 @@ | |||
| 7827 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7757 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7828 | (lambda _ | 7758 | (lambda _ |
| 7829 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 7759 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 7830 | (inputs `(("node-kind-of" ,node-kind-of-6.0.3) | 7760 | (inputs (list node-kind-of-6.0.3 node-is-data-descriptor-1.0.0 |
| 7831 | ("node-is-data-descriptor" ,node-is-data-descriptor-1.0.0) | 7761 | node-is-accessor-descriptor-1.0.0)) |
| 7832 | ("node-is-accessor-descriptor" ,node-is-accessor-descriptor-1.0.0))) | ||
| 7833 | (home-page "https://github.com/jonschlinkert/is-descriptor") | 7762 | (home-page "https://github.com/jonschlinkert/is-descriptor") |
| 7834 | (synopsis | 7763 | (synopsis |
| 7835 | "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.") | 7764 | "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.") |
| @@ -7883,7 +7812,7 @@ | |||
| 7883 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7812 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7884 | (lambda _ | 7813 | (lambda _ |
| 7885 | (delete-dependencies '("mocha" "should"))))))) | 7814 | (delete-dependencies '("mocha" "should"))))))) |
| 7886 | (inputs `(("node-is-primitive" ,node-is-primitive-2.0.0))) | 7815 | (inputs (list node-is-primitive-2.0.0)) |
| 7887 | (home-page "https://github.com/jonschlinkert/is-equal-shallow") | 7816 | (home-page "https://github.com/jonschlinkert/is-equal-shallow") |
| 7888 | (synopsis | 7817 | (synopsis |
| 7889 | "Does a shallow comparison of two objects, returning false if the keys or values differ.") | 7818 | "Does a shallow comparison of two objects, returning false if the keys or values differ.") |
| @@ -7936,7 +7865,7 @@ | |||
| 7936 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7865 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 7937 | (lambda _ | 7866 | (lambda _ |
| 7938 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 7867 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 7939 | (inputs `(("node-is-plain-object" ,node-is-plain-object-2.0.4))) | 7868 | (inputs (list node-is-plain-object-2.0.4)) |
| 7940 | (home-page "https://github.com/jonschlinkert/is-extendable") | 7869 | (home-page "https://github.com/jonschlinkert/is-extendable") |
| 7941 | (synopsis "Returns true if a value is a plain object, array or function.") | 7870 | (synopsis "Returns true if a value is a plain object, array or function.") |
| 7942 | (description | 7871 | (description |
| @@ -8039,7 +7968,7 @@ | |||
| 8039 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7968 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 8040 | (lambda _ | 7969 | (lambda _ |
| 8041 | (delete-dependencies '("mocha"))))))) | 7970 | (delete-dependencies '("mocha"))))))) |
| 8042 | (inputs `(("node-is-extglob" ,node-is-extglob-1.0.0))) | 7971 | (inputs (list node-is-extglob-1.0.0)) |
| 8043 | (home-page "https://github.com/jonschlinkert/is-glob") | 7972 | (home-page "https://github.com/jonschlinkert/is-glob") |
| 8044 | (synopsis | 7973 | (synopsis |
| 8045 | "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet") | 7974 | "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet") |
| @@ -8066,7 +7995,7 @@ | |||
| 8066 | (add-after 'patch-dependencies 'delete-dev-dependencies | 7995 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 8067 | (lambda _ | 7996 | (lambda _ |
| 8068 | (delete-dependencies '("benchmarked" "chalk" "mocha"))))))) | 7997 | (delete-dependencies '("benchmarked" "chalk" "mocha"))))))) |
| 8069 | (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) | 7998 | (inputs (list node-kind-of-3.2.2)) |
| 8070 | (home-page "https://github.com/jonschlinkert/is-number") | 7999 | (home-page "https://github.com/jonschlinkert/is-number") |
| 8071 | (synopsis "Returns true if the value is a number. comprehensive tests.") | 8000 | (synopsis "Returns true if the value is a number. comprehensive tests.") |
| 8072 | (description "Returns true if the value is a number. comprehensive tests.") | 8001 | (description "Returns true if the value is a number. comprehensive tests.") |
| @@ -8092,7 +8021,7 @@ | |||
| 8092 | (lambda _ | 8021 | (lambda _ |
| 8093 | (delete-dependencies '("benchmarked" "chalk" | 8022 | (delete-dependencies '("benchmarked" "chalk" |
| 8094 | "gulp-format-md" "mocha"))))))) | 8023 | "gulp-format-md" "mocha"))))))) |
| 8095 | (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) | 8024 | (inputs (list node-kind-of-3.2.2)) |
| 8096 | (home-page "https://github.com/jonschlinkert/is-number") | 8025 | (home-page "https://github.com/jonschlinkert/is-number") |
| 8097 | (synopsis "Returns true if the value is a number. comprehensive tests.") | 8026 | (synopsis "Returns true if the value is a number. comprehensive tests.") |
| 8098 | (description "Returns true if the value is a number. comprehensive tests.") | 8027 | (description "Returns true if the value is a number. comprehensive tests.") |
| @@ -8147,7 +8076,7 @@ | |||
| 8147 | "mocha-phantomjs" | 8076 | "mocha-phantomjs" |
| 8148 | "phantomjs" | 8077 | "phantomjs" |
| 8149 | "uglify-js"))))))) | 8078 | "uglify-js"))))))) |
| 8150 | (inputs `(("node-isobject" ,node-isobject-3.0.1))) | 8079 | (inputs (list node-isobject-3.0.1)) |
| 8151 | (home-page "https://github.com/jonschlinkert/is-plain-object") | 8080 | (home-page "https://github.com/jonschlinkert/is-plain-object") |
| 8152 | (synopsis | 8081 | (synopsis |
| 8153 | "Returns true if an object was created by the `Object` constructor.") | 8082 | "Returns true if an object was created by the `Object` constructor.") |
| @@ -8296,7 +8225,7 @@ | |||
| 8296 | (add-after 'patch-dependencies 'delete-dev-dependencies | 8225 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 8297 | (lambda _ | 8226 | (lambda _ |
| 8298 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 8227 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 8299 | (inputs `(("node-isarray" ,node-isarray-1.0.0))) | 8228 | (inputs (list node-isarray-1.0.0)) |
| 8300 | (home-page "https://github.com/jonschlinkert/isobject") | 8229 | (home-page "https://github.com/jonschlinkert/isobject") |
| 8301 | (synopsis | 8230 | (synopsis |
| 8302 | "Returns true if the value is an object and not an array or null.") | 8231 | "Returns true if the value is an object and not an array or null.") |
| @@ -8435,18 +8364,18 @@ | |||
| 8435 | "should" | 8364 | "should" |
| 8436 | "superagent" | 8365 | "superagent" |
| 8437 | "typescript"))))))) | 8366 | "typescript"))))))) |
| 8438 | (inputs `(("node-ws" ,node-ws-7.5.9) | 8367 | (inputs (list node-ws-7.5.9 |
| 8439 | ("node-uuid" ,node-uuid-8.3.2) | 8368 | node-uuid-8.3.2 |
| 8440 | ("node-jsonstream" ,node-jsonstream-1.3.5) | 8369 | node-jsonstream-1.3.5 |
| 8441 | ("node-json-stringify-safe" ,node-json-stringify-safe-5.0.1) | 8370 | node-json-stringify-safe-5.0.1 |
| 8442 | ("node-isomorphic-ws" ,node-isomorphic-ws-4.0.1) | 8371 | node-isomorphic-ws-4.0.1 |
| 8443 | ("node-eyes" ,node-eyes-0.1.8) | 8372 | node-eyes-0.1.8 |
| 8444 | ("node-es6-promisify" ,node-es6-promisify-5.0.0) | 8373 | node-es6-promisify-5.0.0 |
| 8445 | ("node-delay" ,node-delay-5.0.0) | 8374 | node-delay-5.0.0 |
| 8446 | ("node-commander" ,node-commander-2.20.3) | 8375 | node-commander-2.20.3 |
| 8447 | ("node-types-ws" ,node-types-ws-7.4.7) | 8376 | node-types-ws-7.4.7 |
| 8448 | ("node-types-node" ,node-types-node-12.20.55) | 8377 | node-types-node-12.20.55 |
| 8449 | ("node-types-connect" ,node-types-connect-3.4.35))) | 8378 | node-types-connect-3.4.35)) |
| 8450 | (home-page "https://jayson.tedeh.net") | 8379 | (home-page "https://jayson.tedeh.net") |
| 8451 | (synopsis "JSON-RPC 1.0/2.0 compliant server and client") | 8380 | (synopsis "JSON-RPC 1.0/2.0 compliant server and client") |
| 8452 | (description "JSON-RPC 1.0/2.0 compliant server and client") | 8381 | (description "JSON-RPC 1.0/2.0 compliant server and client") |
| @@ -8508,7 +8437,7 @@ | |||
| 8508 | "rollup-plugin-node-polyfills" | 8437 | "rollup-plugin-node-polyfills" |
| 8509 | "rollup-plugin-terser" | 8438 | "rollup-plugin-terser" |
| 8510 | "shelljs"))))))) | 8439 | "shelljs"))))))) |
| 8511 | (inputs `(("node-argparse" ,node-argparse-2.0.1))) | 8440 | (inputs (list node-argparse-2.0.1)) |
| 8512 | (home-page "https://github.com/nodeca/js-yaml#readme") | 8441 | (home-page "https://github.com/nodeca/js-yaml#readme") |
| 8513 | (synopsis "YAML 1.2 parser and serializer") | 8442 | (synopsis "YAML 1.2 parser and serializer") |
| 8514 | (description "YAML 1.2 parser and serializer") | 8443 | (description "YAML 1.2 parser and serializer") |
| @@ -8715,8 +8644,7 @@ | |||
| 8715 | "rollup-plugin-node-resolve" | 8644 | "rollup-plugin-node-resolve" |
| 8716 | "rollup-plugin-replace" | 8645 | "rollup-plugin-replace" |
| 8717 | "rollup-plugin-visualizer"))))))) | 8646 | "rollup-plugin-visualizer"))))))) |
| 8718 | (inputs `(("node-diff-match-patch" ,node-diff-match-patch-1.0.5) | 8647 | (inputs (list node-diff-match-patch-1.0.5 node-chalk-2.4.2)) |
| 8719 | ("node-chalk" ,node-chalk-2.4.2))) | ||
| 8720 | (home-page "https://github.com/benjamine/jsondiffpatch") | 8648 | (home-page "https://github.com/benjamine/jsondiffpatch") |
| 8721 | (synopsis "Diff & Patch for Javascript objects") | 8649 | (synopsis "Diff & Patch for Javascript objects") |
| 8722 | (description "Diff & Patch for Javascript objects") | 8650 | (description "Diff & Patch for Javascript objects") |
| @@ -8773,8 +8701,7 @@ | |||
| 8773 | "rollup-plugin-node-resolve" | 8701 | "rollup-plugin-node-resolve" |
| 8774 | "rollup-plugin-replace" | 8702 | "rollup-plugin-replace" |
| 8775 | "rollup-plugin-visualizer"))))))) | 8703 | "rollup-plugin-visualizer"))))))) |
| 8776 | (inputs `(("node-diff-match-patch" ,node-diff-match-patch-1.0.5) | 8704 | (inputs (list node-diff-match-patch-1.0.5 node-chalk-2.4.2)) |
| 8777 | ("node-chalk" ,node-chalk-2.4.2))) | ||
| 8778 | (home-page "https://github.com/benjamine/jsondiffpatch") | 8705 | (home-page "https://github.com/benjamine/jsondiffpatch") |
| 8779 | (synopsis "Diff & Patch for Javascript objects") | 8706 | (synopsis "Diff & Patch for Javascript objects") |
| 8780 | (description "Diff & Patch for Javascript objects") | 8707 | (description "Diff & Patch for Javascript objects") |
| @@ -8798,7 +8725,7 @@ | |||
| 8798 | (add-after 'patch-dependencies 'delete-dev-dependencies | 8725 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 8799 | (lambda _ | 8726 | (lambda _ |
| 8800 | (delete-dependencies '("mocha" "rimraf" "standard"))))))) | 8727 | (delete-dependencies '("mocha" "rimraf" "standard"))))))) |
| 8801 | (inputs `(("node-graceful-fs" ,node-graceful-fs-4.2.11))) | 8728 | (inputs (list node-graceful-fs-4.2.11)) |
| 8802 | (home-page "https://github.com/jprichardson/node-jsonfile#readme") | 8729 | (home-page "https://github.com/jprichardson/node-jsonfile#readme") |
| 8803 | (synopsis "Easily read/write JSON files.") | 8730 | (synopsis "Easily read/write JSON files.") |
| 8804 | (description "Easily read/write JSON files.") | 8731 | (description "Easily read/write JSON files.") |
| @@ -8848,8 +8775,7 @@ | |||
| 8848 | (lambda _ | 8775 | (lambda _ |
| 8849 | (delete-dependencies '("it-is" "assertions" "render" | 8776 | (delete-dependencies '("it-is" "assertions" "render" |
| 8850 | "trees" "event-stream" "tape"))))))) | 8777 | "trees" "event-stream" "tape"))))))) |
| 8851 | (inputs `(("node-through" ,node-through-2.3.8) | 8778 | (inputs (list node-through-2.3.8 node-jsonparse-1.3.1)) |
| 8852 | ("node-jsonparse" ,node-jsonparse-1.3.1))) | ||
| 8853 | (home-page "http://github.com/dominictarr/JSONStream") | 8779 | (home-page "http://github.com/dominictarr/JSONStream") |
| 8854 | (synopsis "rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)") | 8780 | (synopsis "rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)") |
| 8855 | (description "rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)") | 8781 | (description "rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)") |
| @@ -8870,10 +8796,8 @@ | |||
| 8870 | '(#:tests? #f | 8796 | '(#:tests? #f |
| 8871 | #:phases (modify-phases %standard-phases | 8797 | #:phases (modify-phases %standard-phases |
| 8872 | (delete 'build)))) | 8798 | (delete 'build)))) |
| 8873 | (inputs `(("node-verror" ,node-verror-1.10.0) | 8799 | (inputs (list node-verror-1.10.0 node-json-schema-0.4.0 |
| 8874 | ("node-json-schema" ,node-json-schema-0.4.0) | 8800 | node-extsprintf-1.3.0 node-assert-plus-1.0.0)) |
| 8875 | ("node-extsprintf" ,node-extsprintf-1.3.0) | ||
| 8876 | ("node-assert-plus" ,node-assert-plus-1.0.0))) | ||
| 8877 | (home-page "https://github.com/joyent/node-jsprim#readme") | 8801 | (home-page "https://github.com/joyent/node-jsprim#readme") |
| 8878 | (synopsis "utilities for primitive JavaScript types") | 8802 | (synopsis "utilities for primitive JavaScript types") |
| 8879 | (description "utilities for primitive JavaScript types") | 8803 | (description "utilities for primitive JavaScript types") |
| @@ -8923,7 +8847,7 @@ | |||
| 8923 | "mocha" | 8847 | "mocha" |
| 8924 | "type-of" | 8848 | "type-of" |
| 8925 | "typeof"))))))) | 8849 | "typeof"))))))) |
| 8926 | (inputs `(("node-is-buffer" ,node-is-buffer-1.1.6))) | 8850 | (inputs (list node-is-buffer-1.1.6)) |
| 8927 | (home-page "https://github.com/jonschlinkert/kind-of") | 8851 | (home-page "https://github.com/jonschlinkert/kind-of") |
| 8928 | (synopsis "Get the native type of a value.") | 8852 | (synopsis "Get the native type of a value.") |
| 8929 | (description "Get the native type of a value.") | 8853 | (description "Get the native type of a value.") |
| @@ -8953,7 +8877,7 @@ | |||
| 8953 | "mocha" | 8877 | "mocha" |
| 8954 | "type-of" | 8878 | "type-of" |
| 8955 | "typeof"))))))) | 8879 | "typeof"))))))) |
| 8956 | (inputs `(("node-is-buffer" ,node-is-buffer-1.1.6))) | 8880 | (inputs (list node-is-buffer-1.1.6)) |
| 8957 | (home-page "https://github.com/jonschlinkert/kind-of") | 8881 | (home-page "https://github.com/jonschlinkert/kind-of") |
| 8958 | (synopsis "Get the native type of a value.") | 8882 | (synopsis "Get the native type of a value.") |
| 8959 | (description "Get the native type of a value.") | 8883 | (description "Get the native type of a value.") |
| @@ -9035,7 +8959,7 @@ | |||
| 9035 | "flow-remove-types" | 8959 | "flow-remove-types" |
| 9036 | "prettier" | 8960 | "prettier" |
| 9037 | "prettier-eslint"))))))) | 8961 | "prettier-eslint"))))))) |
| 9038 | (inputs `(("node-chain-able" ,node-chain-able-3.0.0))) | 8962 | (inputs (list node-chain-able-3.0.0)) |
| 9039 | (home-page "https://github.com/fuse-box/lego-api#readme") | 8963 | (home-page "https://github.com/fuse-box/lego-api#readme") |
| 9040 | (synopsis "lego api") | 8964 | (synopsis "lego api") |
| 9041 | (description "lego api") | 8965 | (description "lego api") |
| @@ -9059,8 +8983,7 @@ | |||
| 9059 | (add-after 'patch-dependencies 'delete-dev-dependencies | 8983 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 9060 | (lambda _ | 8984 | (lambda _ |
| 9061 | (delete-dependencies '("livescript" "mocha" "istanbul"))))))) | 8985 | (delete-dependencies '("livescript" "mocha" "istanbul"))))))) |
| 9062 | (inputs `(("node-type-check" ,node-type-check-0.3.2) | 8986 | (inputs (list node-type-check-0.3.2 node-prelude-ls-1.1.2)) |
| 9063 | ("node-prelude-ls" ,node-prelude-ls-1.1.2))) | ||
| 9064 | (home-page "https://github.com/gkz/levn") | 8987 | (home-page "https://github.com/gkz/levn") |
| 9065 | (synopsis | 8988 | (synopsis |
| 9066 | "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible") | 8989 | "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible") |
| @@ -9136,7 +9059,7 @@ | |||
| 9136 | "shx" | 9059 | "shx" |
| 9137 | "stylus" | 9060 | "stylus" |
| 9138 | "tlds"))))))) | 9061 | "tlds"))))))) |
| 9139 | (inputs `(("node-uc-micro" ,node-uc-micro-1.0.6))) | 9062 | (inputs (list node-uc-micro-1.0.6)) |
| 9140 | (home-page "https://github.com/markdown-it/linkify-it#readme") | 9063 | (home-page "https://github.com/markdown-it/linkify-it#readme") |
| 9141 | (synopsis "Links recognition library with FULL unicode support") | 9064 | (synopsis "Links recognition library with FULL unicode support") |
| 9142 | (description "Links recognition library with FULL unicode support") | 9065 | (description "Links recognition library with FULL unicode support") |
| @@ -9222,7 +9145,7 @@ | |||
| 9222 | '(#:tests? #f | 9145 | '(#:tests? #f |
| 9223 | #:phases (modify-phases %standard-phases | 9146 | #:phases (modify-phases %standard-phases |
| 9224 | (delete 'build)))) | 9147 | (delete 'build)))) |
| 9225 | (inputs `(("node-lodash--getnative" ,node-lodash--getnative-3.9.1))) | 9148 | (inputs (list node-lodash--getnative-3.9.1)) |
| 9226 | (home-page "https://lodash.com/") | 9149 | (home-page "https://lodash.com/") |
| 9227 | (synopsis "The modern build of lodashâs `_.debounce` as a module.") | 9150 | (synopsis "The modern build of lodashâs `_.debounce` as a module.") |
| 9228 | (description "The modern build of lodashâs `_.debounce` as a module.") | 9151 | (description "The modern build of lodashâs `_.debounce` as a module.") |
| @@ -9331,7 +9254,7 @@ | |||
| 9331 | (add-after 'patch-dependencies 'delete-dev-dependencies | 9254 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 9332 | (lambda _ | 9255 | (lambda _ |
| 9333 | (delete-dependencies '("browserify" "envify" "tap"))))))) | 9256 | (delete-dependencies '("browserify" "envify" "tap"))))))) |
| 9334 | (inputs `(("node-js-tokens" ,node-js-tokens-4.0.0))) | 9257 | (inputs (list node-js-tokens-4.0.0)) |
| 9335 | (home-page "https://github.com/zertosh/loose-envify") | 9258 | (home-page "https://github.com/zertosh/loose-envify") |
| 9336 | (synopsis | 9259 | (synopsis |
| 9337 | "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST") | 9260 | "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST") |
| @@ -9358,7 +9281,7 @@ | |||
| 9358 | (add-after 'patch-dependencies 'delete-dev-dependencies | 9281 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 9359 | (lambda _ | 9282 | (lambda _ |
| 9360 | (delete-dependencies '("benchmark" "tap"))))))) | 9283 | (delete-dependencies '("benchmark" "tap"))))))) |
| 9361 | (inputs `(("node-yallist" ,node-yallist-4.0.0))) | 9284 | (inputs (list node-yallist-4.0.0)) |
| 9362 | (home-page "https://github.com/isaacs/node-lru-cache#readme") | 9285 | (home-page "https://github.com/isaacs/node-lru-cache#readme") |
| 9363 | (synopsis "A cache object that deletes the least-recently-used items.") | 9286 | (synopsis "A cache object that deletes the least-recently-used items.") |
| 9364 | (description "A cache object that deletes the least-recently-used items.") | 9287 | (description "A cache object that deletes the least-recently-used items.") |
| @@ -9391,7 +9314,7 @@ | |||
| 9391 | "tempy" | 9314 | "tempy" |
| 9392 | "tsd" | 9315 | "tsd" |
| 9393 | "xo"))))))) | 9316 | "xo"))))))) |
| 9394 | (inputs `(("node-semver" ,node-semver-6.3.0))) | 9317 | (inputs (list node-semver-6.3.0)) |
| 9395 | (home-page "https://github.com/sindresorhus/make-dir#readme") | 9318 | (home-page "https://github.com/sindresorhus/make-dir#readme") |
| 9396 | (synopsis "Make a directory and its parents if needed - Think `mkdir -p`") | 9319 | (synopsis "Make a directory and its parents if needed - Think `mkdir -p`") |
| 9397 | (description | 9320 | (description |
| @@ -9442,7 +9365,7 @@ | |||
| 9442 | (lambda _ | 9365 | (lambda _ |
| 9443 | (delete-dependencies '("clone-deep" "extend-shallow" | 9366 | (delete-dependencies '("clone-deep" "extend-shallow" |
| 9444 | "gulp-format-md" "lodash" "mocha"))))))) | 9367 | "gulp-format-md" "lodash" "mocha"))))))) |
| 9445 | (inputs `(("node-object-visit" ,node-object-visit-1.0.1))) | 9368 | (inputs (list node-object-visit-1.0.1)) |
| 9446 | (home-page "https://github.com/jonschlinkert/map-visit") | 9369 | (home-page "https://github.com/jonschlinkert/map-visit") |
| 9447 | (synopsis "Map `visit` over an array of objects.") | 9370 | (synopsis "Map `visit` over an array of objects.") |
| 9448 | (description "Map `visit` over an array of objects.") | 9371 | (description "Map `visit` over an array of objects.") |
| @@ -9478,15 +9401,15 @@ | |||
| 9478 | "nyc" | 9401 | "nyc" |
| 9479 | "tape" | 9402 | "tape" |
| 9480 | "tar-fs"))))))) | 9403 | "tar-fs"))))))) |
| 9481 | (inputs `(("node-tar" ,node-tar-6.1.15) | 9404 | (inputs (list node-tar-6.1.15 |
| 9482 | ("node-semver" ,node-semver-7.5.1) | 9405 | node-semver-7.5.1 |
| 9483 | ("node-rimraf" ,node-rimraf-3.0.2) | 9406 | node-rimraf-3.0.2 |
| 9484 | ("node-npmlog" ,node-npmlog-5.0.1) | 9407 | node-npmlog-5.0.1 |
| 9485 | ("node-nopt" ,node-nopt-5.0.0) | 9408 | node-nopt-5.0.0 |
| 9486 | ("node-node-fetch" ,node-node-fetch-2.6.11) | 9409 | node-node-fetch-2.6.11 |
| 9487 | ("node-make-dir" ,node-make-dir-3.1.0) | 9410 | node-make-dir-3.1.0 |
| 9488 | ("node-https-proxy-agent" ,node-https-proxy-agent-5.0.1) | 9411 | node-https-proxy-agent-5.0.1 |
| 9489 | ("node-detect-libc" ,node-detect-libc-2.0.1))) | 9412 | node-detect-libc-2.0.1)) |
| 9490 | (home-page "https://github.com/mapbox/node-pre-gyp#readme") | 9413 | (home-page "https://github.com/mapbox/node-pre-gyp#readme") |
| 9491 | (synopsis "Node.js native addon binary install tool") | 9414 | (synopsis "Node.js native addon binary install tool") |
| 9492 | (description "Node.js native addon binary install tool") | 9415 | (description "Node.js native addon binary install tool") |
| @@ -9545,11 +9468,8 @@ | |||
| 9545 | "shelljs" | 9468 | "shelljs" |
| 9546 | "stylus" | 9469 | "stylus" |
| 9547 | "supertest"))))))) | 9470 | "supertest"))))))) |
| 9548 | (inputs `(("node-uc-micro" ,node-uc-micro-1.0.6) | 9471 | (inputs (list node-uc-micro-1.0.6 node-mdurl-1.0.1 node-linkify-it-4.0.1 |
| 9549 | ("node-mdurl" ,node-mdurl-1.0.1) | 9472 | node-entities-3.0.1 node-argparse-2.0.1)) |
| 9550 | ("node-linkify-it" ,node-linkify-it-4.0.1) | ||
| 9551 | ("node-entities" ,node-entities-3.0.1) | ||
| 9552 | ("node-argparse" ,node-argparse-2.0.1))) | ||
| 9553 | (home-page "https://github.com/markdown-it/markdown-it#readme") | 9473 | (home-page "https://github.com/markdown-it/markdown-it#readme") |
| 9554 | (synopsis "Markdown-it - modern pluggable markdown parser.") | 9474 | (synopsis "Markdown-it - modern pluggable markdown parser.") |
| 9555 | (description "Markdown-it - modern pluggable markdown parser.") | 9475 | (description "Markdown-it - modern pluggable markdown parser.") |
| @@ -9777,19 +9697,19 @@ | |||
| 9777 | "multimatch" | 9697 | "multimatch" |
| 9778 | "should" | 9698 | "should" |
| 9779 | "write"))))))) | 9699 | "write"))))))) |
| 9780 | (inputs `(("node-regex-cache" ,node-regex-cache-0.4.4) | 9700 | (inputs (list node-regex-cache-0.4.4 |
| 9781 | ("node-parse-glob" ,node-parse-glob-3.0.4) | 9701 | node-parse-glob-3.0.4 |
| 9782 | ("node-object-omit" ,node-object-omit-2.0.1) | 9702 | node-object-omit-2.0.1 |
| 9783 | ("node-normalize-path" ,node-normalize-path-2.1.1) | 9703 | node-normalize-path-2.1.1 |
| 9784 | ("node-kind-of" ,node-kind-of-3.2.2) | 9704 | node-kind-of-3.2.2 |
| 9785 | ("node-is-glob" ,node-is-glob-2.0.1) | 9705 | node-is-glob-2.0.1 |
| 9786 | ("node-is-extglob" ,node-is-extglob-1.0.0) | 9706 | node-is-extglob-1.0.0 |
| 9787 | ("node-filename-regex" ,node-filename-regex-2.0.1) | 9707 | node-filename-regex-2.0.1 |
| 9788 | ("node-extglob" ,node-extglob-0.3.2) | 9708 | node-extglob-0.3.2 |
| 9789 | ("node-expand-brackets" ,node-expand-brackets-0.1.5) | 9709 | node-expand-brackets-0.1.5 |
| 9790 | ("node-braces" ,node-braces-1.8.5) | 9710 | node-braces-1.8.5 |
| 9791 | ("node-array-unique" ,node-array-unique-0.2.1) | 9711 | node-array-unique-0.2.1 |
| 9792 | ("node-arr-diff" ,node-arr-diff-2.0.0))) | 9712 | node-arr-diff-2.0.0)) |
| 9793 | (home-page "https://github.com/jonschlinkert/micromatch") | 9713 | (home-page "https://github.com/jonschlinkert/micromatch") |
| 9794 | (synopsis | 9714 | (synopsis |
| 9795 | "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") | 9715 | "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") |
| @@ -9826,19 +9746,19 @@ | |||
| 9826 | "minimist" | 9746 | "minimist" |
| 9827 | "mocha" | 9747 | "mocha" |
| 9828 | "multimatch"))))))) | 9748 | "multimatch"))))))) |
| 9829 | (inputs `(("node-to-regex" ,node-to-regex-3.0.2) | 9749 | (inputs (list node-to-regex-3.0.2 |
| 9830 | ("node-snapdragon" ,node-snapdragon-0.8.2) | 9750 | node-snapdragon-0.8.2 |
| 9831 | ("node-regex-not" ,node-regex-not-1.0.2) | 9751 | node-regex-not-1.0.2 |
| 9832 | ("node-object-pick" ,node-object-pick-1.3.0) | 9752 | node-object-pick-1.3.0 |
| 9833 | ("node-nanomatch" ,node-nanomatch-1.2.13) | 9753 | node-nanomatch-1.2.13 |
| 9834 | ("node-kind-of" ,node-kind-of-6.0.3) | 9754 | node-kind-of-6.0.3 |
| 9835 | ("node-fragment-cache" ,node-fragment-cache-0.2.1) | 9755 | node-fragment-cache-0.2.1 |
| 9836 | ("node-extglob" ,node-extglob-2.0.4) | 9756 | node-extglob-2.0.4 |
| 9837 | ("node-extend-shallow" ,node-extend-shallow-3.0.2) | 9757 | node-extend-shallow-3.0.2 |
| 9838 | ("node-define-property" ,node-define-property-2.0.2) | 9758 | node-define-property-2.0.2 |
| 9839 | ("node-braces" ,node-braces-2.3.2) | 9759 | node-braces-2.3.2 |
| 9840 | ("node-array-unique" ,node-array-unique-0.3.2) | 9760 | node-array-unique-0.3.2 |
| 9841 | ("node-arr-diff" ,node-arr-diff-4.0.0))) | 9761 | node-arr-diff-4.0.0)) |
| 9842 | (home-page "https://github.com/micromatch/micromatch") | 9762 | (home-page "https://github.com/micromatch/micromatch") |
| 9843 | (synopsis | 9763 | (synopsis |
| 9844 | "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") | 9764 | "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") |
| @@ -9963,7 +9883,7 @@ | |||
| 9963 | "eslint-plugin-standard" | 9883 | "eslint-plugin-standard" |
| 9964 | "mocha" | 9884 | "mocha" |
| 9965 | "nyc"))))))) | 9885 | "nyc"))))))) |
| 9966 | (inputs `(("node-mime-db" ,node-mime-db-1.52.0))) | 9886 | (inputs (list node-mime-db-1.52.0)) |
| 9967 | (home-page "https://github.com/jshttp/mime-types#readme") | 9887 | (home-page "https://github.com/jshttp/mime-types#readme") |
| 9968 | (synopsis "The ultimate javascript content-type utility.") | 9888 | (synopsis "The ultimate javascript content-type utility.") |
| 9969 | (description "The ultimate javascript content-type utility.") | 9889 | (description "The ultimate javascript content-type utility.") |
| @@ -10011,7 +9931,7 @@ | |||
| 10011 | (add-after 'patch-dependencies 'delete-dev-dependencies | 9931 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10012 | (lambda _ | 9932 | (lambda _ |
| 10013 | (delete-dependencies '("tap"))))))) | 9933 | (delete-dependencies '("tap"))))))) |
| 10014 | (inputs `(("node-brace-expansion" ,node-brace-expansion-1.1.11))) | 9934 | (inputs (list node-brace-expansion-1.1.11)) |
| 10015 | (home-page "https://github.com/isaacs/minimatch#readme") | 9935 | (home-page "https://github.com/isaacs/minimatch#readme") |
| 10016 | (synopsis "a glob matcher in javascript") | 9936 | (synopsis "a glob matcher in javascript") |
| 10017 | (description "a glob matcher in javascript") | 9937 | (description "a glob matcher in javascript") |
| @@ -10070,7 +9990,7 @@ | |||
| 10070 | "through2" | 9990 | "through2" |
| 10071 | "ts-node" | 9991 | "ts-node" |
| 10072 | "typescript"))))))) | 9992 | "typescript"))))))) |
| 10073 | (inputs `(("node-yallist" ,node-yallist-4.0.0))) | 9993 | (inputs (list node-yallist-4.0.0)) |
| 10074 | (home-page "https://github.com/isaacs/minipass#readme") | 9994 | (home-page "https://github.com/isaacs/minipass#readme") |
| 10075 | (synopsis "minimal implementation of a PassThrough stream") | 9995 | (synopsis "minimal implementation of a PassThrough stream") |
| 10076 | (description "minimal implementation of a PassThrough stream") | 9996 | (description "minimal implementation of a PassThrough stream") |
| @@ -10153,8 +10073,7 @@ | |||
| 10153 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10073 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10154 | (lambda _ | 10074 | (lambda _ |
| 10155 | (delete-dependencies '("tap"))))))) | 10075 | (delete-dependencies '("tap"))))))) |
| 10156 | (inputs `(("node-yallist" ,node-yallist-4.0.0) | 10076 | (inputs (list node-yallist-4.0.0 node-minipass-3.3.6)) |
| 10157 | ("node-minipass" ,node-minipass-3.3.6))) | ||
| 10158 | (home-page "https://github.com/isaacs/minizlib#readme") | 10077 | (home-page "https://github.com/isaacs/minizlib#readme") |
| 10159 | (synopsis | 10078 | (synopsis |
| 10160 | "A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.") | 10079 | "A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.") |
| @@ -10181,8 +10100,7 @@ | |||
| 10181 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10100 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10182 | (lambda _ | 10101 | (lambda _ |
| 10183 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) | 10102 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) |
| 10184 | (inputs `(("node-is-extendable" ,node-is-extendable-1.0.1) | 10103 | (inputs (list node-is-extendable-1.0.1 node-for-in-1.0.2)) |
| 10185 | ("node-for-in" ,node-for-in-1.0.2))) | ||
| 10186 | (home-page "https://github.com/jonschlinkert/mixin-deep") | 10104 | (home-page "https://github.com/jonschlinkert/mixin-deep") |
| 10187 | (synopsis | 10105 | (synopsis |
| 10188 | "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.") | 10106 | "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.") |
| @@ -10208,7 +10126,7 @@ | |||
| 10208 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10126 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10209 | (lambda _ | 10127 | (lambda _ |
| 10210 | (delete-dependencies '("tap"))))))) | 10128 | (delete-dependencies '("tap"))))))) |
| 10211 | (inputs `(("node-minimist" ,node-minimist-1.2.8))) | 10129 | (inputs (list node-minimist-1.2.8)) |
| 10212 | (home-page "https://github.com/substack/node-mkdirp#readme") | 10130 | (home-page "https://github.com/substack/node-mkdirp#readme") |
| 10213 | (synopsis "Recursively mkdir, like `mkdir -p`") | 10131 | (synopsis "Recursively mkdir, like `mkdir -p`") |
| 10214 | (description "Recursively mkdir, like `mkdir -p`") | 10132 | (description "Recursively mkdir, like `mkdir -p`") |
| @@ -10421,17 +10339,17 @@ | |||
| 10421 | "minimist" | 10339 | "minimist" |
| 10422 | "mocha" | 10340 | "mocha" |
| 10423 | "multimatch"))))))) | 10341 | "multimatch"))))))) |
| 10424 | (inputs `(("node-to-regex" ,node-to-regex-3.0.2) | 10342 | (inputs (list node-to-regex-3.0.2 |
| 10425 | ("node-snapdragon" ,node-snapdragon-0.8.2) | 10343 | node-snapdragon-0.8.2 |
| 10426 | ("node-regex-not" ,node-regex-not-1.0.2) | 10344 | node-regex-not-1.0.2 |
| 10427 | ("node-object-pick" ,node-object-pick-1.3.0) | 10345 | node-object-pick-1.3.0 |
| 10428 | ("node-kind-of" ,node-kind-of-6.0.3) | 10346 | node-kind-of-6.0.3 |
| 10429 | ("node-is-windows" ,node-is-windows-1.0.2) | 10347 | node-is-windows-1.0.2 |
| 10430 | ("node-fragment-cache" ,node-fragment-cache-0.2.1) | 10348 | node-fragment-cache-0.2.1 |
| 10431 | ("node-extend-shallow" ,node-extend-shallow-3.0.2) | 10349 | node-extend-shallow-3.0.2 |
| 10432 | ("node-define-property" ,node-define-property-2.0.2) | 10350 | node-define-property-2.0.2 |
| 10433 | ("node-array-unique" ,node-array-unique-0.3.2) | 10351 | node-array-unique-0.3.2 |
| 10434 | ("node-arr-diff" ,node-arr-diff-4.0.0))) | 10352 | node-arr-diff-4.0.0)) |
| 10435 | (home-page "https://github.com/micromatch/nanomatch") | 10353 | (home-page "https://github.com/micromatch/nanomatch") |
| 10436 | (synopsis | 10354 | (synopsis |
| 10437 | "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)") | 10355 | "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)") |
| @@ -10590,8 +10508,7 @@ | |||
| 10590 | "string-to-arraybuffer" | 10508 | "string-to-arraybuffer" |
| 10591 | "teeny-request" | 10509 | "teeny-request" |
| 10592 | "encoding"))))))) | 10510 | "encoding"))))))) |
| 10593 | (inputs `(("node-whatwg-url" ,node-whatwg-url-5.0.0) | 10511 | (inputs (list node-whatwg-url-5.0.0 node-encoding-0.1.13)) |
| 10594 | ("node-encoding" ,node-encoding-0.1.13))) | ||
| 10595 | (home-page "https://github.com/bitinn/node-fetch") | 10512 | (home-page "https://github.com/bitinn/node-fetch") |
| 10596 | (synopsis "A light-weight module that brings window.fetch to node.js") | 10513 | (synopsis "A light-weight module that brings window.fetch to node.js") |
| 10597 | (description "A light-weight module that brings window.fetch to node.js") | 10514 | (description "A light-weight module that brings window.fetch to node.js") |
| @@ -10680,7 +10597,7 @@ | |||
| 10680 | '(#:tests? #f | 10597 | '(#:tests? #f |
| 10681 | #:phases (modify-phases %standard-phases | 10598 | #:phases (modify-phases %standard-phases |
| 10682 | (delete 'build)))) | 10599 | (delete 'build)))) |
| 10683 | (inputs `(("node-abbrev" ,node-abbrev-1.1.1))) | 10600 | (inputs (list node-abbrev-1.1.1)) |
| 10684 | (home-page "https://www.npmjs.com/package/node-nopt") | 10601 | (home-page "https://www.npmjs.com/package/node-nopt") |
| 10685 | (synopsis | 10602 | (synopsis |
| 10686 | "Option parsing for Node, supporting types, shorthands, etc. Used by npm.") | 10603 | "Option parsing for Node, supporting types, shorthands, etc. Used by npm.") |
| @@ -10706,7 +10623,7 @@ | |||
| 10706 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10623 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10707 | (lambda _ | 10624 | (lambda _ |
| 10708 | (delete-dependencies '("tap"))))))) | 10625 | (delete-dependencies '("tap"))))))) |
| 10709 | (inputs `(("node-abbrev" ,node-abbrev-1.1.1))) | 10626 | (inputs (list node-abbrev-1.1.1)) |
| 10710 | (home-page "https://github.com/npm/nopt#readme") | 10627 | (home-page "https://github.com/npm/nopt#readme") |
| 10711 | (synopsis | 10628 | (synopsis |
| 10712 | "Option parsing for Node, supporting types, shorthands, etc. Used by npm.") | 10629 | "Option parsing for Node, supporting types, shorthands, etc. Used by npm.") |
| @@ -10734,7 +10651,7 @@ | |||
| 10734 | (lambda _ | 10651 | (lambda _ |
| 10735 | (delete-dependencies '("benchmarked" "gulp-format-md" | 10652 | (delete-dependencies '("benchmarked" "gulp-format-md" |
| 10736 | "minimist" "mocha"))))))) | 10653 | "minimist" "mocha"))))))) |
| 10737 | (inputs `(("node-remove-trailing-separator" ,node-remove-trailing-separator-1.1.0))) | 10654 | (inputs (list node-remove-trailing-separator-1.1.0)) |
| 10738 | (home-page "https://github.com/jonschlinkert/normalize-path") | 10655 | (home-page "https://github.com/jonschlinkert/normalize-path") |
| 10739 | (synopsis | 10656 | (synopsis |
| 10740 | "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.") | 10657 | "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.") |
| @@ -10760,10 +10677,9 @@ | |||
| 10760 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10677 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10761 | (lambda _ | 10678 | (lambda _ |
| 10762 | (delete-dependencies '("@npmcli/lint" "tap"))))))) | 10679 | (delete-dependencies '("@npmcli/lint" "tap"))))))) |
| 10763 | (inputs `(("node-set-blocking" ,node-set-blocking-2.0.0) | 10680 | (inputs (list node-set-blocking-2.0.0 node-gauge-3.0.2 |
| 10764 | ("node-gauge" ,node-gauge-3.0.2) | 10681 | node-console-control-strings-1.1.0 |
| 10765 | ("node-console-control-strings" ,node-console-control-strings-1.1.0) | 10682 | node-are-we-there-yet-2.0.0)) |
| 10766 | ("node-are-we-there-yet" ,node-are-we-there-yet-2.0.0))) | ||
| 10767 | (home-page "https://github.com/npm/npmlog#readme") | 10683 | (home-page "https://github.com/npm/npmlog#readme") |
| 10768 | (synopsis "logger for npm") | 10684 | (synopsis "logger for npm") |
| 10769 | (description "logger for npm") | 10685 | (description "logger for npm") |
| @@ -10835,9 +10751,8 @@ | |||
| 10835 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10751 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10836 | (lambda _ | 10752 | (lambda _ |
| 10837 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 10753 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 10838 | (inputs `(("node-kind-of" ,node-kind-of-3.2.2) | 10754 | (inputs (list node-kind-of-3.2.2 node-define-property-0.2.5 |
| 10839 | ("node-define-property" ,node-define-property-0.2.5) | 10755 | node-copy-descriptor-0.1.1)) |
| 10840 | ("node-copy-descriptor" ,node-copy-descriptor-0.1.1))) | ||
| 10841 | (home-page "https://github.com/jonschlinkert/object-copy") | 10756 | (home-page "https://github.com/jonschlinkert/object-copy") |
| 10842 | (synopsis | 10757 | (synopsis |
| 10843 | "Copy static properties, prototype properties, and descriptors from one object to another.") | 10758 | "Copy static properties, prototype properties, and descriptors from one object to another.") |
| @@ -10906,8 +10821,7 @@ | |||
| 10906 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10821 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10907 | (lambda _ | 10822 | (lambda _ |
| 10908 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) | 10823 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) |
| 10909 | (inputs `(("node-is-extendable" ,node-is-extendable-0.1.1) | 10824 | (inputs (list node-is-extendable-0.1.1 node-for-own-0.1.5)) |
| 10910 | ("node-for-own" ,node-for-own-0.1.5))) | ||
| 10911 | (home-page "https://github.com/jonschlinkert/object.omit") | 10825 | (home-page "https://github.com/jonschlinkert/object.omit") |
| 10912 | (synopsis | 10826 | (synopsis |
| 10913 | "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.") | 10827 | "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.") |
| @@ -10934,7 +10848,7 @@ | |||
| 10934 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10848 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 10935 | (lambda _ | 10849 | (lambda _ |
| 10936 | (delete-dependencies '("gulp-format-md" "mocha" "vinyl"))))))) | 10850 | (delete-dependencies '("gulp-format-md" "mocha" "vinyl"))))))) |
| 10937 | (inputs `(("node-isobject" ,node-isobject-3.0.1))) | 10851 | (inputs (list node-isobject-3.0.1)) |
| 10938 | (home-page "https://github.com/jonschlinkert/object.pick") | 10852 | (home-page "https://github.com/jonschlinkert/object.pick") |
| 10939 | (synopsis | 10853 | (synopsis |
| 10940 | "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.") | 10854 | "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.") |
| @@ -10984,7 +10898,7 @@ | |||
| 10984 | (delete-dependencies '("gulp" "gulp-eslint" | 10898 | (delete-dependencies '("gulp" "gulp-eslint" |
| 10985 | "gulp-format-md" "gulp-istanbul" | 10899 | "gulp-format-md" "gulp-istanbul" |
| 10986 | "gulp-mocha" "mocha"))))))) | 10900 | "gulp-mocha" "mocha"))))))) |
| 10987 | (inputs `(("node-isobject" ,node-isobject-3.0.1))) | 10901 | (inputs (list node-isobject-3.0.1)) |
| 10988 | (home-page "https://github.com/jonschlinkert/object-visit") | 10902 | (home-page "https://github.com/jonschlinkert/object-visit") |
| 10989 | (synopsis "Call a specified method on each value in the given object.") | 10903 | (synopsis "Call a specified method on each value in the given object.") |
| 10990 | (description "Call a specified method on each value in the given object.") | 10904 | (description "Call a specified method on each value in the given object.") |
| @@ -11016,7 +10930,7 @@ | |||
| 11016 | "eslint-plugin-standard" | 10930 | "eslint-plugin-standard" |
| 11017 | "mocha" | 10931 | "mocha" |
| 11018 | "nyc"))))))) | 10932 | "nyc"))))))) |
| 11019 | (inputs `(("node-ee-first" ,node-ee-first-1.1.1))) | 10933 | (inputs (list node-ee-first-1.1.1)) |
| 11020 | (home-page "https://github.com/jshttp/on-finished#readme") | 10934 | (home-page "https://github.com/jshttp/on-finished#readme") |
| 11021 | (synopsis "Execute a callback when a request closes, finishes, or errors") | 10935 | (synopsis "Execute a callback when a request closes, finishes, or errors") |
| 11022 | (description | 10936 | (description |
| @@ -11044,7 +10958,7 @@ | |||
| 11044 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10958 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 11045 | (lambda _ | 10959 | (lambda _ |
| 11046 | (delete-dependencies '("ava" "xo"))))))) | 10960 | (delete-dependencies '("ava" "xo"))))))) |
| 11047 | (inputs `(("node-mimic-fn" ,node-mimic-fn-1.2.0))) | 10961 | (inputs (list node-mimic-fn-1.2.0)) |
| 11048 | (home-page "https://github.com/sindresorhus/onetime#readme") | 10962 | (home-page "https://github.com/sindresorhus/onetime#readme") |
| 11049 | (synopsis "Ensure a function is only called once") | 10963 | (synopsis "Ensure a function is only called once") |
| 11050 | (description "Ensure a function is only called once") | 10964 | (description "Ensure a function is only called once") |
| @@ -11069,12 +10983,12 @@ | |||
| 11069 | (add-after 'patch-dependencies 'delete-dev-dependencies | 10983 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 11070 | (lambda _ | 10984 | (lambda _ |
| 11071 | (delete-dependencies '("livescript" "mocha" "istanbul"))))))) | 10985 | (delete-dependencies '("livescript" "mocha" "istanbul"))))))) |
| 11072 | (inputs `(("node-fast-levenshtein" ,node-fast-levenshtein-2.0.6) | 10986 | (inputs (list node-fast-levenshtein-2.0.6 |
| 11073 | ("node-levn" ,node-levn-0.3.0) | 10987 | node-levn-0.3.0 |
| 11074 | ("node-type-check" ,node-type-check-0.3.2) | 10988 | node-type-check-0.3.2 |
| 11075 | ("node-word-wrap" ,node-word-wrap-1.2.3) | 10989 | node-word-wrap-1.2.3 |
| 11076 | ("node-deep-is" ,node-deep-is-0.1.4) | 10990 | node-deep-is-0.1.4 |
| 11077 | ("node-prelude-ls" ,node-prelude-ls-1.1.2))) | 10991 | node-prelude-ls-1.1.2)) |
| 11078 | (home-page "https://github.com/gkz/optionator") | 10992 | (home-page "https://github.com/gkz/optionator") |
| 11079 | (synopsis "option parsing and help generation") | 10993 | (synopsis "option parsing and help generation") |
| 11080 | (description "option parsing and help generation") | 10994 | (description "option parsing and help generation") |
| @@ -11246,7 +11160,7 @@ | |||
| 11246 | (add-after 'patch-dependencies 'delete-dev-dependencies | 11160 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 11247 | (lambda _ | 11161 | (lambda _ |
| 11248 | (delete-dependencies '("ava" "execa" "xo"))))))) | 11162 | (delete-dependencies '("ava" "execa" "xo"))))))) |
| 11249 | (inputs `(("node-callsites" ,node-callsites-3.1.0))) | 11163 | (inputs (list node-callsites-3.1.0)) |
| 11250 | (home-page "https://github.com/sindresorhus/parent-module#readme") | 11164 | (home-page "https://github.com/sindresorhus/parent-module#readme") |
| 11251 | (synopsis "Get the path of the parent module") | 11165 | (synopsis "Get the path of the parent module") |
| 11252 | (description "Get the path of the parent module") | 11166 | (description "Get the path of the parent module") |
| @@ -11271,10 +11185,8 @@ | |||
| 11271 | (add-after 'patch-dependencies 'delete-dev-dependencies | 11185 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 11272 | (lambda _ | 11186 | (lambda _ |
| 11273 | (delete-dependencies '("browserify" "lodash" "mocha"))))))) | 11187 | (delete-dependencies '("browserify" "lodash" "mocha"))))))) |
| 11274 | (inputs `(("node-is-glob" ,node-is-glob-2.0.1) | 11188 | (inputs (list node-is-glob-2.0.1 node-is-extglob-1.0.0 |
| 11275 | ("node-is-extglob" ,node-is-extglob-1.0.0) | 11189 | node-is-dotfile-1.0.3 node-glob-base-0.3.0)) |
| 11276 | ("node-is-dotfile" ,node-is-dotfile-1.0.3) | ||
| 11277 | ("node-glob-base" ,node-glob-base-0.3.0))) | ||
| 11278 | (home-page "https://github.com/jonschlinkert/parse-glob") | 11190 | (home-page "https://github.com/jonschlinkert/parse-glob") |
| 11279 | (synopsis "Parse a glob pattern into an object of tokens.") | 11191 | (synopsis "Parse a glob pattern into an object of tokens.") |
| 11280 | (description "Parse a glob pattern into an object of tokens.") | 11192 | (description "Parse a glob pattern into an object of tokens.") |
| @@ -11299,10 +11211,9 @@ | |||
| 11299 | (add-after 'patch-dependencies 'delete-dev-dependencies | 11211 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 11300 | (lambda _ | 11212 | (lambda _ |
| 11301 | (delete-dependencies '("ava" "nyc" "xo"))))))) | 11213 | (delete-dependencies '("ava" "nyc" "xo"))))))) |
| 11302 | (inputs `(("node-lines-and-columns" ,node-lines-and-columns-1.2.4) | 11214 | (inputs (list node-lines-and-columns-1.2.4 |
| 11303 | ("node-json-parse-even-better-errors" ,node-json-parse-even-better-errors-2.3.1) | 11215 | node-json-parse-even-better-errors-2.3.1 node-error-ex-1.3.2 |
| 11304 | ("node-error-ex" ,node-error-ex-1.3.2) | 11216 | node-babel-code-frame-7.22.5)) |
| 11305 | ("node-babel-code-frame" ,node-babel-code-frame-7.22.5))) | ||
| 11306 | (home-page "https://github.com/sindresorhus/parse-json#readme") | 11217 | (home-page "https://github.com/sindresorhus/parse-json#readme") |
| 11307 | (synopsis "Parse JSON with more helpful errors") | 11218 | (synopsis "Parse JSON with more helpful errors") |
| 11308 | (description "Parse JSON with more helpful errors") | 11219 | (description "Parse JSON with more helpful errors") |
| @@ -11516,9 +11427,8 @@ | |||
| 11516 | "nyc" | 11427 | "nyc" |
| 11517 | "react-json-view" | 11428 | "react-json-view" |
| 11518 | "request"))))))) | 11429 | "request"))))))) |
| 11519 | (inputs `(("node-nodejieba" ,node-nodejieba-2.5.2) | 11430 | (inputs (list node-nodejieba-2.5.2 node-object-assign-4.1.1 |
| 11520 | ("node-object-assign" ,node-object-assign-4.1.1) | 11431 | node-commander-1.1.1)) |
| 11521 | ("node-commander" ,node-commander-1.1.1))) | ||
| 11522 | (home-page "http://pinyin.hotoo.me/") | 11432 | (home-page "http://pinyin.hotoo.me/") |
| 11523 | (synopsis "æ±è¯æ¼é³è½¬æ¢å·¥å ·ã") | 11433 | (synopsis "æ±è¯æ¼é³è½¬æ¢å·¥å ·ã") |
| 11524 | (description "æ±è¯æ¼é³è½¬æ¢å·¥å ·ã") | 11434 | (description "æ±è¯æ¼é³è½¬æ¢å·¥å ·ã") |
| @@ -11563,9 +11473,8 @@ | |||
| 11563 | '(#:tests? #f | 11473 | '(#:tests? #f |
| 11564 | #:phases (modify-phases %standard-phases | 11474 | #:phases (modify-phases %standard-phases |
| 11565 | (delete 'build)))) | 11475 | (delete 'build)))) |
| 11566 | (inputs `(("node-supports-color" ,node-supports-color-5.5.0) | 11476 | (inputs (list node-supports-color-5.5.0 node-source-map-0.6.1 |
| 11567 | ("node-source-map" ,node-source-map-0.6.1) | 11477 | node-chalk-2.4.2)) |
| 11568 | ("node-chalk" ,node-chalk-2.4.2))) | ||
| 11569 | (home-page "https://postcss.org/") | 11478 | (home-page "https://postcss.org/") |
| 11570 | (synopsis "Tool for transforming styles with JS plugins") | 11479 | (synopsis "Tool for transforming styles with JS plugins") |
| 11571 | (description "Tool for transforming styles with JS plugins") | 11480 | (description "Tool for transforming styles with JS plugins") |
| @@ -11645,8 +11554,7 @@ | |||
| 11645 | (delete-dependencies '("gulp" "gulp-istanbul" | 11554 | (delete-dependencies '("gulp" "gulp-istanbul" |
| 11646 | "gulp-jshint" "gulp-mocha" | 11555 | "gulp-jshint" "gulp-mocha" |
| 11647 | "jshint-stylish" "mocha"))))))) | 11556 | "jshint-stylish" "mocha"))))))) |
| 11648 | (inputs `(("node-nanoseconds" ,node-nanoseconds-0.1.0) | 11557 | (inputs (list node-nanoseconds-0.1.0 node-is-number-2.1.0)) |
| 11649 | ("node-is-number" ,node-is-number-2.1.0))) | ||
| 11650 | (home-page "https://github.com/jonschlinkert/pretty-time") | 11558 | (home-page "https://github.com/jonschlinkert/pretty-time") |
| 11651 | (synopsis | 11559 | (synopsis |
| 11652 | "Easily format the time from node.js `process.hrtime`. Works with timescales ranging from weeks to nanoseconds.") | 11560 | "Easily format the time from node.js `process.hrtime`. Works with timescales ranging from weeks to nanoseconds.") |
| @@ -11730,9 +11638,8 @@ | |||
| 11730 | "react" | 11638 | "react" |
| 11731 | "uglifyify" | 11639 | "uglifyify" |
| 11732 | "uglifyjs"))))))) | 11640 | "uglifyjs"))))))) |
| 11733 | (inputs `(("node-react-is" ,node-react-is-16.13.1) | 11641 | (inputs (list node-react-is-16.13.1 node-object-assign-4.1.1 |
| 11734 | ("node-object-assign" ,node-object-assign-4.1.1) | 11642 | node-loose-envify-1.4.0)) |
| 11735 | ("node-loose-envify" ,node-loose-envify-1.4.0))) | ||
| 11736 | (home-page "https://facebook.github.io/react/") | 11643 | (home-page "https://facebook.github.io/react/") |
| 11737 | (synopsis "Runtime type checking for React props and similar objects.") | 11644 | (synopsis "Runtime type checking for React props and similar objects.") |
| 11738 | (description "Runtime type checking for React props and similar objects.") | 11645 | (description "Runtime type checking for React props and similar objects.") |
| @@ -11759,7 +11666,7 @@ | |||
| 11759 | (delete-dependencies '("@prosemirror/buildhelper" | 11666 | (delete-dependencies '("@prosemirror/buildhelper" |
| 11760 | "prosemirror-model" | 11667 | "prosemirror-model" |
| 11761 | "prosemirror-test-builder"))))))) | 11668 | "prosemirror-test-builder"))))))) |
| 11762 | (inputs `(("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3))) | 11669 | (inputs (list node-prosemirror-transform-1.7.3)) |
| 11763 | (home-page "https://github.com/prosemirror/prosemirror-changeset#readme") | 11670 | (home-page "https://github.com/prosemirror/prosemirror-changeset#readme") |
| 11764 | (synopsis | 11671 | (synopsis |
| 11765 | "Distills a series of editing steps into deleted and added ranges") | 11672 | "Distills a series of editing steps into deleted and added ranges") |
| @@ -11787,9 +11694,9 @@ | |||
| 11787 | (lambda _ | 11694 | (lambda _ |
| 11788 | (delete-dependencies '("@prosemirror/buildhelper" | 11695 | (delete-dependencies '("@prosemirror/buildhelper" |
| 11789 | "prosemirror-test-builder"))))))) | 11696 | "prosemirror-test-builder"))))))) |
| 11790 | (inputs `(("node-prosemirror-state" ,node-prosemirror-state-1.4.3) | 11697 | (inputs (list node-prosemirror-state-1.4.3 |
| 11791 | ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3) | 11698 | node-prosemirror-transform-1.7.3 |
| 11792 | ("node-prosemirror-model" ,node-prosemirror-model-1.19.2))) | 11699 | node-prosemirror-model-1.19.2)) |
| 11793 | (home-page "https://github.com/prosemirror/prosemirror-commands#readme") | 11700 | (home-page "https://github.com/prosemirror/prosemirror-commands#readme") |
| 11794 | (synopsis "Editing commands for ProseMirror") | 11701 | (synopsis "Editing commands for ProseMirror") |
| 11795 | (description "Editing commands for ProseMirror") | 11702 | (description "Editing commands for ProseMirror") |
| @@ -11836,21 +11743,21 @@ | |||
| 11836 | "react-dom" | 11743 | "react-dom" |
| 11837 | "rimraf" | 11744 | "rimraf" |
| 11838 | "vite"))))))) | 11745 | "vite"))))))) |
| 11839 | (inputs `(("node-unstated" ,node-unstated-2.1.1) | 11746 | (inputs (list node-unstated-2.1.1 |
| 11840 | ("node-react-json-tree" ,node-react-json-tree-0.11.2) | 11747 | node-react-json-tree-0.11.2 |
| 11841 | ("node-react-dock" ,node-react-dock-0.2.4) | 11748 | node-react-dock-0.2.4 |
| 11842 | ("node-prosemirror-state" ,node-prosemirror-state-1.4.3) | 11749 | node-prosemirror-state-1.4.3 |
| 11843 | ("node-prosemirror-model" ,node-prosemirror-model-1.19.2) | 11750 | node-prosemirror-model-1.19.2 |
| 11844 | ("node-prop-types" ,node-prop-types-15.8.1) | 11751 | node-prop-types-15.8.1 |
| 11845 | ("node-nanoid" ,node-nanoid-2.1.11) | 11752 | node-nanoid-2.1.11 |
| 11846 | ("node-jsondiffpatch" ,node-jsondiffpatch-0.4.1) | 11753 | node-jsondiffpatch-0.4.1 |
| 11847 | ("node-html" ,node-html-1.0.0) | 11754 | node-html-1.0.0 |
| 11848 | ("node-emotion-styled" ,node-emotion-styled-11.11.0) | 11755 | node-emotion-styled-11.11.0 |
| 11849 | ("node-emotion-react" ,node-emotion-react-11.11.1) | 11756 | node-emotion-react-11.11.1 |
| 11850 | ("node-emotion-css" ,node-emotion-css-11.11.2) | 11757 | node-emotion-css-11.11.2 |
| 11851 | ("node-babel-runtime" ,node-babel-runtime-7.22.5) | 11758 | node-babel-runtime-7.22.5 |
| 11852 | ("node-react-dom" ,node-react-dom-18.2.0) | 11759 | node-react-dom-18.2.0 |
| 11853 | ("node-react" ,node-react-18.2.0))) | 11760 | node-react-18.2.0)) |
| 11854 | (home-page "https://github.com/d4rkr00t/prosemirror-dev-tools#readme") | 11761 | (home-page "https://github.com/d4rkr00t/prosemirror-dev-tools#readme") |
| 11855 | (synopsis "Dev Tools for ProseMirror") | 11762 | (synopsis "Dev Tools for ProseMirror") |
| 11856 | (description "Dev Tools for ProseMirror") | 11763 | (description "Dev Tools for ProseMirror") |
| @@ -11875,9 +11782,8 @@ | |||
| 11875 | (add-after 'patch-dependencies 'delete-dev-dependencies | 11782 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 11876 | (lambda _ | 11783 | (lambda _ |
| 11877 | (delete-dependencies '("@prosemirror/buildhelper"))))))) | 11784 | (delete-dependencies '("@prosemirror/buildhelper"))))))) |
| 11878 | (inputs `(("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3) | 11785 | (inputs (list node-prosemirror-transform-1.7.3 |
| 11879 | ("node-prosemirror-view" ,node-prosemirror-view-1.31.5) | 11786 | node-prosemirror-view-1.31.5 node-prosemirror-state-1.4.3)) |
| 11880 | ("node-prosemirror-state" ,node-prosemirror-state-1.4.3))) | ||
| 11881 | (home-page "https://github.com/prosemirror/prosemirror-dropcursor#readme") | 11787 | (home-page "https://github.com/prosemirror/prosemirror-dropcursor#readme") |
| 11882 | (synopsis "Drop cursor plugin for ProseMirror") | 11788 | (synopsis "Drop cursor plugin for ProseMirror") |
| 11883 | (description "Drop cursor plugin for ProseMirror") | 11789 | (description "Drop cursor plugin for ProseMirror") |
| @@ -11902,10 +11808,8 @@ | |||
| 11902 | (add-after 'patch-dependencies 'delete-dev-dependencies | 11808 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 11903 | (lambda _ | 11809 | (lambda _ |
| 11904 | (delete-dependencies '("@prosemirror/buildhelper"))))))) | 11810 | (delete-dependencies '("@prosemirror/buildhelper"))))))) |
| 11905 | (inputs `(("node-prosemirror-view" ,node-prosemirror-view-1.31.5) | 11811 | (inputs (list node-prosemirror-view-1.31.5 node-prosemirror-state-1.4.3 |
| 11906 | ("node-prosemirror-state" ,node-prosemirror-state-1.4.3) | 11812 | node-prosemirror-model-1.19.2 node-prosemirror-keymap-1.2.2)) |
| 11907 | ("node-prosemirror-model" ,node-prosemirror-model-1.19.2) | ||
| 11908 | ("node-prosemirror-keymap" ,node-prosemirror-keymap-1.2.2))) | ||
| 11909 | (home-page "https://github.com/prosemirror/prosemirror-gapcursor#readme") | 11813 | (home-page "https://github.com/prosemirror/prosemirror-gapcursor#readme") |
| 11910 | (synopsis | 11814 | (synopsis |
| 11911 | "ProseMirror plugin for cursors at normally impossible-to-reach positions") | 11815 | "ProseMirror plugin for cursors at normally impossible-to-reach positions") |
| @@ -11933,10 +11837,9 @@ | |||
| 11933 | (lambda _ | 11837 | (lambda _ |
| 11934 | (delete-dependencies '("@prosemirror/buildhelper" | 11838 | (delete-dependencies '("@prosemirror/buildhelper" |
| 11935 | "prosemirror-test-builder"))))))) | 11839 | "prosemirror-test-builder"))))))) |
| 11936 | (inputs `(("node-rope-sequence" ,node-rope-sequence-1.3.4) | 11840 | (inputs (list node-rope-sequence-1.3.4 node-prosemirror-view-1.31.5 |
| 11937 | ("node-prosemirror-view" ,node-prosemirror-view-1.31.5) | 11841 | node-prosemirror-transform-1.7.3 |
| 11938 | ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3) | 11842 | node-prosemirror-state-1.4.3)) |
| 11939 | ("node-prosemirror-state" ,node-prosemirror-state-1.4.3))) | ||
| 11940 | (home-page "https://github.com/prosemirror/prosemirror-history#readme") | 11843 | (home-page "https://github.com/prosemirror/prosemirror-history#readme") |
| 11941 | (synopsis "Undo history for ProseMirror") | 11844 | (synopsis "Undo history for ProseMirror") |
| 11942 | (description "Undo history for ProseMirror") | 11845 | (description "Undo history for ProseMirror") |
| @@ -11961,8 +11864,8 @@ | |||
| 11961 | (add-after 'patch-dependencies 'delete-dev-dependencies | 11864 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 11962 | (lambda _ | 11865 | (lambda _ |
| 11963 | (delete-dependencies '("@prosemirror/buildhelper"))))))) | 11866 | (delete-dependencies '("@prosemirror/buildhelper"))))))) |
| 11964 | (inputs `(("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3) | 11867 | (inputs (list node-prosemirror-transform-1.7.3 |
| 11965 | ("node-prosemirror-state" ,node-prosemirror-state-1.4.3))) | 11868 | node-prosemirror-state-1.4.3)) |
| 11966 | (home-page "https://github.com/prosemirror/prosemirror-inputrules#readme") | 11869 | (home-page "https://github.com/prosemirror/prosemirror-inputrules#readme") |
| 11967 | (synopsis "Automatic transforms on text input for ProseMirror") | 11870 | (synopsis "Automatic transforms on text input for ProseMirror") |
| 11968 | (description "Automatic transforms on text input for ProseMirror") | 11871 | (description "Automatic transforms on text input for ProseMirror") |
| @@ -12017,8 +11920,7 @@ | |||
| 12017 | (lambda _ | 11920 | (lambda _ |
| 12018 | (delete-dependencies '("@prosemirror/buildhelper" | 11921 | (delete-dependencies '("@prosemirror/buildhelper" |
| 12019 | "prosemirror-test-builder"))))))) | 11922 | "prosemirror-test-builder"))))))) |
| 12020 | (inputs `(("node-prosemirror-state" ,node-prosemirror-state-1.4.3) | 11923 | (inputs (list node-prosemirror-state-1.4.3 node-w3c-keyname-2.2.8)) |
| 12021 | ("node-w3c-keyname" ,node-w3c-keyname-2.2.8))) | ||
| 12022 | (home-page "https://github.com/prosemirror/prosemirror-keymap#readme") | 11924 | (home-page "https://github.com/prosemirror/prosemirror-keymap#readme") |
| 12023 | (synopsis "Keymap plugin for ProseMirror") | 11925 | (synopsis "Keymap plugin for ProseMirror") |
| 12024 | (description "Keymap plugin for ProseMirror") | 11926 | (description "Keymap plugin for ProseMirror") |
| @@ -12071,7 +11973,7 @@ | |||
| 12071 | (delete-dependencies '("@prosemirror/buildhelper" | 11973 | (delete-dependencies '("@prosemirror/buildhelper" |
| 12072 | "jsdom" | 11974 | "jsdom" |
| 12073 | "prosemirror-test-builder"))))))) | 11975 | "prosemirror-test-builder"))))))) |
| 12074 | (inputs `(("node-orderedmap" ,node-orderedmap-2.1.1))) | 11976 | (inputs (list node-orderedmap-2.1.1)) |
| 12075 | (home-page "https://github.com/prosemirror/prosemirror-model#readme") | 11977 | (home-page "https://github.com/prosemirror/prosemirror-model#readme") |
| 12076 | (synopsis "ProseMirror's document model") | 11978 | (synopsis "ProseMirror's document model") |
| 12077 | (description "ProseMirror's document model") | 11979 | (description "ProseMirror's document model") |
| @@ -12098,9 +12000,9 @@ | |||
| 12098 | (delete-dependencies '("prosemirror-state" | 12000 | (delete-dependencies '("prosemirror-state" |
| 12099 | "@prosemirror/buildhelper" | 12001 | "@prosemirror/buildhelper" |
| 12100 | "prosemirror-test-builder"))))))) | 12002 | "prosemirror-test-builder"))))))) |
| 12101 | (inputs `(("node-prosemirror-state" ,node-prosemirror-state-1.4.3) | 12003 | (inputs (list node-prosemirror-state-1.4.3 |
| 12102 | ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3) | 12004 | node-prosemirror-transform-1.7.3 |
| 12103 | ("node-prosemirror-model" ,node-prosemirror-model-1.19.2))) | 12005 | node-prosemirror-model-1.19.2)) |
| 12104 | (home-page "https://github.com/prosemirror/prosemirror-schema-list#readme") | 12006 | (home-page "https://github.com/prosemirror/prosemirror-schema-list#readme") |
| 12105 | (synopsis "List-related schema elements and commands for ProseMirror") | 12007 | (synopsis "List-related schema elements and commands for ProseMirror") |
| 12106 | (description "List-related schema elements and commands for ProseMirror") | 12008 | (description "List-related schema elements and commands for ProseMirror") |
| @@ -12154,9 +12056,9 @@ | |||
| 12154 | "prosemirror-test-builder" | 12056 | "prosemirror-test-builder" |
| 12155 | ;; Remove to avoid circular reference | 12057 | ;; Remove to avoid circular reference |
| 12156 | "prosemirror-view"))))))) | 12058 | "prosemirror-view"))))))) |
| 12157 | (inputs `( ;("node-prosemirror-view" ,node-prosemirror-view-1.31.5) | 12059 | (inputs (list ;("node-prosemirror-view" ,node-prosemirror-view-1.31.5) |
| 12158 | ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3) | 12060 | node-prosemirror-transform-1.7.3 |
| 12159 | ("node-prosemirror-model" ,node-prosemirror-model-1.19.2))) | 12061 | node-prosemirror-model-1.19.2)) |
| 12160 | (home-page "https://github.com/prosemirror/prosemirror-state#readme") | 12062 | (home-page "https://github.com/prosemirror/prosemirror-state#readme") |
| 12161 | (synopsis "ProseMirror editor state") | 12063 | (synopsis "ProseMirror editor state") |
| 12162 | (description "ProseMirror editor state") | 12064 | (description "ProseMirror editor state") |
| @@ -12196,11 +12098,10 @@ | |||
| 12196 | "typescript" | 12098 | "typescript" |
| 12197 | "vite" | 12099 | "vite" |
| 12198 | "vitest"))))))) | 12100 | "vitest"))))))) |
| 12199 | (inputs `(("node-prosemirror-view" ,node-prosemirror-view-1.31.5) | 12101 | (inputs (list node-prosemirror-view-1.31.5 |
| 12200 | ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3) | 12102 | node-prosemirror-transform-1.7.3 |
| 12201 | ("node-prosemirror-state" ,node-prosemirror-state-1.4.3) | 12103 | node-prosemirror-state-1.4.3 node-prosemirror-model-1.19.2 |
| 12202 | ("node-prosemirror-model" ,node-prosemirror-model-1.19.2) | 12104 | node-prosemirror-keymap-1.2.2)) |
| 12203 | ("node-prosemirror-keymap" ,node-prosemirror-keymap-1.2.2))) | ||
| 12204 | (home-page "https://www.npmjs.com/package/node-prosemirror-tables") | 12105 | (home-page "https://www.npmjs.com/package/node-prosemirror-tables") |
| 12205 | (synopsis "ProseMirror's rowspan/colspan tables component") | 12106 | (synopsis "ProseMirror's rowspan/colspan tables component") |
| 12206 | (description "ProseMirror's rowspan/colspan tables component") | 12107 | (description "ProseMirror's rowspan/colspan tables component") |
| @@ -12252,7 +12153,7 @@ | |||
| 12252 | (lambda _ | 12153 | (lambda _ |
| 12253 | (delete-dependencies '("@prosemirror/buildhelper" | 12154 | (delete-dependencies '("@prosemirror/buildhelper" |
| 12254 | "prosemirror-test-builder"))))))) | 12155 | "prosemirror-test-builder"))))))) |
| 12255 | (inputs `(("node-prosemirror-model" ,node-prosemirror-model-1.19.2))) | 12156 | (inputs (list node-prosemirror-model-1.19.2)) |
| 12256 | (home-page "https://github.com/prosemirror/prosemirror-transform#readme") | 12157 | (home-page "https://github.com/prosemirror/prosemirror-transform#readme") |
| 12257 | (synopsis "ProseMirror document transformations") | 12158 | (synopsis "ProseMirror document transformations") |
| 12258 | (description "ProseMirror document transformations") | 12159 | (description "ProseMirror document transformations") |
| @@ -12344,9 +12245,8 @@ | |||
| 12344 | (lambda _ | 12245 | (lambda _ |
| 12345 | (delete-dependencies '("@prosemirror/buildhelper" | 12246 | (delete-dependencies '("@prosemirror/buildhelper" |
| 12346 | "prosemirror-test-builder"))))))) | 12247 | "prosemirror-test-builder"))))))) |
| 12347 | (inputs `(("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3) | 12248 | (inputs (list node-prosemirror-transform-1.7.3 |
| 12348 | ("node-prosemirror-state" ,node-prosemirror-state-1.4.3) | 12249 | node-prosemirror-state-1.4.3 node-prosemirror-model-1.19.2)) |
| 12349 | ("node-prosemirror-model" ,node-prosemirror-model-1.19.2))) | ||
| 12350 | (home-page "https://github.com/prosemirror/prosemirror-view#readme") | 12250 | (home-page "https://github.com/prosemirror/prosemirror-view#readme") |
| 12351 | (synopsis "ProseMirror's view component") | 12251 | (synopsis "ProseMirror's view component") |
| 12352 | (description "ProseMirror's view component") | 12252 | (description "ProseMirror's view component") |
| @@ -12381,8 +12281,7 @@ | |||
| 12381 | "eslint-plugin-standard" | 12281 | "eslint-plugin-standard" |
| 12382 | "mocha" | 12282 | "mocha" |
| 12383 | "nyc"))))))) | 12283 | "nyc"))))))) |
| 12384 | (inputs `(("node-ipaddr-js" ,node-ipaddr-js-1.9.1) | 12284 | (inputs (list node-ipaddr-js-1.9.1 node-forwarded-0.2.0)) |
| 12385 | ("node-forwarded" ,node-forwarded-0.2.0))) | ||
| 12386 | (home-page "https://github.com/jshttp/proxy-addr#readme") | 12285 | (home-page "https://github.com/jshttp/proxy-addr#readme") |
| 12387 | (synopsis "Determine address of proxied request") | 12286 | (synopsis "Determine address of proxied request") |
| 12388 | (description "Determine address of proxied request") | 12287 | (description "Determine address of proxied request") |
| @@ -12504,7 +12403,7 @@ | |||
| 12504 | "safe-publish-latest" | 12403 | "safe-publish-latest" |
| 12505 | "safer-buffer" | 12404 | "safer-buffer" |
| 12506 | "tape"))))))) | 12405 | "tape"))))))) |
| 12507 | (inputs `(("node-side-channel" ,node-side-channel-1.0.4))) | 12406 | (inputs (list node-side-channel-1.0.4)) |
| 12508 | (home-page "https://github.com/ljharb/qs") | 12407 | (home-page "https://github.com/ljharb/qs") |
| 12509 | (synopsis | 12408 | (synopsis |
| 12510 | "A querystring parser that supports nesting and arrays, with a depth limit") | 12409 | "A querystring parser that supports nesting and arrays, with a depth limit") |
| @@ -12569,9 +12468,8 @@ | |||
| 12569 | (lambda _ | 12468 | (lambda _ |
| 12570 | (delete-dependencies '("ansi-bold" "benchmarked" "glob" | 12469 | (delete-dependencies '("ansi-bold" "benchmarked" "glob" |
| 12571 | "gulp-format-md" "mocha"))))))) | 12470 | "gulp-format-md" "mocha"))))))) |
| 12572 | (inputs `(("node-math-random" ,node-math-random-1.0.4) | 12471 | (inputs (list node-math-random-1.0.4 node-kind-of-6.0.3 |
| 12573 | ("node-kind-of" ,node-kind-of-6.0.3) | 12472 | node-is-number-4.0.0)) |
| 12574 | ("node-is-number" ,node-is-number-4.0.0))) | ||
| 12575 | (home-page "https://github.com/jonschlinkert/randomatic") | 12473 | (home-page "https://github.com/jonschlinkert/randomatic") |
| 12576 | (synopsis | 12474 | (synopsis |
| 12577 | "Generate randomized strings of a specified length using simple character sequences. The original generate-password.") | 12475 | "Generate randomized strings of a specified length using simple character sequences. The original generate-password.") |
| @@ -12639,10 +12537,8 @@ | |||
| 12639 | "nyc" | 12537 | "nyc" |
| 12640 | "readable-stream" | 12538 | "readable-stream" |
| 12641 | "safe-buffer"))))))) | 12539 | "safe-buffer"))))))) |
| 12642 | (inputs `(("node-unpipe" ,node-unpipe-1.0.0) | 12540 | (inputs (list node-unpipe-1.0.0 node-iconv-lite-0.4.24 |
| 12643 | ("node-iconv-lite" ,node-iconv-lite-0.4.24) | 12541 | node-http-errors-2.0.0 node-bytes-3.1.2)) |
| 12644 | ("node-http-errors" ,node-http-errors-2.0.0) | ||
| 12645 | ("node-bytes" ,node-bytes-3.1.2))) | ||
| 12646 | (home-page "https://github.com/stream-utils/raw-body#readme") | 12542 | (home-page "https://github.com/stream-utils/raw-body#readme") |
| 12647 | (synopsis "Get and validate the raw body of a readable stream.") | 12543 | (synopsis "Get and validate the raw body of a readable stream.") |
| 12648 | (description "Get and validate the raw body of a readable stream.") | 12544 | (description "Get and validate the raw body of a readable stream.") |
| @@ -12663,9 +12559,8 @@ | |||
| 12663 | '(#:tests? #f | 12559 | '(#:tests? #f |
| 12664 | #:phases (modify-phases %standard-phases | 12560 | #:phases (modify-phases %standard-phases |
| 12665 | (delete 'build)))) | 12561 | (delete 'build)))) |
| 12666 | (inputs `(("node-prop-types" ,node-prop-types-15.8.1) | 12562 | (inputs (list node-prop-types-15.8.1 node-object-assign-4.1.1 |
| 12667 | ("node-object-assign" ,node-object-assign-4.1.1) | 12563 | node-loose-envify-1.4.0)) |
| 12668 | ("node-loose-envify" ,node-loose-envify-1.4.0))) | ||
| 12669 | (home-page "https://reactjs.org/") | 12564 | (home-page "https://reactjs.org/") |
| 12670 | (synopsis "React is a JavaScript library for building user interfaces.") | 12565 | (synopsis "React is a JavaScript library for building user interfaces.") |
| 12671 | (description "React is a JavaScript library for building user interfaces.") | 12566 | (description "React is a JavaScript library for building user interfaces.") |
| @@ -12686,7 +12581,7 @@ | |||
| 12686 | '(#:tests? #f | 12581 | '(#:tests? #f |
| 12687 | #:phases (modify-phases %standard-phases | 12582 | #:phases (modify-phases %standard-phases |
| 12688 | (delete 'build)))) | 12583 | (delete 'build)))) |
| 12689 | (inputs `(("node-loose-envify" ,node-loose-envify-1.4.0))) | 12584 | (inputs (list node-loose-envify-1.4.0)) |
| 12690 | (home-page "https://reactjs.org/") | 12585 | (home-page "https://reactjs.org/") |
| 12691 | (synopsis "React is a JavaScript library for building user interfaces.") | 12586 | (synopsis "React is a JavaScript library for building user interfaces.") |
| 12692 | (description "React is a JavaScript library for building user interfaces.") | 12587 | (description "React is a JavaScript library for building user interfaces.") |
| @@ -12722,10 +12617,8 @@ | |||
| 12722 | "eslint-plugin-flowtype" | 12617 | "eslint-plugin-flowtype" |
| 12723 | "flow-bin" | 12618 | "flow-bin" |
| 12724 | "pre-commit"))))))) | 12619 | "pre-commit"))))))) |
| 12725 | (inputs `(("node-pure-color" ,node-pure-color-1.3.0) | 12620 | (inputs (list node-pure-color-1.3.0 node-lodash-flow-3.5.0 |
| 12726 | ("node-lodash-flow" ,node-lodash-flow-3.5.0) | 12621 | node-lodash-curry-4.1.1 node-base16-1.0.0)) |
| 12727 | ("node-lodash-curry" ,node-lodash-curry-4.1.1) | ||
| 12728 | ("node-base16" ,node-base16-1.0.0))) | ||
| 12729 | (home-page "https://github.com/alexkuz/react-base16-styling#readme") | 12622 | (home-page "https://github.com/alexkuz/react-base16-styling#readme") |
| 12730 | (synopsis "React styling with base16 color scheme support") | 12623 | (synopsis "React styling with base16 color scheme support") |
| 12731 | (description "React styling with base16 color scheme support") | 12624 | (description "React styling with base16 color scheme support") |
| @@ -12776,10 +12669,8 @@ | |||
| 12776 | "webpack-dev-server" | 12669 | "webpack-dev-server" |
| 12777 | "babel-runtime" | 12670 | "babel-runtime" |
| 12778 | "react"))))))) | 12671 | "react"))))))) |
| 12779 | (inputs `(("node-prop-types" ,node-prop-types-15.8.1) | 12672 | (inputs (list node-prop-types-15.8.1 node-lodash-debounce-3.1.1 |
| 12780 | ("node-lodash-debounce" ,node-lodash-debounce-3.1.1) | 12673 | node-babel-runtime-6.26.0 node-react-18.2.0)) |
| 12781 | ("node-babel-runtime" ,node-babel-runtime-6.26.0) | ||
| 12782 | ("node-react" ,node-react-18.2.0))) | ||
| 12783 | (home-page "https://github.com/alexkuz/react-dock") | 12674 | (home-page "https://github.com/alexkuz/react-dock") |
| 12784 | (synopsis "Resizable dockable react component") | 12675 | (synopsis "Resizable dockable react component") |
| 12785 | (description "Resizable dockable react component") | 12676 | (description "Resizable dockable react component") |
| @@ -12804,11 +12695,9 @@ | |||
| 12804 | (add-after 'patch-dependencies 'delete-dev-dependencies | 12695 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 12805 | (lambda _ | 12696 | (lambda _ |
| 12806 | (delete-dependencies '("react"))))))) | 12697 | (delete-dependencies '("react"))))))) |
| 12807 | (inputs `(("node-scheduler" ,node-scheduler-0.19.1) | 12698 | (inputs (list node-scheduler-0.19.1 node-prop-types-15.8.1 |
| 12808 | ("node-prop-types" ,node-prop-types-15.8.1) | 12699 | node-object-assign-4.1.1 node-loose-envify-1.4.0 |
| 12809 | ("node-object-assign" ,node-object-assign-4.1.1) | 12700 | node-react-16.14.0)) |
| 12810 | ("node-loose-envify" ,node-loose-envify-1.4.0) | ||
| 12811 | ("node-react" ,node-react-16.14.0))) | ||
| 12812 | (home-page "https://reactjs.org/") | 12701 | (home-page "https://reactjs.org/") |
| 12813 | (synopsis "React package for working with the DOM.") | 12702 | (synopsis "React package for working with the DOM.") |
| 12814 | (description "React package for working with the DOM.") | 12703 | (description "React package for working with the DOM.") |
| @@ -12833,9 +12722,8 @@ | |||
| 12833 | (add-after 'patch-dependencies 'delete-dev-dependencies | 12722 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 12834 | (lambda _ | 12723 | (lambda _ |
| 12835 | (delete-dependencies '("react"))))))) | 12724 | (delete-dependencies '("react"))))))) |
| 12836 | (inputs `(("node-scheduler" ,node-scheduler-0.23.0) | 12725 | (inputs (list node-scheduler-0.23.0 node-loose-envify-1.4.0 |
| 12837 | ("node-loose-envify" ,node-loose-envify-1.4.0) | 12726 | node-react-18.2.0)) |
| 12838 | ("node-react" ,node-react-18.2.0))) | ||
| 12839 | (home-page "https://reactjs.org/") | 12727 | (home-page "https://reactjs.org/") |
| 12840 | (synopsis "React package for working with the DOM.") | 12728 | (synopsis "React package for working with the DOM.") |
| 12841 | (description "React package for working with the DOM.") | 12729 | (description "React package for working with the DOM.") |
| @@ -12861,10 +12749,9 @@ | |||
| 12861 | (lambda _ | 12749 | (lambda _ |
| 12862 | (delete-dependencies '("@types/react" "dtslint" | 12750 | (delete-dependencies '("@types/react" "dtslint" |
| 12863 | "emotion" "react"))))))) | 12751 | "emotion" "react"))))))) |
| 12864 | (inputs `(("node-create-emotion-styled" ,node-create-emotion-styled-9.2.8) | 12752 | (inputs (list node-create-emotion-styled-9.2.8 |
| 12865 | ("node-babel-plugin-emotion" ,node-babel-plugin-emotion-9.2.11) | 12753 | node-babel-plugin-emotion-9.2.11 node-react-16.14.0 |
| 12866 | ("node-react" ,node-react-16.14.0) | 12754 | node-emotion-9.2.12)) |
| 12867 | ("node-emotion" ,node-emotion-9.2.12))) | ||
| 12868 | (home-page "https://emotion.sh") | 12755 | (home-page "https://emotion.sh") |
| 12869 | (synopsis "The Next Generation of CSS-in-JS, for React projects.") | 12756 | (synopsis "The Next Generation of CSS-in-JS, for React projects.") |
| 12870 | (description "The Next Generation of CSS-in-JS, for React projects.") | 12757 | (description "The Next Generation of CSS-in-JS, for React projects.") |
| @@ -12971,11 +12858,9 @@ | |||
| 12971 | "terser-webpack-plugin" | 12858 | "terser-webpack-plugin" |
| 12972 | "webpack" | 12859 | "webpack" |
| 12973 | "webpack-cli"))))))) | 12860 | "webpack-cli"))))))) |
| 12974 | (inputs `(("node-react-base16-styling" ,node-react-base16-styling-0.5.3) | 12861 | (inputs (list node-react-base16-styling-0.5.3 node-prop-types-15.8.1 |
| 12975 | ("node-prop-types" ,node-prop-types-15.8.1) | 12862 | node-babel-runtime-6.26.0 node-react-dom-16.14.0 |
| 12976 | ("node-babel-runtime" ,node-babel-runtime-6.26.0) | 12863 | node-react-16.14.0)) |
| 12977 | ("node-react-dom" ,node-react-dom-16.14.0) | ||
| 12978 | ("node-react" ,node-react-16.14.0))) | ||
| 12979 | (home-page "https://github.com/reduxjs/redux-devtools") | 12864 | (home-page "https://github.com/reduxjs/redux-devtools") |
| 12980 | (synopsis "React JSON Viewer Component, Extracted from redux-devtools") | 12865 | (synopsis "React JSON Viewer Component, Extracted from redux-devtools") |
| 12981 | (description "React JSON Viewer Component, Extracted from redux-devtools") | 12866 | (description "React JSON Viewer Component, Extracted from redux-devtools") |
| @@ -13032,10 +12917,8 @@ | |||
| 13032 | "rimraf" | 12917 | "rimraf" |
| 13033 | "terser" | 12918 | "terser" |
| 13034 | "typescript"))))))) | 12919 | "typescript"))))))) |
| 13035 | (inputs `(("node-use-latest" ,node-use-latest-1.2.1) | 12920 | (inputs (list node-use-latest-1.2.1 node-use-composed-ref-1.3.0 |
| 13036 | ("node-use-composed-ref" ,node-use-composed-ref-1.3.0) | 12921 | node-babel-runtime-7.22.5 node-react-18.2.0)) |
| 13037 | ("node-babel-runtime" ,node-babel-runtime-7.22.5) | ||
| 13038 | ("node-react" ,node-react-18.2.0))) | ||
| 13039 | (home-page "https://github.com/Andarist/react-textarea-autosize#readme") | 12922 | (home-page "https://github.com/Andarist/react-textarea-autosize#readme") |
| 13040 | (synopsis "textarea component for React which grows with content") | 12923 | (synopsis "textarea component for React which grows with content") |
| 13041 | (description "textarea component for React which grows with content") | 12924 | (description "textarea component for React which grows with content") |
| @@ -13097,10 +12980,8 @@ | |||
| 13097 | "rollup-plugin-node-resolve" | 12980 | "rollup-plugin-node-resolve" |
| 13098 | "rollup-plugin-replace" | 12981 | "rollup-plugin-replace" |
| 13099 | "rollup-plugin-terser"))))))) | 12982 | "rollup-plugin-terser"))))))) |
| 13100 | (inputs `(("node-memoize-one" ,node-memoize-one-5.2.1) | 12983 | (inputs (list node-memoize-one-5.2.1 node-babel-runtime-7.22.5 |
| 13101 | ("node-babel-runtime" ,node-babel-runtime-7.22.5) | 12984 | node-react-dom-18.2.0 node-react-18.2.0)) |
| 13102 | ("node-react-dom" ,node-react-dom-18.2.0) | ||
| 13103 | ("node-react" ,node-react-18.2.0))) | ||
| 13104 | (home-page "http://react-window.now.sh/") | 12985 | (home-page "http://react-window.now.sh/") |
| 13105 | (synopsis | 12986 | (synopsis |
| 13106 | "React components for efficiently rendering large, scrollable lists and tabular data") | 12987 | "React components for efficiently rendering large, scrollable lists and tabular data") |
| @@ -13132,13 +13013,13 @@ | |||
| 13132 | "nyc" | 13013 | "nyc" |
| 13133 | "tap" | 13014 | "tap" |
| 13134 | "tape"))))))) | 13015 | "tape"))))))) |
| 13135 | (inputs `(("node-util-deprecate" ,node-util-deprecate-1.0.2) | 13016 | (inputs (list node-util-deprecate-1.0.2 |
| 13136 | ("node-string-decoder" ,node-string-decoder-1.1.1) | 13017 | node-string-decoder-1.1.1 |
| 13137 | ("node-safe-buffer" ,node-safe-buffer-5.1.2) | 13018 | node-safe-buffer-5.1.2 |
| 13138 | ("node-process-nextick-args" ,node-process-nextick-args-2.0.1) | 13019 | node-process-nextick-args-2.0.1 |
| 13139 | ("node-isarray" ,node-isarray-1.0.0) | 13020 | node-isarray-1.0.0 |
| 13140 | ("node-inherits" ,node-inherits-2.0.4) | 13021 | node-inherits-2.0.4 |
| 13141 | ("node-core-util-is" ,node-core-util-is-1.0.3))) | 13022 | node-core-util-is-1.0.3)) |
| 13142 | (home-page "https://github.com/nodejs/readable-stream#readme") | 13023 | (home-page "https://github.com/nodejs/readable-stream#readme") |
| 13143 | (synopsis "Streams3, a user-land copy of the stream library from Node.js") | 13024 | (synopsis "Streams3, a user-land copy of the stream library from Node.js") |
| 13144 | (description | 13025 | (description |
| @@ -13182,9 +13063,8 @@ | |||
| 13182 | "tape" | 13063 | "tape" |
| 13183 | "tar-fs" | 13064 | "tar-fs" |
| 13184 | "util-promisify"))))))) | 13065 | "util-promisify"))))))) |
| 13185 | (inputs `(("node-util-deprecate" ,node-util-deprecate-1.0.2) | 13066 | (inputs (list node-util-deprecate-1.0.2 node-string-decoder-1.3.0 |
| 13186 | ("node-string-decoder" ,node-string-decoder-1.3.0) | 13067 | node-inherits-2.0.4)) |
| 13187 | ("node-inherits" ,node-inherits-2.0.4))) | ||
| 13188 | (home-page "https://github.com/nodejs/readable-stream#readme") | 13068 | (home-page "https://github.com/nodejs/readable-stream#readme") |
| 13189 | (synopsis "Streams3, a user-land copy of the stream library from Node.js") | 13069 | (synopsis "Streams3, a user-land copy of the stream library from Node.js") |
| 13190 | (description | 13070 | (description |
| @@ -13210,9 +13090,8 @@ | |||
| 13210 | (lambda _ | 13090 | (lambda _ |
| 13211 | (delete-dependencies '("nave" "proxyquire" "tap" | 13091 | (delete-dependencies '("nave" "proxyquire" "tap" |
| 13212 | "through2"))))))) | 13092 | "through2"))))))) |
| 13213 | (inputs `(("node-readable-stream" ,node-readable-stream-2.3.8) | 13093 | (inputs (list node-readable-stream-2.3.8 node-micromatch-3.1.10 |
| 13214 | ("node-micromatch" ,node-micromatch-3.1.10) | 13094 | node-graceful-fs-4.2.11)) |
| 13215 | ("node-graceful-fs" ,node-graceful-fs-4.2.11))) | ||
| 13216 | (home-page "https://github.com/paulmillr/readdirp") | 13095 | (home-page "https://github.com/paulmillr/readdirp") |
| 13217 | (synopsis "Recursive version of fs.readdir with streaming api.") | 13096 | (synopsis "Recursive version of fs.readdir with streaming api.") |
| 13218 | (description "Recursive version of fs.readdir with streaming api.") | 13097 | (description "Recursive version of fs.readdir with streaming api.") |
| @@ -13249,8 +13128,7 @@ | |||
| 13249 | "run-sequence" | 13128 | "run-sequence" |
| 13250 | "should" | 13129 | "should" |
| 13251 | "ts-universal"))))))) | 13130 | "ts-universal"))))))) |
| 13252 | (inputs `(("node-mkdirp" ,node-mkdirp-0.5.6) | 13131 | (inputs (list node-mkdirp-0.5.6 node-app-root-path-1.4.0)) |
| 13253 | ("node-app-root-path" ,node-app-root-path-1.4.0))) | ||
| 13254 | (home-page "https://github.com/realm-js/realm-utils#readme") | 13132 | (home-page "https://github.com/realm-js/realm-utils#readme") |
| 13255 | (synopsis | 13133 | (synopsis |
| 13256 | "Realm-js has a set of functionality that helps solving many problems or impediments related to Promises. Utilities live in this repository, apart from realm-js library. Typings included ### Install") | 13134 | "Realm-js has a set of functionality that helps solving many problems or impediments related to Promises. Utilities live in this repository, apart from realm-js library. Typings included ### Install") |
| @@ -13310,7 +13188,7 @@ | |||
| 13310 | (delete-dependencies '("ava" "fs-extra" "jsesc" | 13188 | (delete-dependencies '("ava" "fs-extra" "jsesc" |
| 13311 | "@unicode/unicode-14.0.0" | 13189 | "@unicode/unicode-14.0.0" |
| 13312 | "unicode-canonical-property-names-ecmascript"))))))) | 13190 | "unicode-canonical-property-names-ecmascript"))))))) |
| 13313 | (inputs `(("node-regenerate" ,node-regenerate-1.4.2))) | 13191 | (inputs (list node-regenerate-1.4.2)) |
| 13314 | (home-page | 13192 | (home-page |
| 13315 | "https://github.com/mathiasbynens/regenerate-unicode-properties") | 13193 | "https://github.com/mathiasbynens/regenerate-unicode-properties") |
| 13316 | (synopsis "Regenerate sets for Unicode properties and values.") | 13194 | (synopsis "Regenerate sets for Unicode properties and values.") |
| @@ -13384,7 +13262,7 @@ | |||
| 13384 | (delete-dependencies '("ansi-bold" "benchmarked" | 13262 | (delete-dependencies '("ansi-bold" "benchmarked" |
| 13385 | "gulp-format-md" "micromatch" | 13263 | "gulp-format-md" "micromatch" |
| 13386 | "should"))))))) | 13264 | "should"))))))) |
| 13387 | (inputs `(("node-is-equal-shallow" ,node-is-equal-shallow-0.1.3))) | 13265 | (inputs (list node-is-equal-shallow-0.1.3)) |
| 13388 | (home-page "https://github.com/jonschlinkert/regex-cache") | 13266 | (home-page "https://github.com/jonschlinkert/regex-cache") |
| 13389 | (synopsis | 13267 | (synopsis |
| 13390 | "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.") | 13268 | "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.") |
| @@ -13411,8 +13289,7 @@ | |||
| 13411 | (add-after 'patch-dependencies 'delete-dev-dependencies | 13289 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 13412 | (lambda _ | 13290 | (lambda _ |
| 13413 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 13291 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 13414 | (inputs `(("node-safe-regex" ,node-safe-regex-1.1.0) | 13292 | (inputs (list node-safe-regex-1.1.0 node-extend-shallow-3.0.2)) |
| 13415 | ("node-extend-shallow" ,node-extend-shallow-3.0.2))) | ||
| 13416 | (home-page "https://github.com/jonschlinkert/regex-not") | 13293 | (home-page "https://github.com/jonschlinkert/regex-not") |
| 13417 | (synopsis | 13294 | (synopsis |
| 13418 | "Create a javascript regular expression for matching everything except for the given string.") | 13295 | "Create a javascript regular expression for matching everything except for the given string.") |
| @@ -13444,12 +13321,12 @@ | |||
| 13444 | "mocha" | 13321 | "mocha" |
| 13445 | "regexpu-fixtures" | 13322 | "regexpu-fixtures" |
| 13446 | "@unicode/unicode-14.0.0"))))))) | 13323 | "@unicode/unicode-14.0.0"))))))) |
| 13447 | (inputs `(("node-unicode-match-property-value-ecmascript" ,node-unicode-match-property-value-ecmascript-2.1.0) | 13324 | (inputs (list node-unicode-match-property-value-ecmascript-2.1.0 |
| 13448 | ("node-unicode-match-property-ecmascript" ,node-unicode-match-property-ecmascript-2.0.0) | 13325 | node-unicode-match-property-ecmascript-2.0.0 |
| 13449 | ("node-regjsparser" ,node-regjsparser-0.7.0) | 13326 | node-regjsparser-0.7.0 |
| 13450 | ("node-regjsgen" ,node-regjsgen-0.5.2) | 13327 | node-regjsgen-0.5.2 |
| 13451 | ("node-regenerate-unicode-properties" ,node-regenerate-unicode-properties-9.0.0) | 13328 | node-regenerate-unicode-properties-9.0.0 |
| 13452 | ("node-regenerate" ,node-regenerate-1.4.2))) | 13329 | node-regenerate-1.4.2)) |
| 13453 | (home-page "https://mths.be/regexpu") | 13330 | (home-page "https://mths.be/regexpu") |
| 13454 | (synopsis | 13331 | (synopsis |
| 13455 | "regexpuâs core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.") | 13332 | "regexpuâs core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.") |
| @@ -13500,7 +13377,7 @@ | |||
| 13500 | (add-after 'patch-dependencies 'delete-dev-dependencies | 13377 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 13501 | (lambda _ | 13378 | (lambda _ |
| 13502 | (delete-dependencies '("regenerate" "unicode-11.0.0"))))))) | 13379 | (delete-dependencies '("regenerate" "unicode-11.0.0"))))))) |
| 13503 | (inputs `(("node-jsesc" ,node-jsesc-0.5.0))) | 13380 | (inputs (list node-jsesc-0.5.0)) |
| 13504 | (home-page "https://github.com/jviereck/regjsparser") | 13381 | (home-page "https://github.com/jviereck/regjsparser") |
| 13505 | (synopsis "Parsing the JavaScript's RegExp in JavaScript.") | 13382 | (synopsis "Parsing the JavaScript's RegExp in JavaScript.") |
| 13506 | (description "Parsing the JavaScript's RegExp in JavaScript.") | 13383 | (description "Parsing the JavaScript's RegExp in JavaScript.") |
| @@ -13624,26 +13501,26 @@ | |||
| 13624 | "standard" | 13501 | "standard" |
| 13625 | "tape" | 13502 | "tape" |
| 13626 | "taper"))))))) | 13503 | "taper"))))))) |
| 13627 | (inputs `(("node-uuid" ,node-uuid-3.4.0) | 13504 | (inputs (list node-uuid-3.4.0 |
| 13628 | ("node-tunnel-agent" ,node-tunnel-agent-0.6.0) | 13505 | node-tunnel-agent-0.6.0 |
| 13629 | ("node-tough-cookie" ,node-tough-cookie-2.5.0) | 13506 | node-tough-cookie-2.5.0 |
| 13630 | ("node-safe-buffer" ,node-safe-buffer-5.2.1) | 13507 | node-safe-buffer-5.2.1 |
| 13631 | ("node-qs" ,node-qs-6.5.3) | 13508 | node-qs-6.5.3 |
| 13632 | ("node-performance-now" ,node-performance-now-2.1.0) | 13509 | node-performance-now-2.1.0 |
| 13633 | ("node-oauth-sign" ,node-oauth-sign-0.9.0) | 13510 | node-oauth-sign-0.9.0 |
| 13634 | ("node-mime-types" ,node-mime-types-2.1.35) | 13511 | node-mime-types-2.1.35 |
| 13635 | ("node-json-stringify-safe" ,node-json-stringify-safe-5.0.1) | 13512 | node-json-stringify-safe-5.0.1 |
| 13636 | ("node-isstream" ,node-isstream-0.1.2) | 13513 | node-isstream-0.1.2 |
| 13637 | ("node-is-typedarray" ,node-is-typedarray-1.0.0) | 13514 | node-is-typedarray-1.0.0 |
| 13638 | ("node-http-signature" ,node-http-signature-1.2.0) | 13515 | node-http-signature-1.2.0 |
| 13639 | ("node-har-validator" ,node-har-validator-5.1.5) | 13516 | node-har-validator-5.1.5 |
| 13640 | ("node-form-data" ,node-form-data-2.3.3) | 13517 | node-form-data-2.3.3 |
| 13641 | ("node-forever-agent" ,node-forever-agent-0.6.1) | 13518 | node-forever-agent-0.6.1 |
| 13642 | ("node-extend" ,node-extend-3.0.2) | 13519 | node-extend-3.0.2 |
| 13643 | ("node-combined-stream" ,node-combined-stream-1.0.8) | 13520 | node-combined-stream-1.0.8 |
| 13644 | ("node-caseless" ,node-caseless-0.12.0) | 13521 | node-caseless-0.12.0 |
| 13645 | ("node-aws4" ,node-aws4-1.12.0) | 13522 | node-aws4-1.12.0 |
| 13646 | ("node-aws-sign2" ,node-aws-sign2-0.7.0))) | 13523 | node-aws-sign2-0.7.0)) |
| 13647 | (home-page "https://github.com/request/request#readme") | 13524 | (home-page "https://github.com/request/request#readme") |
| 13648 | (synopsis "Simplified HTTP request client.") | 13525 | (synopsis "Simplified HTTP request client.") |
| 13649 | (description "Simplified HTTP request client.") | 13526 | (description "Simplified HTTP request client.") |
| @@ -13709,9 +13586,8 @@ | |||
| 13709 | "tap" | 13586 | "tap" |
| 13710 | "tape" | 13587 | "tape" |
| 13711 | "tmp"))))))) | 13588 | "tmp"))))))) |
| 13712 | (inputs `(("node-supports-preserve-symlinks-flag" ,node-supports-preserve-symlinks-flag-1.0.0) | 13589 | (inputs (list node-supports-preserve-symlinks-flag-1.0.0 |
| 13713 | ("node-path-parse" ,node-path-parse-1.0.7) | 13590 | node-path-parse-1.0.7 node-is-core-module-2.12.1)) |
| 13714 | ("node-is-core-module" ,node-is-core-module-2.12.1))) | ||
| 13715 | (home-page "https://github.com/browserify/resolve#readme") | 13591 | (home-page "https://github.com/browserify/resolve#readme") |
| 13716 | (synopsis | 13592 | (synopsis |
| 13717 | "resolve like require.resolve() on behalf of files asynchronously and synchronously") | 13593 | "resolve like require.resolve() on behalf of files asynchronously and synchronously") |
| @@ -13786,8 +13662,7 @@ | |||
| 13786 | '(#:tests? #f | 13662 | '(#:tests? #f |
| 13787 | #:phases (modify-phases %standard-phases | 13663 | #:phases (modify-phases %standard-phases |
| 13788 | (delete 'build)))) | 13664 | (delete 'build)))) |
| 13789 | (inputs `(("node-signal-exit" ,node-signal-exit-3.0.7) | 13665 | (inputs (list node-signal-exit-3.0.7 node-onetime-2.0.1)) |
| 13790 | ("node-onetime" ,node-onetime-2.0.1))) | ||
| 13791 | (home-page "https://github.com/sindresorhus/restore-cursor#readme") | 13666 | (home-page "https://github.com/sindresorhus/restore-cursor#readme") |
| 13792 | (synopsis "Gracefully restore the CLI cursor on exit") | 13667 | (synopsis "Gracefully restore the CLI cursor on exit") |
| 13793 | (description "Gracefully restore the CLI cursor on exit") | 13668 | (description "Gracefully restore the CLI cursor on exit") |
| @@ -13834,7 +13709,7 @@ | |||
| 13834 | (add-after 'patch-dependencies 'delete-dev-dependencies | 13709 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 13835 | (lambda _ | 13710 | (lambda _ |
| 13836 | (delete-dependencies '("mkdirp" "tap"))))))) | 13711 | (delete-dependencies '("mkdirp" "tap"))))))) |
| 13837 | (inputs `(("node-glob" ,node-glob-7.2.3))) | 13712 | (inputs (list node-glob-7.2.3)) |
| 13838 | (home-page "https://github.com/isaacs/rimraf#readme") | 13713 | (home-page "https://github.com/isaacs/rimraf#readme") |
| 13839 | (synopsis "A deep deletion module for node (like `rm -rf`)") | 13714 | (synopsis "A deep deletion module for node (like `rm -rf`)") |
| 13840 | (description "A deep deletion module for node (like `rm -rf`)") | 13715 | (description "A deep deletion module for node (like `rm -rf`)") |
| @@ -13957,7 +13832,7 @@ | |||
| 13957 | '(#:tests? #f | 13832 | '(#:tests? #f |
| 13958 | #:phases (modify-phases %standard-phases | 13833 | #:phases (modify-phases %standard-phases |
| 13959 | (delete 'build)))) | 13834 | (delete 'build)))) |
| 13960 | (inputs `(("node-rx-lite" ,node-rx-lite-4.0.8))) | 13835 | (inputs (list node-rx-lite-4.0.8)) |
| 13961 | (home-page "https://github.com/Reactive-Extensions/RxJS") | 13836 | (home-page "https://github.com/Reactive-Extensions/RxJS") |
| 13962 | (synopsis | 13837 | (synopsis |
| 13963 | "Lightweight library with aggregate functions for composing asynchronous and event-based operations in JavaScript") | 13838 | "Lightweight library with aggregate functions for composing asynchronous and event-based operations in JavaScript") |
| @@ -14011,7 +13886,7 @@ | |||
| 14011 | (add-after 'patch-dependencies 'delete-dev-dependencies | 13886 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14012 | (lambda _ | 13887 | (lambda _ |
| 14013 | (delete-dependencies '("tape"))))))) | 13888 | (delete-dependencies '("tape"))))))) |
| 14014 | (inputs `(("node-ret" ,node-ret-0.1.15))) | 13889 | (inputs (list node-ret-0.1.15)) |
| 14015 | (home-page "https://github.com/substack/safe-regex") | 13890 | (home-page "https://github.com/substack/safe-regex") |
| 14016 | (synopsis | 13891 | (synopsis |
| 14017 | "detect possibly catastrophic, exponential-time regular expressions") | 13892 | "detect possibly catastrophic, exponential-time regular expressions") |
| @@ -14059,8 +13934,7 @@ | |||
| 14059 | '(#:tests? #f | 13934 | '(#:tests? #f |
| 14060 | #:phases (modify-phases %standard-phases | 13935 | #:phases (modify-phases %standard-phases |
| 14061 | (delete 'build)))) | 13936 | (delete 'build)))) |
| 14062 | (inputs `(("node-object-assign" ,node-object-assign-4.1.1) | 13937 | (inputs (list node-object-assign-4.1.1 node-loose-envify-1.4.0)) |
| 14063 | ("node-loose-envify" ,node-loose-envify-1.4.0))) | ||
| 14064 | (home-page "https://reactjs.org/") | 13938 | (home-page "https://reactjs.org/") |
| 14065 | (synopsis "Cooperative scheduler for the browser environment.") | 13939 | (synopsis "Cooperative scheduler for the browser environment.") |
| 14066 | (description "Cooperative scheduler for the browser environment.") | 13940 | (description "Cooperative scheduler for the browser environment.") |
| @@ -14082,8 +13956,7 @@ | |||
| 14082 | '(#:tests? #f | 13956 | '(#:tests? #f |
| 14083 | #:phases (modify-phases %standard-phases | 13957 | #:phases (modify-phases %standard-phases |
| 14084 | (delete 'build)))) | 13958 | (delete 'build)))) |
| 14085 | (inputs `(("node-object-assign" ,node-object-assign-4.1.1) | 13959 | (inputs (list node-object-assign-4.1.1 node-loose-envify-1.4.0)) |
| 14086 | ("node-loose-envify" ,node-loose-envify-1.4.0))) | ||
| 14087 | (home-page "https://reactjs.org/") | 13960 | (home-page "https://reactjs.org/") |
| 14088 | (synopsis "Cooperative scheduler for the browser environment.") | 13961 | (synopsis "Cooperative scheduler for the browser environment.") |
| 14089 | (description "Cooperative scheduler for the browser environment.") | 13962 | (description "Cooperative scheduler for the browser environment.") |
| @@ -14105,7 +13978,7 @@ | |||
| 14105 | '(#:tests? #f | 13978 | '(#:tests? #f |
| 14106 | #:phases (modify-phases %standard-phases | 13979 | #:phases (modify-phases %standard-phases |
| 14107 | (delete 'build)))) | 13980 | (delete 'build)))) |
| 14108 | (inputs `(("node-loose-envify" ,node-loose-envify-1.4.0))) | 13981 | (inputs (list node-loose-envify-1.4.0)) |
| 14109 | (home-page "https://reactjs.org/") | 13982 | (home-page "https://reactjs.org/") |
| 14110 | (synopsis "Cooperative scheduler for the browser environment.") | 13983 | (synopsis "Cooperative scheduler for the browser environment.") |
| 14111 | (description "Cooperative scheduler for the browser environment.") | 13984 | (description "Cooperative scheduler for the browser environment.") |
| @@ -14183,7 +14056,7 @@ | |||
| 14183 | (lambda _ | 14056 | (lambda _ |
| 14184 | (delete-dependencies '("@npmcli/eslint-config" | 14057 | (delete-dependencies '("@npmcli/eslint-config" |
| 14185 | "@npmcli/template-oss" "tap"))))))) | 14058 | "@npmcli/template-oss" "tap"))))))) |
| 14186 | (inputs `(("node-lru-cache" ,node-lru-cache-6.0.0))) | 14059 | (inputs (list node-lru-cache-6.0.0)) |
| 14187 | (home-page "https://github.com/npm/node-semver#readme") | 14060 | (home-page "https://github.com/npm/node-semver#readme") |
| 14188 | (synopsis "The semantic version parser used by npm.") | 14061 | (synopsis "The semantic version parser used by npm.") |
| 14189 | (description "The semantic version parser used by npm.") | 14062 | (description "The semantic version parser used by npm.") |
| @@ -14216,19 +14089,19 @@ | |||
| 14216 | "mocha" | 14089 | "mocha" |
| 14217 | "nyc" | 14090 | "nyc" |
| 14218 | "supertest"))))))) | 14091 | "supertest"))))))) |
| 14219 | (inputs `(("node-statuses" ,node-statuses-2.0.1) | 14092 | (inputs (list node-statuses-2.0.1 |
| 14220 | ("node-range-parser" ,node-range-parser-1.2.1) | 14093 | node-range-parser-1.2.1 |
| 14221 | ("node-on-finished" ,node-on-finished-2.4.1) | 14094 | node-on-finished-2.4.1 |
| 14222 | ("node-ms" ,node-ms-2.1.3) | 14095 | node-ms-2.1.3 |
| 14223 | ("node-mime" ,node-mime-1.6.0) | 14096 | node-mime-1.6.0 |
| 14224 | ("node-http-errors" ,node-http-errors-2.0.0) | 14097 | node-http-errors-2.0.0 |
| 14225 | ("node-fresh" ,node-fresh-0.5.2) | 14098 | node-fresh-0.5.2 |
| 14226 | ("node-etag" ,node-etag-1.8.1) | 14099 | node-etag-1.8.1 |
| 14227 | ("node-escape-html" ,node-escape-html-1.0.3) | 14100 | node-escape-html-1.0.3 |
| 14228 | ("node-encodeurl" ,node-encodeurl-1.0.2) | 14101 | node-encodeurl-1.0.2 |
| 14229 | ("node-destroy" ,node-destroy-1.2.0) | 14102 | node-destroy-1.2.0 |
| 14230 | ("node-depd" ,node-depd-2.0.0) | 14103 | node-depd-2.0.0 |
| 14231 | ("node-debug" ,node-debug-2.6.9))) | 14104 | node-debug-2.6.9)) |
| 14232 | (home-page "https://github.com/pillarjs/send#readme") | 14105 | (home-page "https://github.com/pillarjs/send#readme") |
| 14233 | (synopsis | 14106 | (synopsis |
| 14234 | "Better streaming static file server with Range and conditional-GET support") | 14107 | "Better streaming static file server with Range and conditional-GET support") |
| @@ -14269,10 +14142,8 @@ | |||
| 14269 | "ts-node-test-register" | 14142 | "ts-node-test-register" |
| 14270 | "typescript" | 14143 | "typescript" |
| 14271 | "vite"))))))) | 14144 | "vite"))))))) |
| 14272 | (inputs `(("node-structured-source" ,node-structured-source-3.0.2) | 14145 | (inputs (list node-structured-source-3.0.2 node-object-values-0.1.2 |
| 14273 | ("node-object-values" ,node-object-values-0.1.2) | 14146 | node-concat-stream-2.0.0 node-textlint-ast-node-types-4.4.3)) |
| 14274 | ("node-concat-stream" ,node-concat-stream-2.0.0) | ||
| 14275 | ("node-textlint-ast-node-types" ,node-textlint-ast-node-types-4.4.3))) | ||
| 14276 | (home-page "https://github.com/azu/sentence-splitter") | 14147 | (home-page "https://github.com/azu/sentence-splitter") |
| 14277 | (synopsis "split {japanese, english} text into sentences.") | 14148 | (synopsis "split {japanese, english} text into sentences.") |
| 14278 | (description "split {japanese, english} text into sentences.") | 14149 | (description "split {japanese, english} text into sentences.") |
| @@ -14306,10 +14177,8 @@ | |||
| 14306 | "nyc" | 14177 | "nyc" |
| 14307 | "safe-buffer" | 14178 | "safe-buffer" |
| 14308 | "supertest"))))))) | 14179 | "supertest"))))))) |
| 14309 | (inputs `(("node-send" ,node-send-0.18.0) | 14180 | (inputs (list node-send-0.18.0 node-parseurl-1.3.3 node-escape-html-1.0.3 |
| 14310 | ("node-parseurl" ,node-parseurl-1.3.3) | 14181 | node-encodeurl-1.0.2)) |
| 14311 | ("node-escape-html" ,node-escape-html-1.0.3) | ||
| 14312 | ("node-encodeurl" ,node-encodeurl-1.0.2))) | ||
| 14313 | (home-page "https://github.com/expressjs/serve-static#readme") | 14182 | (home-page "https://github.com/expressjs/serve-static#readme") |
| 14314 | (synopsis "Serve static files") | 14183 | (synopsis "Serve static files") |
| 14315 | (description "Serve static files") | 14184 | (description "Serve static files") |
| @@ -14361,10 +14230,8 @@ | |||
| 14361 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14230 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14362 | (lambda _ | 14231 | (lambda _ |
| 14363 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 14232 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 14364 | (inputs `(("node-split-string" ,node-split-string-3.1.0) | 14233 | (inputs (list node-split-string-3.1.0 node-is-plain-object-2.0.4 |
| 14365 | ("node-is-plain-object" ,node-is-plain-object-2.0.4) | 14234 | node-is-extendable-0.1.1 node-extend-shallow-2.0.1)) |
| 14366 | ("node-is-extendable" ,node-is-extendable-0.1.1) | ||
| 14367 | ("node-extend-shallow" ,node-extend-shallow-2.0.1))) | ||
| 14368 | (home-page "https://github.com/jonschlinkert/set-value") | 14235 | (home-page "https://github.com/jonschlinkert/set-value") |
| 14369 | (synopsis | 14236 | (synopsis |
| 14370 | "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.") | 14237 | "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.") |
| @@ -14441,9 +14308,8 @@ | |||
| 14441 | "nyc" | 14308 | "nyc" |
| 14442 | "safe-publish-latest" | 14309 | "safe-publish-latest" |
| 14443 | "tape"))))))) | 14310 | "tape"))))))) |
| 14444 | (inputs `(("node-object-inspect" ,node-object-inspect-1.12.3) | 14311 | (inputs (list node-object-inspect-1.12.3 node-get-intrinsic-1.2.1 |
| 14445 | ("node-get-intrinsic" ,node-get-intrinsic-1.2.1) | 14312 | node-call-bind-1.0.2)) |
| 14446 | ("node-call-bind" ,node-call-bind-1.0.2))) | ||
| 14447 | (home-page "https://github.com/ljharb/side-channel#readme") | 14313 | (home-page "https://github.com/ljharb/side-channel#readme") |
| 14448 | (synopsis | 14314 | (synopsis |
| 14449 | "Store information about any JS value in a side channel. Uses WeakMap if available.") | 14315 | "Store information about any JS value in a side channel. Uses WeakMap if available.") |
| @@ -14501,14 +14367,14 @@ | |||
| 14501 | "gulp-mocha" | 14367 | "gulp-mocha" |
| 14502 | "gulp-unused" | 14368 | "gulp-unused" |
| 14503 | "mocha"))))))) | 14369 | "mocha"))))))) |
| 14504 | (inputs `(("node-use" ,node-use-3.1.1) | 14370 | (inputs (list node-use-3.1.1 |
| 14505 | ("node-source-map-resolve" ,node-source-map-resolve-0.5.3) | 14371 | node-source-map-resolve-0.5.3 |
| 14506 | ("node-source-map" ,node-source-map-0.5.7) | 14372 | node-source-map-0.5.7 |
| 14507 | ("node-map-cache" ,node-map-cache-0.2.2) | 14373 | node-map-cache-0.2.2 |
| 14508 | ("node-extend-shallow" ,node-extend-shallow-2.0.1) | 14374 | node-extend-shallow-2.0.1 |
| 14509 | ("node-define-property" ,node-define-property-0.2.5) | 14375 | node-define-property-0.2.5 |
| 14510 | ("node-debug" ,node-debug-2.6.9) | 14376 | node-debug-2.6.9 |
| 14511 | ("node-base" ,node-base-0.11.2))) | 14377 | node-base-0.11.2)) |
| 14512 | (home-page "https://github.com/jonschlinkert/snapdragon") | 14378 | (home-page "https://github.com/jonschlinkert/snapdragon") |
| 14513 | (synopsis "Fast, pluggable and easy-to-use parser-renderer factory.") | 14379 | (synopsis "Fast, pluggable and easy-to-use parser-renderer factory.") |
| 14514 | (description "Fast, pluggable and easy-to-use parser-renderer factory.") | 14380 | (description "Fast, pluggable and easy-to-use parser-renderer factory.") |
| @@ -14538,9 +14404,8 @@ | |||
| 14538 | "gulp-mocha" | 14404 | "gulp-mocha" |
| 14539 | "mocha" | 14405 | "mocha" |
| 14540 | "snapdragon"))))))) | 14406 | "snapdragon"))))))) |
| 14541 | (inputs `(("node-snapdragon-util" ,node-snapdragon-util-3.0.1) | 14407 | (inputs (list node-snapdragon-util-3.0.1 node-isobject-3.0.1 |
| 14542 | ("node-isobject" ,node-isobject-3.0.1) | 14408 | node-define-property-1.0.0)) |
| 14543 | ("node-define-property" ,node-define-property-1.0.0))) | ||
| 14544 | (home-page "https://github.com/jonschlinkert/snapdragon-node") | 14409 | (home-page "https://github.com/jonschlinkert/snapdragon-node") |
| 14545 | (synopsis | 14410 | (synopsis |
| 14546 | "Snapdragon utility for creating a new AST node in custom code, such as plugins.") | 14411 | "Snapdragon utility for creating a new AST node in custom code, such as plugins.") |
| @@ -14575,7 +14440,7 @@ | |||
| 14575 | "mocha" | 14440 | "mocha" |
| 14576 | "snapdragon" | 14441 | "snapdragon" |
| 14577 | "snapdragon-node"))))))) | 14442 | "snapdragon-node"))))))) |
| 14578 | (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) | 14443 | (inputs (list node-kind-of-3.2.2)) |
| 14579 | (home-page "https://github.com/jonschlinkert/snapdragon-util") | 14444 | (home-page "https://github.com/jonschlinkert/snapdragon-util") |
| 14580 | (synopsis "Utilities for the snapdragon parser/compiler.") | 14445 | (synopsis "Utilities for the snapdragon parser/compiler.") |
| 14581 | (description "Utilities for the snapdragon parser/compiler.") | 14446 | (description "Utilities for the snapdragon parser/compiler.") |
| @@ -14679,11 +14544,9 @@ | |||
| 14679 | (lambda _ | 14544 | (lambda _ |
| 14680 | (delete-dependencies '("Base64" "jshint" "setimmediate" | 14545 | (delete-dependencies '("Base64" "jshint" "setimmediate" |
| 14681 | "simple-asyncify" "tape"))))))) | 14546 | "simple-asyncify" "tape"))))))) |
| 14682 | (inputs `(("node-urix" ,node-urix-0.1.0) | 14547 | (inputs (list node-urix-0.1.0 node-source-map-url-0.4.1 |
| 14683 | ("node-source-map-url" ,node-source-map-url-0.4.1) | 14548 | node-resolve-url-0.2.1 node-decode-uri-component-0.2.2 |
| 14684 | ("node-resolve-url" ,node-resolve-url-0.2.1) | 14549 | node-atob-2.1.2)) |
| 14685 | ("node-decode-uri-component" ,node-decode-uri-component-0.2.2) | ||
| 14686 | ("node-atob" ,node-atob-2.1.2))) | ||
| 14687 | (home-page "https://github.com/lydell/source-map-resolve#readme") | 14550 | (home-page "https://github.com/lydell/source-map-resolve#readme") |
| 14688 | (synopsis "Resolve the source map and/or sources for a generated file.") | 14551 | (synopsis "Resolve the source map and/or sources for a generated file.") |
| 14689 | (description "Resolve the source map and/or sources for a generated file.") | 14552 | (description "Resolve the source map and/or sources for a generated file.") |
| @@ -14734,7 +14597,7 @@ | |||
| 14734 | (delete-dependencies '("@types/node" "acorn" "escodegen" | 14597 | (delete-dependencies '("@types/node" "acorn" "escodegen" |
| 14735 | "fuse-box" "fuse-test-runner" | 14598 | "fuse-box" "fuse-test-runner" |
| 14736 | "typescript"))))))) | 14599 | "typescript"))))))) |
| 14737 | (inputs `(("node-source-map" ,node-source-map-0.7.4))) | 14600 | (inputs (list node-source-map-0.7.4)) |
| 14738 | (home-page "https://www.npmjs.com/package/node-sourcemap-blender") | 14601 | (home-page "https://www.npmjs.com/package/node-sourcemap-blender") |
| 14739 | (synopsis "") | 14602 | (synopsis "") |
| 14740 | (description "") | 14603 | (description "") |
| @@ -14759,7 +14622,7 @@ | |||
| 14759 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14622 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14760 | (lambda _ | 14623 | (lambda _ |
| 14761 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 14624 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 14762 | (inputs `(("node-extend-shallow" ,node-extend-shallow-3.0.2))) | 14625 | (inputs (list node-extend-shallow-3.0.2)) |
| 14763 | (home-page "https://github.com/jonschlinkert/split-string") | 14626 | (home-page "https://github.com/jonschlinkert/split-string") |
| 14764 | (synopsis | 14627 | (synopsis |
| 14765 | "Split a string on a character except when the character is escaped.") | 14628 | "Split a string on a character except when the character is escaped.") |
| @@ -14785,15 +14648,15 @@ | |||
| 14785 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14648 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14786 | (lambda _ | 14649 | (lambda _ |
| 14787 | (delete-dependencies '("tape" "benchmark" "sinon" "temp"))))))) | 14650 | (delete-dependencies '("tape" "benchmark" "sinon" "temp"))))))) |
| 14788 | (inputs `(("node-bcrypt-pbkdf" ,node-bcrypt-pbkdf-1.0.2) | 14651 | (inputs (list node-bcrypt-pbkdf-1.0.2 |
| 14789 | ("node-ecc-jsbn" ,node-ecc-jsbn-0.1.2) | 14652 | node-ecc-jsbn-0.1.2 |
| 14790 | ("node-tweetnacl" ,node-tweetnacl-0.14.5) | 14653 | node-tweetnacl-0.14.5 |
| 14791 | ("node-jsbn" ,node-jsbn-0.1.1) | 14654 | node-jsbn-0.1.1 |
| 14792 | ("node-safer-buffer" ,node-safer-buffer-2.1.2) | 14655 | node-safer-buffer-2.1.2 |
| 14793 | ("node-getpass" ,node-getpass-0.1.7) | 14656 | node-getpass-0.1.7 |
| 14794 | ("node-dashdash" ,node-dashdash-1.14.1) | 14657 | node-dashdash-1.14.1 |
| 14795 | ("node-assert-plus" ,node-assert-plus-1.0.0) | 14658 | node-assert-plus-1.0.0 |
| 14796 | ("node-asn1" ,node-asn1-0.2.6))) | 14659 | node-asn1-0.2.6)) |
| 14797 | (home-page "https://github.com/arekinath/node-sshpk#readme") | 14660 | (home-page "https://github.com/arekinath/node-sshpk#readme") |
| 14798 | (synopsis "A library for finding and using SSH public keys") | 14661 | (synopsis "A library for finding and using SSH public keys") |
| 14799 | (description "A library for finding and using SSH public keys") | 14662 | (description "A library for finding and using SSH public keys") |
| @@ -14818,8 +14681,7 @@ | |||
| 14818 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14681 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14819 | (lambda _ | 14682 | (lambda _ |
| 14820 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 14683 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 14821 | (inputs `(("node-object-copy" ,node-object-copy-0.1.0) | 14684 | (inputs (list node-object-copy-0.1.0 node-define-property-0.2.5)) |
| 14822 | ("node-define-property" ,node-define-property-0.2.5))) | ||
| 14823 | (home-page "https://github.com/jonschlinkert/static-extend") | 14685 | (home-page "https://github.com/jonschlinkert/static-extend") |
| 14824 | (synopsis | 14686 | (synopsis |
| 14825 | "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.") | 14687 | "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.") |
| @@ -14879,8 +14741,7 @@ | |||
| 14879 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14741 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14880 | (lambda _ | 14742 | (lambda _ |
| 14881 | (delete-dependencies '("safe-buffer" "tape" "typedarray"))))))) | 14743 | (delete-dependencies '("safe-buffer" "tape" "typedarray"))))))) |
| 14882 | (inputs `(("node-readable-stream" ,node-readable-stream-2.3.8) | 14744 | (inputs (list node-readable-stream-2.3.8 node-inherits-2.0.4)) |
| 14883 | ("node-inherits" ,node-inherits-2.0.4))) | ||
| 14884 | (home-page "https://github.com/browserify/stream-browserify") | 14745 | (home-page "https://github.com/browserify/stream-browserify") |
| 14885 | (synopsis "the stream module from node core for browsers") | 14746 | (synopsis "the stream module from node core for browsers") |
| 14886 | (description "the stream module from node core for browsers") | 14747 | (description "the stream module from node core for browsers") |
| @@ -14906,7 +14767,7 @@ | |||
| 14906 | (lambda _ | 14767 | (lambda _ |
| 14907 | (delete-dependencies '("babel-polyfill" "core-util-is" | 14768 | (delete-dependencies '("babel-polyfill" "core-util-is" |
| 14908 | "inherits" "tap"))))))) | 14769 | "inherits" "tap"))))))) |
| 14909 | (inputs `(("node-safe-buffer" ,node-safe-buffer-5.1.2))) | 14770 | (inputs (list node-safe-buffer-5.1.2)) |
| 14910 | (home-page "https://github.com/nodejs/string_decoder") | 14771 | (home-page "https://github.com/nodejs/string_decoder") |
| 14911 | (synopsis "The string_decoder module from Node core") | 14772 | (synopsis "The string_decoder module from Node core") |
| 14912 | (description "The string_decoder module from Node core") | 14773 | (description "The string_decoder module from Node core") |
| @@ -14934,8 +14795,7 @@ | |||
| 14934 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14795 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14935 | (lambda _ | 14796 | (lambda _ |
| 14936 | (delete-dependencies '("ava" "xo"))))))) | 14797 | (delete-dependencies '("ava" "xo"))))))) |
| 14937 | (inputs `(("node-strip-ansi" ,node-strip-ansi-4.0.0) | 14798 | (inputs (list node-strip-ansi-4.0.0 node-is-fullwidth-code-point-2.0.0)) |
| 14938 | ("node-is-fullwidth-code-point" ,node-is-fullwidth-code-point-2.0.0))) | ||
| 14939 | (home-page "https://github.com/sindresorhus/string-width#readme") | 14799 | (home-page "https://github.com/sindresorhus/string-width#readme") |
| 14940 | (synopsis | 14800 | (synopsis |
| 14941 | "Get the visual width of a string - the number of columns required to display it") | 14801 | "Get the visual width of a string - the number of columns required to display it") |
| @@ -14962,9 +14822,8 @@ | |||
| 14962 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14822 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14963 | (lambda _ | 14823 | (lambda _ |
| 14964 | (delete-dependencies '("ava" "tsd" "xo"))))))) | 14824 | (delete-dependencies '("ava" "tsd" "xo"))))))) |
| 14965 | (inputs `(("node-strip-ansi" ,node-strip-ansi-6.0.1) | 14825 | (inputs (list node-strip-ansi-6.0.1 node-is-fullwidth-code-point-3.0.0 |
| 14966 | ("node-is-fullwidth-code-point" ,node-is-fullwidth-code-point-3.0.0) | 14826 | node-emoji-regex-8.0.0)) |
| 14967 | ("node-emoji-regex" ,node-emoji-regex-8.0.0))) | ||
| 14968 | (home-page "https://github.com/sindresorhus/string-width#readme") | 14827 | (home-page "https://github.com/sindresorhus/string-width#readme") |
| 14969 | (synopsis | 14828 | (synopsis |
| 14970 | "Get the visual width of a string - the number of columns required to display it") | 14829 | "Get the visual width of a string - the number of columns required to display it") |
| @@ -14991,7 +14850,7 @@ | |||
| 14991 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14850 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 14992 | (lambda _ | 14851 | (lambda _ |
| 14993 | (delete-dependencies '("ava" "xo"))))))) | 14852 | (delete-dependencies '("ava" "xo"))))))) |
| 14994 | (inputs `(("node-ansi-regex" ,node-ansi-regex-3.0.1))) | 14853 | (inputs (list node-ansi-regex-3.0.1)) |
| 14995 | (home-page "https://github.com/chalk/strip-ansi#readme") | 14854 | (home-page "https://github.com/chalk/strip-ansi#readme") |
| 14996 | (synopsis "Strip ANSI escape codes") | 14855 | (synopsis "Strip ANSI escape codes") |
| 14997 | (description "Strip ANSI escape codes") | 14856 | (description "Strip ANSI escape codes") |
| @@ -15016,7 +14875,7 @@ | |||
| 15016 | (add-after 'patch-dependencies 'delete-dev-dependencies | 14875 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 15017 | (lambda _ | 14876 | (lambda _ |
| 15018 | (delete-dependencies '("ava" "tsd" "xo"))))))) | 14877 | (delete-dependencies '("ava" "tsd" "xo"))))))) |
| 15019 | (inputs `(("node-ansi-regex" ,node-ansi-regex-5.0.1))) | 14878 | (inputs (list node-ansi-regex-5.0.1)) |
| 15020 | (home-page "https://github.com/chalk/strip-ansi#readme") | 14879 | (home-page "https://github.com/chalk/strip-ansi#readme") |
| 15021 | (synopsis "Strip ANSI escape codes from a string") | 14880 | (synopsis "Strip ANSI escape codes from a string") |
| 15022 | (description "Strip ANSI escape codes from a string") | 14881 | (description "Strip ANSI escape codes from a string") |
| @@ -15049,7 +14908,7 @@ | |||
| 15049 | "gulp-sourcemaps" | 14908 | "gulp-sourcemaps" |
| 15050 | "gulp-tag-version" | 14909 | "gulp-tag-version" |
| 15051 | "power-assert"))))))) | 14910 | "power-assert"))))))) |
| 15052 | (inputs `(("node-boundary" ,node-boundary-1.0.1))) | 14911 | (inputs (list node-boundary-1.0.1)) |
| 15053 | (home-page "https://github.com/Constellation/structured-source") | 14912 | (home-page "https://github.com/Constellation/structured-source") |
| 15054 | (synopsis | 14913 | (synopsis |
| 15055 | "Provides StructuredSource and functionality for converting range and loc vice versa.") | 14914 | "Provides StructuredSource and functionality for converting range and loc vice versa.") |
| @@ -15207,7 +15066,7 @@ | |||
| 15207 | (add-after 'patch-dependencies 'delete-dev-dependencies | 15066 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 15208 | (lambda _ | 15067 | (lambda _ |
| 15209 | (delete-dependencies '("ava" "import-fresh" "xo"))))))) | 15068 | (delete-dependencies '("ava" "import-fresh" "xo"))))))) |
| 15210 | (inputs `(("node-has-flag" ,node-has-flag-3.0.0))) | 15069 | (inputs (list node-has-flag-3.0.0)) |
| 15211 | (home-page "https://github.com/chalk/supports-color#readme") | 15070 | (home-page "https://github.com/chalk/supports-color#readme") |
| 15212 | (synopsis "Detect whether a terminal supports color") | 15071 | (synopsis "Detect whether a terminal supports color") |
| 15213 | (description "Detect whether a terminal supports color") | 15072 | (description "Detect whether a terminal supports color") |
| @@ -15272,12 +15131,12 @@ | |||
| 15272 | "nock" | 15131 | "nock" |
| 15273 | "rimraf" | 15132 | "rimraf" |
| 15274 | "tap"))))))) | 15133 | "tap"))))))) |
| 15275 | (inputs `(("node-yallist" ,node-yallist-4.0.0) | 15134 | (inputs (list node-yallist-4.0.0 |
| 15276 | ("node-mkdirp" ,node-mkdirp-1.0.4) | 15135 | node-mkdirp-1.0.4 |
| 15277 | ("node-minizlib" ,node-minizlib-2.1.2) | 15136 | node-minizlib-2.1.2 |
| 15278 | ("node-minipass" ,node-minipass-5.0.0) | 15137 | node-minipass-5.0.0 |
| 15279 | ("node-fs-minipass" ,node-fs-minipass-2.1.0) | 15138 | node-fs-minipass-2.1.0 |
| 15280 | ("node-chownr" ,node-chownr-2.0.0))) | 15139 | node-chownr-2.0.0)) |
| 15281 | (home-page "https://github.com/isaacs/node-tar#readme") | 15140 | (home-page "https://github.com/isaacs/node-tar#readme") |
| 15282 | (synopsis "tar for node") | 15141 | (synopsis "tar for node") |
| 15283 | (description "tar for node") | 15142 | (description "tar for node") |
| @@ -15430,7 +15289,7 @@ | |||
| 15430 | (add-after 'patch-dependencies 'delete-dev-dependencies | 15289 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 15431 | (lambda _ | 15290 | (lambda _ |
| 15432 | (delete-dependencies '("vows"))))))) | 15291 | (delete-dependencies '("vows"))))))) |
| 15433 | (inputs `(("node-os-tmpdir" ,node-os-tmpdir-1.0.2))) | 15292 | (inputs (list node-os-tmpdir-1.0.2)) |
| 15434 | (home-page "http://github.com/raszi/node-tmp") | 15293 | (home-page "http://github.com/raszi/node-tmp") |
| 15435 | (synopsis "Temporary file and directory creator") | 15294 | (synopsis "Temporary file and directory creator") |
| 15436 | (description "Temporary file and directory creator") | 15295 | (description "Temporary file and directory creator") |
| @@ -15479,7 +15338,7 @@ | |||
| 15479 | (add-after 'patch-dependencies 'delete-dev-dependencies | 15338 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 15480 | (lambda _ | 15339 | (lambda _ |
| 15481 | (delete-dependencies '("base" "mocha"))))))) | 15340 | (delete-dependencies '("base" "mocha"))))))) |
| 15482 | (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) | 15341 | (inputs (list node-kind-of-3.2.2)) |
| 15483 | (home-page "https://github.com/jonschlinkert/to-object-path") | 15342 | (home-page "https://github.com/jonschlinkert/to-object-path") |
| 15484 | (synopsis "Create an object path from a list or array of strings.") | 15343 | (synopsis "Create an object path from a list or array of strings.") |
| 15485 | (description "Create an object path from a list or array of strings.") | 15344 | (description "Create an object path from a list or array of strings.") |
| @@ -15503,10 +15362,8 @@ | |||
| 15503 | (add-after 'patch-dependencies 'delete-dev-dependencies | 15362 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 15504 | (lambda _ | 15363 | (lambda _ |
| 15505 | (delete-dependencies '("gulp-format-md" "mocha"))))))) | 15364 | (delete-dependencies '("gulp-format-md" "mocha"))))))) |
| 15506 | (inputs `(("node-safe-regex" ,node-safe-regex-1.1.0) | 15365 | (inputs (list node-safe-regex-1.1.0 node-regex-not-1.0.2 |
| 15507 | ("node-regex-not" ,node-regex-not-1.0.2) | 15366 | node-extend-shallow-3.0.2 node-define-property-2.0.2)) |
| 15508 | ("node-extend-shallow" ,node-extend-shallow-3.0.2) | ||
| 15509 | ("node-define-property" ,node-define-property-2.0.2))) | ||
| 15510 | (home-page "https://github.com/jonschlinkert/to-regex") | 15367 | (home-page "https://github.com/jonschlinkert/to-regex") |
| 15511 | (synopsis "Generate a regex from a string or array of strings.") | 15368 | (synopsis "Generate a regex from a string or array of strings.") |
| 15512 | (description "Generate a regex from a string or array of strings.") | 15369 | (description "Generate a regex from a string or array of strings.") |
| @@ -15532,8 +15389,7 @@ | |||
| 15532 | (lambda _ | 15389 | (lambda _ |
| 15533 | (delete-dependencies '("fill-range" "gulp-format-md" | 15390 | (delete-dependencies '("fill-range" "gulp-format-md" |
| 15534 | "mocha" "text-table" "time-diff"))))))) | 15391 | "mocha" "text-table" "time-diff"))))))) |
| 15535 | (inputs `(("node-repeat-string" ,node-repeat-string-1.6.1) | 15392 | (inputs (list node-repeat-string-1.6.1 node-is-number-3.0.0)) |
| 15536 | ("node-is-number" ,node-is-number-3.0.0))) | ||
| 15537 | (home-page "https://github.com/micromatch/to-regex-range") | 15393 | (home-page "https://github.com/micromatch/to-regex-range") |
| 15538 | (synopsis | 15394 | (synopsis |
| 15539 | "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.") | 15395 | "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.") |
| @@ -15590,7 +15446,7 @@ | |||
| 15590 | (add-after 'patch-dependencies 'delete-dev-dependencies | 15446 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 15591 | (lambda _ | 15447 | (lambda _ |
| 15592 | (delete-dependencies '("mutate-fs" "tap"))))))) | 15448 | (delete-dependencies '("mutate-fs" "tap"))))))) |
| 15593 | (inputs `(("node-nopt" ,node-nopt-1.0.10))) | 15449 | (inputs (list node-nopt-1.0.10)) |
| 15594 | (home-page "https://github.com/isaacs/node-touch#readme") | 15450 | (home-page "https://github.com/isaacs/node-touch#readme") |
| 15595 | (synopsis "like touch(1) in node") | 15451 | (synopsis "like touch(1) in node") |
| 15596 | (description "like touch(1) in node") | 15452 | (description "like touch(1) in node") |
| @@ -15616,8 +15472,7 @@ | |||
| 15616 | (lambda _ | 15472 | (lambda _ |
| 15617 | (delete-dependencies '("async" "genversion" "nyc" | 15473 | (delete-dependencies '("async" "genversion" "nyc" |
| 15618 | "string.prototype.repeat" "vows"))))))) | 15474 | "string.prototype.repeat" "vows"))))))) |
| 15619 | (inputs `(("node-punycode" ,node-punycode-2.3.0) | 15475 | (inputs (list node-punycode-2.3.0 node-psl-1.9.0)) |
| 15620 | ("node-psl" ,node-psl-1.9.0))) | ||
| 15621 | (home-page "https://github.com/salesforce/tough-cookie") | 15476 | (home-page "https://github.com/salesforce/tough-cookie") |
| 15622 | (synopsis "RFC6265 Cookies and Cookie Jar for node.js") | 15477 | (synopsis "RFC6265 Cookies and Cookie Jar for node.js") |
| 15623 | (description "RFC6265 Cookies and Cookie Jar for node.js") | 15478 | (description "RFC6265 Cookies and Cookie Jar for node.js") |
| @@ -15694,7 +15549,7 @@ | |||
| 15694 | "tslint" | 15549 | "tslint" |
| 15695 | "tslint-config-prettier" | 15550 | "tslint-config-prettier" |
| 15696 | "typescript"))))))) | 15551 | "typescript"))))))) |
| 15697 | (inputs `(("node-yargs" ,node-yargs-17.7.2))) | 15552 | (inputs (list node-yargs-17.7.2)) |
| 15698 | (home-page "https://github.com/dzcpy/transliteration#readme") | 15553 | (home-page "https://github.com/dzcpy/transliteration#readme") |
| 15699 | (synopsis | 15554 | (synopsis |
| 15700 | "Unicode to ACSII transliteration / slugify module for node.js, browser, Web Worker, ReactNative and CLI.") | 15555 | "Unicode to ACSII transliteration / slugify module for node.js, browser, Web Worker, ReactNative and CLI.") |
| @@ -15738,7 +15593,7 @@ | |||
| 15738 | '(#:tests? #f | 15593 | '(#:tests? #f |
| 15739 | #:phases (modify-phases %standard-phases | 15594 | #:phases (modify-phases %standard-phases |
| 15740 | (delete 'build)))) | 15595 | (delete 'build)))) |
| 15741 | (inputs `(("node-safe-buffer" ,node-safe-buffer-5.2.1))) | 15596 | (inputs (list node-safe-buffer-5.2.1)) |
| 15742 | (home-page "https://github.com/mikeal/tunnel-agent#readme") | 15597 | (home-page "https://github.com/mikeal/tunnel-agent#readme") |
| 15743 | (synopsis | 15598 | (synopsis |
| 15744 | "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.") | 15599 | "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.") |
| @@ -15796,7 +15651,7 @@ | |||
| 15796 | (lambda _ | 15651 | (lambda _ |
| 15797 | (delete-dependencies '("livescript" "mocha" "istanbul" | 15652 | (delete-dependencies '("livescript" "mocha" "istanbul" |
| 15798 | "browserify"))))))) | 15653 | "browserify"))))))) |
| 15799 | (inputs `(("node-prelude-ls" ,node-prelude-ls-1.1.2))) | 15654 | (inputs (list node-prelude-ls-1.1.2)) |
| 15800 | (home-page "https://github.com/gkz/type-check") | 15655 | (home-page "https://github.com/gkz/type-check") |
| 15801 | (synopsis | 15656 | (synopsis |
| 15802 | "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.") | 15657 | "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.") |
| @@ -15829,8 +15684,7 @@ | |||
| 15829 | "eslint-plugin-standard" | 15684 | "eslint-plugin-standard" |
| 15830 | "mocha" | 15685 | "mocha" |
| 15831 | "nyc"))))))) | 15686 | "nyc"))))))) |
| 15832 | (inputs `(("node-mime-types" ,node-mime-types-2.1.35) | 15687 | (inputs (list node-mime-types-2.1.35 node-media-typer-0.3.0)) |
| 15833 | ("node-media-typer" ,node-media-typer-0.3.0))) | ||
| 15834 | (home-page "https://github.com/jshttp/type-is#readme") | 15688 | (home-page "https://github.com/jshttp/type-is#readme") |
| 15835 | (synopsis "Infer the content-type of a request.") | 15689 | (synopsis "Infer the content-type of a request.") |
| 15836 | (description "Infer the content-type of a request.") | 15690 | (description "Infer the content-type of a request.") |
| @@ -15876,7 +15730,7 @@ | |||
| 15876 | '(#:tests? #f | 15730 | '(#:tests? #f |
| 15877 | #:phases (modify-phases %standard-phases | 15731 | #:phases (modify-phases %standard-phases |
| 15878 | (delete 'build)))) | 15732 | (delete 'build)))) |
| 15879 | (inputs `(("node-types-node" ,node-types-node-20.3.1))) | 15733 | (inputs (list node-types-node-20.3.1)) |
| 15880 | (home-page | 15734 | (home-page |
| 15881 | "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect") | 15735 | "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect") |
| 15882 | (synopsis "TypeScript definitions for connect") | 15736 | (synopsis "TypeScript definitions for connect") |
| @@ -15962,7 +15816,7 @@ | |||
| 15962 | '(#:tests? #f | 15816 | '(#:tests? #f |
| 15963 | #:phases (modify-phases %standard-phases | 15817 | #:phases (modify-phases %standard-phases |
| 15964 | (delete 'build)))) | 15818 | (delete 'build)))) |
| 15965 | (inputs `(("node-types-node" ,node-types-node-20.3.1))) | 15819 | (inputs (list node-types-node-20.3.1)) |
| 15966 | (home-page | 15820 | (home-page |
| 15967 | "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws") | 15821 | "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws") |
| 15968 | (synopsis "TypeScript definitions for ws") | 15822 | (synopsis "TypeScript definitions for ws") |
| @@ -16240,8 +16094,8 @@ | |||
| 16240 | (add-after 'patch-dependencies 'delete-dev-dependencies | 16094 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 16241 | (lambda _ | 16095 | (lambda _ |
| 16242 | (delete-dependencies '("ava"))))))) | 16096 | (delete-dependencies '("ava"))))))) |
| 16243 | (inputs `(("node-unicode-property-aliases-ecmascript" ,node-unicode-property-aliases-ecmascript-2.1.0) | 16097 | (inputs (list node-unicode-property-aliases-ecmascript-2.1.0 |
| 16244 | ("node-unicode-canonical-property-names-ecmascript" ,node-unicode-canonical-property-names-ecmascript-2.0.0))) | 16098 | node-unicode-canonical-property-names-ecmascript-2.0.0)) |
| 16245 | (home-page | 16099 | (home-page |
| 16246 | "https://github.com/mathiasbynens/unicode-match-property-ecmascript") | 16100 | "https://github.com/mathiasbynens/unicode-match-property-ecmascript") |
| 16247 | (synopsis | 16101 | (synopsis |
| @@ -16325,10 +16179,8 @@ | |||
| 16325 | (add-after 'patch-dependencies 'delete-dev-dependencies | 16179 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 16326 | (lambda _ | 16180 | (lambda _ |
| 16327 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) | 16181 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) |
| 16328 | (inputs `(("node-set-value" ,node-set-value-2.0.1) | 16182 | (inputs (list node-set-value-2.0.1 node-is-extendable-0.1.1 |
| 16329 | ("node-is-extendable" ,node-is-extendable-0.1.1) | 16183 | node-get-value-2.0.6 node-arr-union-3.1.0)) |
| 16330 | ("node-get-value" ,node-get-value-2.0.6) | ||
| 16331 | ("node-arr-union" ,node-arr-union-3.1.0))) | ||
| 16332 | (home-page "https://github.com/jonschlinkert/union-value") | 16184 | (home-page "https://github.com/jonschlinkert/union-value") |
| 16333 | (synopsis | 16185 | (synopsis |
| 16334 | "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.") | 16186 | "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.") |
| @@ -16406,8 +16258,7 @@ | |||
| 16406 | (add-after 'patch-dependencies 'delete-dev-dependencies | 16258 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 16407 | (lambda _ | 16259 | (lambda _ |
| 16408 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) | 16260 | (delete-dependencies '("gulp-format-md" "mocha" "should"))))))) |
| 16409 | (inputs `(("node-isobject" ,node-isobject-3.0.1) | 16261 | (inputs (list node-isobject-3.0.1 node-has-value-0.3.1)) |
| 16410 | ("node-has-value" ,node-has-value-0.3.1))) | ||
| 16411 | (home-page "https://github.com/jonschlinkert/unset-value") | 16262 | (home-page "https://github.com/jonschlinkert/unset-value") |
| 16412 | (synopsis "Delete nested properties from an object using dot notation.") | 16263 | (synopsis "Delete nested properties from an object using dot notation.") |
| 16413 | (description "Delete nested properties from an object using dot notation.") | 16264 | (description "Delete nested properties from an object using dot notation.") |
| @@ -16451,8 +16302,7 @@ | |||
| 16451 | "rollup" | 16302 | "rollup" |
| 16452 | "rollup-plugin-babel" | 16303 | "rollup-plugin-babel" |
| 16453 | "typescript"))))))) | 16304 | "typescript"))))))) |
| 16454 | (inputs `(("node-create-react-context" ,node-create-react-context-0.1.6) | 16305 | (inputs (list node-create-react-context-0.1.6 node-react-16.14.0)) |
| 16455 | ("node-react" ,node-react-16.14.0))) | ||
| 16456 | (home-page "https://github.com/thejameskyle/unstated#readme") | 16306 | (home-page "https://github.com/thejameskyle/unstated#readme") |
| 16457 | (synopsis "State so simple, it goes without saying") | 16307 | (synopsis "State so simple, it goes without saying") |
| 16458 | (description "State so simple, it goes without saying") | 16308 | (description "State so simple, it goes without saying") |
| @@ -16486,7 +16336,7 @@ | |||
| 16486 | "sorcery" | 16336 | "sorcery" |
| 16487 | "typescript" | 16337 | "typescript" |
| 16488 | "uglify-js"))))))) | 16338 | "uglify-js"))))))) |
| 16489 | (inputs `(("node-punycode" ,node-punycode-2.3.0))) | 16339 | (inputs (list node-punycode-2.3.0)) |
| 16490 | (home-page "https://github.com/garycourt/uri-js") | 16340 | (home-page "https://github.com/garycourt/uri-js") |
| 16491 | (synopsis | 16341 | (synopsis |
| 16492 | "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.") | 16342 | "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.") |
| @@ -16775,8 +16625,7 @@ | |||
| 16775 | "prettier" | 16625 | "prettier" |
| 16776 | "react" | 16626 | "react" |
| 16777 | "typescript"))))))) | 16627 | "typescript"))))))) |
| 16778 | (inputs `(("node-use-isomorphic-layout-effect" ,node-use-isomorphic-layout-effect-1.1.2) | 16628 | (inputs (list node-use-isomorphic-layout-effect-1.1.2 node-react-18.2.0)) |
| 16779 | ("node-react" ,node-react-18.2.0))) | ||
| 16780 | (home-page "https://github.com/Andarist/use-latest#readme") | 16629 | (home-page "https://github.com/Andarist/use-latest#readme") |
| 16781 | (synopsis | 16630 | (synopsis |
| 16782 | "A React helper hook for storing latest value in ref object (updated in useEffect's callback).") | 16631 | "A React helper hook for storing latest value in ref object (updated in useEffect's callback).") |
| @@ -16803,7 +16652,7 @@ | |||
| 16803 | (add-after 'patch-dependencies 'delete-dev-dependencies | 16652 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 16804 | (lambda _ | 16653 | (lambda _ |
| 16805 | (delete-dependencies '("mocha" "node-gyp" "prebuildify"))))))) | 16654 | (delete-dependencies '("mocha" "node-gyp" "prebuildify"))))))) |
| 16806 | (inputs `(("node-node-gyp-build" ,node-node-gyp-build-4.6.0))) | 16655 | (inputs (list node-node-gyp-build-4.6.0)) |
| 16807 | (home-page "https://github.com/websockets/utf-8-validate") | 16656 | (home-page "https://github.com/websockets/utf-8-validate") |
| 16808 | (synopsis "Check if a buffer contains valid UTF-8") | 16657 | (synopsis "Check if a buffer contains valid UTF-8") |
| 16809 | (description "Check if a buffer contains valid UTF-8") | 16658 | (description "Check if a buffer contains valid UTF-8") |
| @@ -16829,7 +16678,7 @@ | |||
| 16829 | (lambda _ | 16678 | (lambda _ |
| 16830 | (delete-dependencies '("mocha" "node-gyp" "prebuildify" | 16679 | (delete-dependencies '("mocha" "node-gyp" "prebuildify" |
| 16831 | "prebuildify-cross"))))))) | 16680 | "prebuildify-cross"))))))) |
| 16832 | (inputs `(("node-node-gyp-build" ,node-node-gyp-build-4.6.0))) | 16681 | (inputs (list node-node-gyp-build-4.6.0)) |
| 16833 | (home-page "https://github.com/websockets/utf-8-validate") | 16682 | (home-page "https://github.com/websockets/utf-8-validate") |
| 16834 | (synopsis "Check if a buffer contains valid UTF-8") | 16683 | (synopsis "Check if a buffer contains valid UTF-8") |
| 16835 | (description "Check if a buffer contains valid UTF-8") | 16684 | (description "Check if a buffer contains valid UTF-8") |
| @@ -17041,9 +16890,8 @@ | |||
| 17041 | '(#:tests? #f | 16890 | '(#:tests? #f |
| 17042 | #:phases (modify-phases %standard-phases | 16891 | #:phases (modify-phases %standard-phases |
| 17043 | (delete 'build)))) | 16892 | (delete 'build)))) |
| 17044 | (inputs `(("node-extsprintf" ,node-extsprintf-1.4.1) | 16893 | (inputs (list node-extsprintf-1.4.1 node-core-util-is-1.0.2 |
| 17045 | ("node-core-util-is" ,node-core-util-is-1.0.2) | 16894 | node-assert-plus-1.0.0)) |
| 17046 | ("node-assert-plus" ,node-assert-plus-1.0.0))) | ||
| 17047 | (home-page "https://github.com/davepacheco/node-verror") | 16895 | (home-page "https://github.com/davepacheco/node-verror") |
| 17048 | (synopsis "richer JavaScript errors") | 16896 | (synopsis "richer JavaScript errors") |
| 17049 | (description "richer JavaScript errors") | 16897 | (description "richer JavaScript errors") |
| @@ -17139,8 +16987,7 @@ | |||
| 17139 | '(#:tests? #f | 16987 | '(#:tests? #f |
| 17140 | #:phases (modify-phases %standard-phases | 16988 | #:phases (modify-phases %standard-phases |
| 17141 | (delete 'build)))) | 16989 | (delete 'build)))) |
| 17142 | (inputs `(("node-minimist" ,node-minimist-1.2.8) | 16990 | (inputs (list node-minimist-1.2.8 node-exec-sh-0.2.2)) |
| 17143 | ("node-exec-sh" ,node-exec-sh-0.2.2))) | ||
| 17144 | (home-page "https://github.com/mikeal/watch") | 16991 | (home-page "https://github.com/mikeal/watch") |
| 17145 | (synopsis "Utilities for watching file trees.") | 16992 | (synopsis "Utilities for watching file trees.") |
| 17146 | (description "Utilities for watching file trees.") | 16993 | (description "Utilities for watching file trees.") |
| @@ -17192,8 +17039,7 @@ | |||
| 17192 | (lambda _ | 17039 | (lambda _ |
| 17193 | (delete-dependencies '("eslint" "istanbul" "mocha" | 17040 | (delete-dependencies '("eslint" "istanbul" "mocha" |
| 17194 | "recast" "request" "webidl2js"))))))) | 17041 | "recast" "request" "webidl2js"))))))) |
| 17195 | (inputs `(("node-webidl-conversions" ,node-webidl-conversions-3.0.1) | 17042 | (inputs (list node-webidl-conversions-3.0.1 node-tr46-0.0.3)) |
| 17196 | ("node-tr46" ,node-tr46-0.0.3))) | ||
| 17197 | (home-page "https://github.com/jsdom/whatwg-url#readme") | 17043 | (home-page "https://github.com/jsdom/whatwg-url#readme") |
| 17198 | (synopsis | 17044 | (synopsis |
| 17199 | "An implementation of the WHATWG URL Standard's URL API and parsing machinery") | 17045 | "An implementation of the WHATWG URL Standard's URL API and parsing machinery") |
| @@ -17220,7 +17066,7 @@ | |||
| 17220 | (add-after 'patch-dependencies 'delete-dev-dependencies | 17066 | (add-after 'patch-dependencies 'delete-dev-dependencies |
| 17221 | (lambda _ | 17067 | (lambda _ |
| 17222 | (delete-dependencies '("tap"))))))) | 17068 | (delete-dependencies '("tap"))))))) |
| 17223 | (inputs `(("node-string-width" ,node-string-width-4.2.3))) | 17069 | (inputs (list node-string-width-4.2.3)) |
| 17224 | (home-page "https://github.com/iarna/wide-align#readme") | 17070 | (home-page "https://github.com/iarna/wide-align#readme") |
| 17225 | (synopsis | 17071 | (synopsis |
| 17226 | "A wide-character aware text alignment function for use on the console or with fixed width fonts.") | 17072 | "A wide-character aware text alignment function for use on the console or with fixed width fonts.") |
| @@ -17272,9 +17118,8 @@ | |||
| 17272 | (lambda _ | 17118 | (lambda _ |
| 17273 | (delete-dependencies '("ava" "chalk" "coveralls" | 17119 | (delete-dependencies '("ava" "chalk" "coveralls" |
| 17274 | "has-ansi" "nyc" "xo"))))))) | 17120 | "has-ansi" "nyc" "xo"))))))) |
| 17275 | (inputs `(("node-strip-ansi" ,node-strip-ansi-6.0.1) | 17121 | (inputs (list node-strip-ansi-6.0.1 node-string-width-4.2.3 |
| 17276 | ("node-string-width" ,node-string-width-4.2.3) | 17122 | node-ansi-styles-4.3.0)) |
| 17277 | ("node-ansi-styles" ,node-ansi-styles-4.3.0))) | ||
| 17278 | (home-page "https://github.com/chalk/wrap-ansi#readme") | 17123 | (home-page "https://github.com/chalk/wrap-ansi#readme") |
| 17279 | (synopsis "Wordwrap a string with ANSI escape codes") | 17124 | (synopsis "Wordwrap a string with ANSI escape codes") |
| 17280 | (description "Wordwrap a string with ANSI escape codes") | 17125 | (description "Wordwrap a string with ANSI escape codes") |
| @@ -17308,8 +17153,7 @@ | |||
| 17308 | "should" | 17153 | "should" |
| 17309 | "tinycolor" | 17154 | "tinycolor" |
| 17310 | "utf-8-validate"))))))) | 17155 | "utf-8-validate"))))))) |
| 17311 | (inputs `(("node-ultron" ,node-ultron-1.0.2) | 17156 | (inputs (list node-ultron-1.0.2 node-options-0.0.6)) |
| 17312 | ("node-options" ,node-options-0.0.6))) | ||
| 17313 | (home-page "https://github.com/websockets/ws") | 17157 | (home-page "https://github.com/websockets/ws") |
| 17314 | (synopsis | 17158 | (synopsis |
| 17315 | "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js") | 17159 | "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js") |
| @@ -17413,7 +17257,7 @@ | |||
| 17413 | "jsesc" | 17257 | "jsesc" |
| 17414 | "nyc" | 17258 | "nyc" |
| 17415 | "unicode-property-value-aliases"))))))) | 17259 | "unicode-property-value-aliases"))))))) |
| 17416 | (inputs `(("node-babel-runtime-corejs3" ,node-babel-runtime-corejs3-7.22.5))) | 17260 | (inputs (list node-babel-runtime-corejs3-7.22.5)) |
| 17417 | (home-page "http://xregexp.com/") | 17261 | (home-page "http://xregexp.com/") |
| 17418 | (synopsis "Extended regular expressions") | 17262 | (synopsis "Extended regular expressions") |
| 17419 | (description "Extended regular expressions") | 17263 | (description "Extended regular expressions") |
| @@ -17610,13 +17454,13 @@ | |||
| 17610 | "typescript" | 17454 | "typescript" |
| 17611 | "which" | 17455 | "which" |
| 17612 | "yargs-test-extends"))))))) | 17456 | "yargs-test-extends"))))))) |
| 17613 | (inputs `(("node-yargs-parser" ,node-yargs-parser-21.1.1) | 17457 | (inputs (list node-yargs-parser-21.1.1 |
| 17614 | ("node-y18n" ,node-y18n-5.0.8) | 17458 | node-y18n-5.0.8 |
| 17615 | ("node-string-width" ,node-string-width-4.2.3) | 17459 | node-string-width-4.2.3 |
| 17616 | ("node-require-directory" ,node-require-directory-2.1.1) | 17460 | node-require-directory-2.1.1 |
| 17617 | ("node-get-caller-file" ,node-get-caller-file-2.0.5) | 17461 | node-get-caller-file-2.0.5 |
| 17618 | ("node-escalade" ,node-escalade-3.1.1) | 17462 | node-escalade-3.1.1 |
| 17619 | ("node-cliui" ,node-cliui-8.0.1))) | 17463 | node-cliui-8.0.1)) |
| 17620 | (home-page "https://yargs.js.org/") | 17464 | (home-page "https://yargs.js.org/") |
| 17621 | (synopsis "yargs the modern, pirate-themed, successor to optimist.") | 17465 | (synopsis "yargs the modern, pirate-themed, successor to optimist.") |
| 17622 | (description "yargs the modern, pirate-themed, successor to optimist.") | 17466 | (description "yargs the modern, pirate-themed, successor to optimist.") |
diff --git a/guix-science/packages/rstudio.scm b/guix-science/packages/rstudio.scm index d2c8861..a9b5a4a 100644 --- a/guix-science/packages/rstudio.scm +++ b/guix-science/packages/rstudio.scm | |||
| @@ -475,14 +475,14 @@ user's @file{~/.local/share/rstudio/r-versions}."))) | |||
| 475 | `("QTWEBENGINEPROCESS_PATH" ":" = (,qtwebengine-path)))) | 475 | `("QTWEBENGINEPROCESS_PATH" ":" = (,qtwebengine-path)))) |
| 476 | #t)))))) | 476 | #t)))))) |
| 477 | (inputs | 477 | (inputs |
| 478 | `(("qtbase" ,qtbase-5) | 478 | (modify-inputs (package-inputs rstudio-server) |
| 479 | ("qtdeclarative" ,qtdeclarative-5) | 479 | (prepend qtbase-5 |
| 480 | ("qtlocation" ,qtlocation) | 480 | qtdeclarative-5 |
| 481 | ("qtsvg" ,qtsvg-5) | 481 | qtlocation |
| 482 | ("qtsensors" ,qtsensors) | 482 | qtsvg-5 |
| 483 | ("qtxmlpatterns" ,qtxmlpatterns) | 483 | qtsensors |
| 484 | ("qtwebchannel" ,qtwebchannel-5) | 484 | qtxmlpatterns |
| 485 | ("qtwebengine" ,qtwebengine-5) | 485 | qtwebchannel-5 |
| 486 | ,@(package-inputs rstudio-server))) | 486 | qtwebengine-5))) |
| 487 | (synopsis "Integrated development environment (IDE) for R (desktop version)"))) | 487 | (synopsis "Integrated development environment (IDE) for R (desktop version)"))) |
| 488 | 488 | ||
