package.json 498 B

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