package.json 674 B

123456789101112131415161718
  1. { "name": "ssh2-streams",
  2. "version": "0.1.20",
  3. "author": "Brian White <mscdex@mscdex.net>",
  4. "description": "SSH2 and SFTP(v3) client/server protocol streams for node.js",
  5. "main": "./index",
  6. "engines": { "node": ">=0.10.0" },
  7. "dependencies": {
  8. "streamsearch": "~0.1.2",
  9. "asn1": "~0.2.0",
  10. "semver": "^5.1.0"
  11. },
  12. "scripts": {
  13. "test": "node test/test.js"
  14. },
  15. "keywords": [ "ssh", "ssh2", "sftp", "secure", "protocol", "streams", "client", "server" ],
  16. "licenses": [ { "type": "MIT", "url": "http://github.com/mscdex/ssh2-streams/raw/master/LICENSE" } ],
  17. "repository" : { "type": "git", "url": "http://github.com/mscdex/ssh2-streams.git" }
  18. }