package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.1",
  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 .",
  21. "prepublishOnly": "npm test",
  22. "test": "npm run build & jasmine --config=test/config.json"
  23. },
  24. "main": "index",
  25. "types": "index.d.ts",
  26. "engines": {
  27. "node": ">=0.6.19"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/mccormicka/string-argv/issues"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/mccormicka/string-argv"
  35. },
  36. "homepage": "https://github.com/mccormicka/string-argv",
  37. "readmeFilename": "README.md",
  38. "dependencies": {},
  39. "devDependencies": {
  40. "jasmine": "^2.4.1",
  41. "typescript": "^3.4.3"
  42. }
  43. }