extra-bigint
A BigInt can represent whole numbers larger than 2⁵³ - 1.
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
✓Academic publication links
Links to: zenodo.org -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.2%) to scientific vocabulary
Keywords
Repository
A BigInt can represent whole numbers larger than 2⁵³ - 1.
Basic Info
- Host: GitHub
- Owner: nodef
- License: mit
- Language: TypeScript
- Default Branch: master
- Homepage: https://www.npmjs.com/package/extra-bigint
- Size: 333 KB
Statistics
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
- Releases: 1
Topics
Metadata Files
README.md
A BigInt can represent whole numbers larger than 2⁵³ - 1 (1).
📦 Node.js,
🌐 Web,
📜 Files,
📰 Docs,
📘 Wiki.
ES2020 introduced BigInt as a built-in object. BigInt enables us to represent integers with arbitrary precision, allowing us to perform mathematical operations on large integers (2). This package includes common bigint functions related to querying about numbers, comparing numbers, performing rounded division, performing modulo operations, controlling range of numbers, performing arithmetic operations, obtaining divisors of a number (and related operations), getting the number of possible arrangements of a set of objects, performing geometry-related calculations, performing basic statistical analysis, and finding various statistical means.
This package is available in Node.js and Web formats. To use it on the web,
simply use the extra_bigint global variable after loading with a <script>
tag from the jsDelivr CDN.
Stability: Experimental.
```javascript const xbigint = require('extra-bigint'); // import * as xbigint from "extra-bigint"; // import * as xbigint from "https://unpkg.com/extra-bigint/index.mjs"; (deno)
xbigint.isPrime(113n); // → true
xbigint.floorDiv(7n, 3n); // → 2n
xbigint.sqrt(81n); // → 9n
xbigint.lcm(2n, 3n, 4n); // → 12n
xbigint.log2(8n); // → 3n
xbigint.sum(1n, 2n, 3n, 4n); // → 10n
xbigint.mean(1n, 7n, 8n); // → 5n ```
Index
| Property | Description | | ---- | ---- | | is | Check if value is a bigint. | | | | | compare | Compare two bigints. | | | | | abs | Get the absolute of a bigint. | | sign | Get the sign of a bigint. | | | | | floorDiv | Perform floor-divison of two bigints (\). | | ceilDiv | Perform ceiling-divison of two bigints. | | roundDiv | Perform rounded-divison of two bigints. | | | | | rem | Find the remainder of x/y with sign of x (truncated division). | | mod | Find the remainder of x/y with sign of y (floored division). | | modp | Find the remainder of x/y with +ve sign (euclidean division). | | | | | constrain | Constrain a bigint within a minimum and a maximum value. | | remap | Re-map a bigint from one range to another. | | lerp | Linearly interpolate a bigint between two bigints. | | | | | isPow2 | Check if bigint is a power-of-2. | | isPow10 | Check if bigint is a power-of-10. | | prevPow2 | Find largest power-of-2 less than or equal to given bigint. | | prevPow10 | Find largest power-of-10 less than or equal to given bigint. | | nextPow2 | Find smallest power-of-2 greater than or equal to given bigint. | | nextPow10 | Find smallest power-of-10 greater than or equal to given bigint. | | log2 | Find the base-2 logarithm of a bigint. | | log10 | Find the base-10 logarithm of a bigint. | | | | | sqrt | Find the square root of a bigint. | | cbrt | Find the cube root of a bigint. | | root | Find the nth root of a bigint. | | | | | properDivisors | List all divisors of a bigint, except itself. | | aliquotSum | Sum all proper divisors of a bigint. | | minPrimeFactor | Find the least prime number which divides a bigint. | | maxPrimeFactor | Find the greatest prime number which divides a bigint. | | primeFactors | Find the prime factors of a bigint. | | primeExponentials | Find the prime factors and respective exponents of a bigint. | | isPrime | Check if bigint is prime. | | gcd | Find the greatest common divisor of bigints. | | lcm | Find the least common multiple of bigints. | | | | | factorial | Find the factorial of a bigint. | | binomial | Find the number of ways to choose k elements from a set of n elements. | | multinomial | Find the number of ways to put n objects in m bins (n=sum(kᵢ)). | | | | | hypot | Find the length of hypotenuse. | | | | | sum | Find the sum of bigints (Σ). | | product | Find the product of bigints (∏). | | median | Find the value separating the higher and lower halves of bigints. | | modes | Find the values that appear most often. | | min | Find the smallest bigint. | | max | Find the largest bigint. | | range | Find the minimum and maximum bigint. | | variance | Find the mean of squared deviation of bigints from its mean. | | | | | arithmeticMean | Find the arithmetic mean of bigints (µ). | | geometricMean | Find the geometric mean of bigints. | | harmonicMean | Find the harmonic mean of bigints. | | quadriaticMean | Find the quadriatic mean of bigints. | | cubicMean | Find the cubic mean of bigints. |
Owner
- Name: nodef
- Login: nodef
- Kind: organization
- Website: https://nodef.github.io/
- Repositories: 119
- Profile: https://github.com/nodef
A summary of programs made with Node.js.
Citation (CITATION.cff)
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: Sahu
given-names: Subhajit
orcid: https://orcid.org/0000-0001-5140-6578
title: "nodef/extra-bigint: A collection of functions for working with BigInts"
version: 1.0.0
doi: 10.5281/zenodo.6792161
date-released: 2022-07-03
GitHub Events
Total
- Push event: 2
Last Year
- Push event: 2
Committers
Last synced: 6 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Subhajit Sahu | w****7@g****m | 100 |
| Viktor | v****9@y****u | 3 |
| BerkliumBirb | 1****b | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 5 months ago
All Time
- Total issues: 2
- Total pull requests: 20
- Average time to close issues: 5 days
- Average time to close pull requests: 2 days
- Total issue authors: 1
- Total pull request authors: 3
- Average comments per issue: 4.0
- Average comments per pull request: 2.95
- Merged pull requests: 8
- Bot issues: 0
- Bot pull requests: 12
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- skaunov (1)
Pull Request Authors
- dependabot[bot] (5)
- Yaffle (3)
- BerkliumBirb (2)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 67
-
Total downloads:
- npm 76,177 last-month
- Total docker downloads: 3,380
-
Total dependent packages: 134
(may contain duplicates) -
Total dependent repositories: 5
(may contain duplicates) - Total versions: 1,799
- Total maintainers: 1
npmjs.org: extra-bigint
A BigInt can represent whole numbers larger than 2⁵³ - 1.
- Homepage: https://github.com/nodef/extra-bigint#readme
- License: MIT
-
Latest release: 1.2.1
published 9 months ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/max
Gives largest value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/log2
Gives base-2 logarithm of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.53
published over 5 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/sqrt.min
Gives square root of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/min.min
Gives smallest value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/ceil-div
Gives value ≥ x/y.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/hypot.min
Gives length of hypotenuse.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/floor-div.min
Gives value ≤ x/y.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/ceil-div.min
Gives value ≥ x/y.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/compare.min
Compares two values.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/abs
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: extra-bigint.web
A BigInt can represent whole numbers larger than 2⁵³ - 1 {web}.
- Homepage: https://github.com/nodef/extra-bigint#readme
- License: MIT
-
Latest release: 1.2.1
published 9 months ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/floor-div
Gives value ≤ x/y.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/sign.min
Gives sign of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/cbrt.min
Gives cube root of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/log10.min
Gives base-10 logarithm of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.53
published over 5 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/hypot
Gives length of hypotenuse.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/log10
Gives base-10 logarithm of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.53
published over 5 years ago
Rankings
Maintainers (1)
npmjs.org: extra-bigint.min
A BigInt can represent whole numbers larger than 2⁵³ - 1.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: unpublished
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/geometric-mean.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/is-prime
Checks if value is prime.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/harmonic-mean
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/mod
Gets remainder of x/y with sign of y (floored division).
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/root.min
Gives nth root of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/sign
Gives sign of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/is-prime.min
Checks if value is prime.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/modp
Gets remainder of x/y with +ve sign (euclidean division).
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/quadriatic-mean.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/root
Gives nth root of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/max.min
Gives largest value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/sqrt
Gives square root of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/min
Gives smallest value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/hcf.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/compare
Compares two values.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/cbrt
Gives cube root of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/abs.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/mod.min
Gets remainder of x/y with sign of y (floored division).
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/root-mean-square
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/sum
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/gcd
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/rem
Gets remainder of x/y with sign of x (truncated division).
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/log2.min
Gives base-2 logarithm of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.53
published over 5 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/geometric-mean
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/arithmetic-mean.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/sum.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/cubic-mean.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/root-mean-square.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/quadriatic-mean
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/modp.min
Gets remainder of x/y with +ve sign (euclidean division).
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/rem.min
Gets remainder of x/y with sign of x (truncated division).
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/harmonic-mean.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/arithmetic-mean
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/log-2
Gives base-2 logarithm of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/cubic-mean
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/gcd.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/is.min
Checks if value is a BigInt.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/log-2.min
Gives base-2 logarithm of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/lcm.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/hcf
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/lcm
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/log-10.min
Gives base-10 logarithm of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/product
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/is
Checks if value is a BigInt.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/range
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/log-10
Gives base-10 logarithm of value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/range.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
npmjs.org: @extra-bigint/product.min
Gives absolute value.
- Homepage: https://github.com/nodef/extra-bigint
- License: MIT
- Status: removed
-
Latest release: 0.0.62
published over 4 years ago
Rankings
Maintainers (1)
Dependencies
- 339 dependencies
- @rollup/plugin-commonjs ^22.0.2 development
- @rollup/plugin-node-resolve ^13.3.0 development
- @types/jest ^28.1.6 development
- extra-build ^2.2.27 development
- jest ^28.1.3 development
- rollup-plugin-cleanup ^3.2.1 development
- rollup-plugin-dts ^4.2.2 development
- ts-jest ^28.0.7 development
- actions/checkout v3 composite
- actions/setup-node v2 composite
- coverallsapp/github-action master composite
- paambaati/codeclimate-action v3.0.0 composite
- actions/checkout v3 composite
- actions/setup-node v2 composite
