package.json 916 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "http-signature",
  3. "description": "Reference implementation of Joyent's HTTP Signature scheme.",
  4. "version": "1.2.0",
  5. "license": "MIT",
  6. "author": "Joyent, Inc",
  7. "contributors": [
  8. "Mark Cavage <mcavage@gmail.com>",
  9. "David I. Lehn <dil@lehn.org>",
  10. "Patrick Mooney <patrick.f.mooney@gmail.com>"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/joyent/node-http-signature.git"
  15. },
  16. "homepage": "https://github.com/joyent/node-http-signature/",
  17. "bugs": "https://github.com/joyent/node-http-signature/issues",
  18. "keywords": [
  19. "https",
  20. "request"
  21. ],
  22. "engines": {
  23. "node": ">=0.8",
  24. "npm": ">=1.3.7"
  25. },
  26. "main": "lib/index.js",
  27. "scripts": {
  28. "test": "tap test/*.js"
  29. },
  30. "dependencies": {
  31. "assert-plus": "^1.0.0",
  32. "jsprim": "^1.2.2",
  33. "sshpk": "^1.7.0"
  34. },
  35. "devDependencies": {
  36. "tap": "0.4.2",
  37. "uuid": "^2.0.2"
  38. }
  39. }