package.json 636 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "strnum",
  3. "version": "2.1.1",
  4. "description": "Parse String to Number based on configuration",
  5. "type": "module",
  6. "main": "strnum.js",
  7. "scripts": {
  8. "test": "jasmine strnum.test.js"
  9. },
  10. "keywords": [
  11. "string",
  12. "number",
  13. "parse",
  14. "convert"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/NaturalIntelligence/strnum"
  19. },
  20. "author": "Amit Gupta (https://amitkumargupta.work/)",
  21. "license": "MIT",
  22. "funding": [
  23. {
  24. "type": "github",
  25. "url": "https://github.com/sponsors/NaturalIntelligence"
  26. }
  27. ],
  28. "devDependencies": {
  29. "jasmine": "^5.6.0"
  30. }
  31. }