bigmathex 0.0.1-security → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bigmathex might be problematic. Click here for more details.
- package/LICENSE +21 -0
- package/README.md +117 -5
- package/big.js +1043 -0
- package/big.mjs +1027 -0
- package/package.json +47 -6
package/package.json
CHANGED
|
@@ -1,6 +1,47 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "bigmathex",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "bigmathex",
|
|
3
|
+
"description": "A lightweight, high-precision big number utility for JavaScript and Node.js.",
|
|
4
|
+
"version": "1.0.1",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"arbitrary",
|
|
7
|
+
"precision",
|
|
8
|
+
"arithmetic",
|
|
9
|
+
"big",
|
|
10
|
+
"number",
|
|
11
|
+
"decimal",
|
|
12
|
+
"float",
|
|
13
|
+
"biginteger",
|
|
14
|
+
"bigdecimal",
|
|
15
|
+
"bignumber",
|
|
16
|
+
"bigint",
|
|
17
|
+
"bignum"
|
|
18
|
+
],
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"import": "./big.mjs",
|
|
22
|
+
"require": "./big.js"
|
|
23
|
+
},
|
|
24
|
+
"./big.mjs": "./big.mjs",
|
|
25
|
+
"./big.js": "./big.js",
|
|
26
|
+
"./package.json": "./package.json"
|
|
27
|
+
},
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/krystalreeves85/bigmathex.git"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"test": "node ./test/runner.js"
|
|
34
|
+
},
|
|
35
|
+
"main": "big",
|
|
36
|
+
"browser": "big.js",
|
|
37
|
+
"module": "big.mjs",
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": "*"
|
|
40
|
+
},
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"files": [
|
|
43
|
+
"big.js",
|
|
44
|
+
"big.mjs",
|
|
45
|
+
"./dist/*"
|
|
46
|
+
]
|
|
47
|
+
}
|