package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "sshpk",
  3. "version": "1.16.1",
  4. "description": "A library for finding and using SSH public keys",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "test": "tape test/*.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/joyent/node-sshpk.git"
  12. },
  13. "author": "Joyent, Inc",
  14. "contributors": [
  15. {
  16. "name": "Dave Eddy",
  17. "email": "dave@daveeddy.com"
  18. },
  19. {
  20. "name": "Mark Cavage",
  21. "email": "mcavage@gmail.com"
  22. },
  23. {
  24. "name": "Alex Wilson",
  25. "email": "alex@cooperi.net"
  26. }
  27. ],
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/arekinath/node-sshpk/issues"
  31. },
  32. "engines": {
  33. "node": ">=0.10.0"
  34. },
  35. "directories": {
  36. "bin": "./bin",
  37. "lib": "./lib",
  38. "man": "./man/man1"
  39. },
  40. "homepage": "https://github.com/arekinath/node-sshpk#readme",
  41. "dependencies": {
  42. "asn1": "~0.2.3",
  43. "assert-plus": "^1.0.0",
  44. "dashdash": "^1.12.0",
  45. "getpass": "^0.1.1",
  46. "safer-buffer": "^2.0.2",
  47. "jsbn": "~0.1.0",
  48. "tweetnacl": "~0.14.0",
  49. "ecc-jsbn": "~0.1.1",
  50. "bcrypt-pbkdf": "^1.0.0"
  51. },
  52. "optionalDependencies": {
  53. },
  54. "devDependencies": {
  55. "tape": "^3.5.0",
  56. "benchmark": "^1.0.0",
  57. "sinon": "^1.17.2",
  58. "temp": "^0.8.2"
  59. }
  60. }