1 | {
|
2 | "name": "extra-bigint",
|
3 | "version": "1.1.18",
|
4 | "description": "A BigInt can represent whole numbers larger than 2⁵³ - 1.",
|
5 | "sideEffects": false,
|
6 | "main": "index.js",
|
7 | "module": "index.mjs",
|
8 | "exports": {
|
9 | "types": "./index.d.ts",
|
10 | "require": "./index.js",
|
11 | "import": "./index.mjs"
|
12 | },
|
13 | "scripts": {
|
14 | "test": "jest",
|
15 | "build": "node ./build",
|
16 | "publish-docs": "node ./build publish-docs",
|
17 | "publish-packages": "node ./build publish-packages"
|
18 | },
|
19 | "keywords": [
|
20 | "extra",
|
21 | "bigint",
|
22 | "big",
|
23 | "integer",
|
24 | "aliquotParts",
|
25 | "clamp",
|
26 | "greatestPrimeFactor",
|
27 | "hcf",
|
28 | "leastPrimeFactor",
|
29 | "map",
|
30 | "mean",
|
31 | "rootMeanSquare",
|
32 | "abs",
|
33 | "aliquotSum",
|
34 | "arithmeticMean",
|
35 | "binomial",
|
36 | "cbrt",
|
37 | "ceilDiv",
|
38 | "compare",
|
39 | "constrain",
|
40 | "cubicMean",
|
41 | "factorial",
|
42 | "floorDiv",
|
43 | "gcd",
|
44 | "geometricMean",
|
45 | "harmonicMean",
|
46 | "hypot",
|
47 | "is",
|
48 | "isPow10",
|
49 | "isPow2",
|
50 | "isPrime",
|
51 | "lcm",
|
52 | "lerp",
|
53 | "log10",
|
54 | "log2",
|
55 | "max",
|
56 | "maxPrimeFactor",
|
57 | "median",
|
58 | "min",
|
59 | "minPrimeFactor",
|
60 | "mod",
|
61 | "modes",
|
62 | "modp",
|
63 | "multinomial",
|
64 | "nextPow10",
|
65 | "nextPow2",
|
66 | "prevPow10",
|
67 | "prevPow2",
|
68 | "primeExponentials",
|
69 | "primeFactors",
|
70 | "product",
|
71 | "properDivisors",
|
72 | "quadriaticMean",
|
73 | "range",
|
74 | "rem",
|
75 | "remap",
|
76 | "root",
|
77 | "roundDiv",
|
78 | "sign",
|
79 | "sqrt",
|
80 | "sum",
|
81 | "variance"
|
82 | ],
|
83 | "author": "wolfram77@gmail.com",
|
84 | "license": "MIT",
|
85 | "repository": {
|
86 | "type": "git",
|
87 | "url": "git+https://github.com/nodef/extra-bigint.git"
|
88 | },
|
89 | "bugs": {
|
90 | "url": "https://github.com/nodef/extra-bigint/issues"
|
91 | },
|
92 | "homepage": "https://github.com/nodef/extra-bigint#readme",
|
93 | "devDependencies": {
|
94 | "@rollup/plugin-commonjs": "^25.0.7",
|
95 | "@rollup/plugin-node-resolve": "^15.2.3",
|
96 | "@types/jest": "^29.5.6",
|
97 | "extra-build": "^2.2.43",
|
98 | "jest": "^29.7.0",
|
99 | "rollup-plugin-cleanup": "^3.2.1",
|
100 | "rollup-plugin-dts": "^6.1.0",
|
101 | "ts-jest": "^29.1.1"
|
102 | }
|
103 | }
|