package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "shell-quote",
  3. "version": "1.6.1",
  4. "description": "quote and parse shell commands",
  5. "main": "index.js",
  6. "devDependencies": {
  7. "tape": "~2.3.0"
  8. },
  9. "scripts": {
  10. "test": "tape test/*.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "http://github.com/substack/node-shell-quote.git"
  15. },
  16. "keywords": [
  17. "shell",
  18. "command",
  19. "quote",
  20. "parse"
  21. ],
  22. "testling": {
  23. "files": "test/*.js",
  24. "browsers": [
  25. "ie/6..latest",
  26. "firefox/3.5",
  27. "firefox/15..latest",
  28. "firefox/nightly",
  29. "chrome/25..latest",
  30. "chrome/canary",
  31. "opera/10..latest",
  32. "opera/next",
  33. "safari/5.1..latest",
  34. "ipad/6.0..latest",
  35. "iphone/6.0..latest",
  36. "android-browser/4.2..latest"
  37. ]
  38. },
  39. "author": {
  40. "name": "James Halliday",
  41. "email": "mail@substack.net",
  42. "url": "http://substack.net"
  43. },
  44. "license": "MIT",
  45. "dependencies": {
  46. "jsonify": "~0.0.0",
  47. "array-filter": "~0.0.0",
  48. "array-reduce": "~0.0.0",
  49. "array-map": "~0.0.0"
  50. }
  51. }