package.json 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "big.js",
  3. "description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic",
  4. "version": "3.2.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/big.js.git"
  22. },
  23. "main": "big.js",
  24. "author": {
  25. "name": "Michael Mclaughlin",
  26. "email": "M8ch88l@gmail.com"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/MikeMcl/big.js/issues"
  30. },
  31. "engines": {
  32. "node": "*"
  33. },
  34. "license": "MIT",
  35. "scripts": {
  36. "test": "node ./test/every-test.js",
  37. "build": "uglifyjs big.js --source-map doc/big.js.map -c -m -o big.min.js --preamble \"/* big.js v3.2.0 https://github.com/MikeMcl/big.js/LICENCE */\""
  38. },
  39. "files": [
  40. "big.js",
  41. "big.min.js"
  42. ]
  43. }