package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "string-argv",
  3. "description": "string-argv parses a string into an argument array to mimic process.argv. This is useful when testing Command Line Utilities that you want to pass arguments to.",
  4. "version": "0.3.2",
  5. "contributors": [
  6. {
  7. "name": "Michael Ferris",
  8. "email": "mike.ferri@hotmail.com"
  9. }
  10. ],
  11. "author": {
  12. "name": "Anthony McCormick",
  13. "email": "anthony.mccormick@gmail.com"
  14. },
  15. "license": "MIT",
  16. "keywords": [
  17. "argv"
  18. ],
  19. "scripts": {
  20. "build": "tsc -p . & tsc -p tsconfig.commonjs.json",
  21. "prepublishOnly": "npm test",
  22. "test": "npm run build & jasmine --config=test/config.json"
  23. },
  24. "type": "module",
  25. "exports": {
  26. ".": {
  27. "types": "./index.d.ts",
  28. "import": "./index.js",
  29. "require": "./commonjs/index.js"
  30. }
  31. },
  32. "main": "./commonjs/index.js",
  33. "module": "./index.js",
  34. "types": "index.d.ts",
  35. "engines": {
  36. "node": ">=0.6.19"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/mccormicka/string-argv/issues"
  40. },
  41. "repository": {
  42. "type": "git",
  43. "url": "https://github.com/mccormicka/string-argv"
  44. },
  45. "homepage": "https://github.com/mccormicka/string-argv",
  46. "readmeFilename": "README.md",
  47. "devDependencies": {
  48. "jasmine": "^4.4.0",
  49. "typescript": "^5.0.4"
  50. }
  51. }