package.json 845 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "bignumber.js",
  3. "description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
  4. "version": "9.0.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. "author": {
  28. "name": "Michael Mclaughlin",
  29. "email": "M8ch88l@gmail.com"
  30. },
  31. "engines": {
  32. "node": "*"
  33. },
  34. "license": "MIT",
  35. "scripts": {
  36. "test": "node test/test",
  37. "build": "uglifyjs bignumber.js --source-map -c -m -o bignumber.min.js"
  38. },
  39. "dependencies": {}
  40. }