You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
802 B
40 lines
802 B
{ |
|
"name": "decimal.js", |
|
"description": "An arbitrary-precision Decimal type for JavaScript.", |
|
"version": "10.3.1", |
|
"keywords": [ |
|
"arbitrary", |
|
"precision", |
|
"arithmetic", |
|
"big", |
|
"number", |
|
"decimal", |
|
"float", |
|
"biginteger", |
|
"bigdecimal", |
|
"bignumber", |
|
"bigint", |
|
"bignum" |
|
], |
|
"repository" : { |
|
"type": "git", |
|
"url": "https://github.com/MikeMcl/decimal.js.git" |
|
}, |
|
"main": "decimal", |
|
"module": "decimal.mjs", |
|
"browser": "decimal.js", |
|
"author": { |
|
"name": "Michael Mclaughlin", |
|
"email": "M8ch88l@gmail.com" |
|
}, |
|
"license": "MIT", |
|
"scripts": { |
|
"test": "node ./test/test.js" |
|
}, |
|
"types": "decimal.d.ts", |
|
"files": [ |
|
"decimal.js", |
|
"decimal.mjs", |
|
"decimal.d.ts" |
|
] |
|
}
|
|
|