package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "passport-ethereum-eip4361",
  3. "version": "0.1.1",
  4. "description": "Ethereum authentication strategy for Passport.",
  5. "keywords": [
  6. "passport",
  7. "ethereum"
  8. ],
  9. "author": {
  10. "name": "Jared Hanson",
  11. "email": "jaredhanson@gmail.com",
  12. "url": "https://www.jaredhanson.me/"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/jaredhanson/passport-ethereum.git"
  17. },
  18. "bugs": {
  19. "url": "https://github.com/jaredhanson/passport-ethereum/issues"
  20. },
  21. "funding": {
  22. "type": "github",
  23. "url": "https://github.com/sponsors/jaredhanson"
  24. },
  25. "license": "MIT",
  26. "licenses": [
  27. {
  28. "type": "MIT",
  29. "url": "https://opensource.org/licenses/MIT"
  30. }
  31. ],
  32. "main": "./lib",
  33. "dependencies": {
  34. "passport-strategy": "1.x.x",
  35. "rand-token": "^1.0.1",
  36. "siwe": "^1.1.6"
  37. },
  38. "devDependencies": {
  39. "chai": "2.x.x",
  40. "chai-passport-strategy": "3.x.x",
  41. "make-node": "0.3.x",
  42. "mocha": "2.x.x",
  43. "proxyquire": "^1.7.10",
  44. "sinon": "^1.17.6"
  45. },
  46. "engines": {
  47. "node": ">= 0.6.0"
  48. },
  49. "scripts": {
  50. "test": "mocha --require ./test/bootstrap/node --recursive"
  51. }
  52. }