Get the name of a number, even if it's stupidly big.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.

37 satır
758 B

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