package.json 756 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "is-ssh",
  3. "version": "1.4.0",
  4. "description": "Check if an input value is a ssh url or not.",
  5. "main": "lib/index.js",
  6. "directories": {
  7. "example": "example",
  8. "test": "test"
  9. },
  10. "scripts": {
  11. "test": "node test"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git@github.com:IonicaBizau/node-is-ssh.git"
  16. },
  17. "keywords": [
  18. "ssh",
  19. "url",
  20. "check",
  21. "parser"
  22. ],
  23. "author": "Ionică Bizău <bizauionica@gmail.com> (http://ionicabizau.net)",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/IonicaBizau/node-is-ssh/issues"
  27. },
  28. "homepage": "https://github.com/IonicaBizau/node-is-ssh",
  29. "dependencies": {
  30. "protocols": "^2.0.1"
  31. },
  32. "devDependencies": {
  33. "tester": "^1.3.1"
  34. }
  35. }