Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "bignumber.js",
  3. "description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
  4. "version": "9.1.0",
  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. "test": "node test/test"
  48. },
  49. "dependencies": {}
  50. }