package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "big.js",
  3. "description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic",
  4. "version": "5.2.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/big.js.git"
  22. },
  23. "main": "big",
  24. "browser": "big.js",
  25. "module": "big.mjs",
  26. "author": {
  27. "name": "Michael Mclaughlin",
  28. "email": "M8ch88l@gmail.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/MikeMcl/big.js/issues"
  32. },
  33. "engines": {
  34. "node": "*"
  35. },
  36. "license": "MIT",
  37. "scripts": {
  38. "test": "node ./test/every-test.js",
  39. "build": "uglifyjs big.js --source-map -c -m -o big.min.js"
  40. },
  41. "files": [
  42. "big.js",
  43. "big.mjs",
  44. "big.min.js"
  45. ],
  46. "collective": {
  47. "type": "opencollective",
  48. "url": "https://opencollective.com/bigjs"
  49. }
  50. }