Get the name of a number, even if it's stupidly big.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

42 lines
857 B

  1. {
  2. "name": "@theoryofnekomata/number-name",
  3. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com> (https://modal.sh)",
  4. "module": "dist/number-name.esm.js",
  5. "version": "0.1.0",
  6. "license": "MIT",
  7. "main": "dist/index.js",
  8. "typings": "dist/index.d.ts",
  9. "files": [
  10. "dist",
  11. "src"
  12. ],
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "start": "tsdx watch",
  18. "build": "tsdx build",
  19. "test": "tsdx test",
  20. "lint": "tsdx lint",
  21. "prepare": "tsdx build"
  22. },
  23. "peerDependencies": {},
  24. "husky": {
  25. "hooks": {
  26. "pre-commit": "tsdx lint"
  27. }
  28. },
  29. "devDependencies": {
  30. "@types/big.js": "^4.0.5",
  31. "@types/node": "^14.6.0",
  32. "fast-check": "^2.1.0",
  33. "husky": "^4.2.5",
  34. "tsdx": "^0.13.2",
  35. "tslib": "^2.0.1",
  36. "typescript": "^3.9.7"
  37. },
  38. "dependencies": {
  39. "big.js": "^5.2.2"
  40. }
  41. }