package.json 656 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "shell-quote",
  3. "description": "quote and parse shell commands",
  4. "version": "1.7.2",
  5. "author": {
  6. "name": "James Halliday",
  7. "email": "mail@substack.net",
  8. "url": "http://substack.net"
  9. },
  10. "bugs": "https://github.com/substack/node-shell-quote/issues",
  11. "devDependencies": {
  12. "tape": "4"
  13. },
  14. "homepage": "https://github.com/substack/node-shell-quote",
  15. "keywords": [
  16. "command",
  17. "parse",
  18. "quote",
  19. "shell"
  20. ],
  21. "license": "MIT",
  22. "main": "index.js",
  23. "repository": {
  24. "type": "git",
  25. "url": "http://github.com/substack/node-shell-quote.git"
  26. },
  27. "scripts": {
  28. "test": "tape test/*.js"
  29. }
  30. }