package.json 927 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "koa-jwt2",
  3. "version": "1.0.3",
  4. "description": "JWT authentication middleware.",
  5. "keywords": [
  6. "auth",
  7. "authn",
  8. "authentication",
  9. "authz",
  10. "authorization",
  11. "http",
  12. "jwt",
  13. "token",
  14. "oauth",
  15. "koa"
  16. ],
  17. "main": "./lib",
  18. "scripts": {
  19. "test": "egg-bin test"
  20. },
  21. "dependencies": {
  22. "async": "^1.5.0",
  23. "jsonwebtoken": "^8.1.0",
  24. "koa-unless": "^1.0.7",
  25. "lodash.isfunction": "^3.0.9",
  26. "lodash.set": "^4.0.0"
  27. },
  28. "devDependencies": {
  29. "egg-bin": "^4.3.7",
  30. "conventional-changelog": "~1.1.0",
  31. "mocha": "1.x.x",
  32. "koa": "^2.5.0"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git://github.com/okoala/koa-jwt2.git"
  37. },
  38. "bugs": {
  39. "url": "http://github.com/okoala/koa-jwt2/issues"
  40. },
  41. "author": {
  42. "name": "okoala",
  43. "email": "dapixp@gmail.com"
  44. },
  45. "license": "MIT",
  46. "engines": {
  47. "node": ">= 8.0.0"
  48. }
  49. }