package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "egg-jwt",
  3. "version": "3.1.7",
  4. "description": "JWT authentication plugin for egg",
  5. "eggPlugin": {
  6. "name": "jwt",
  7. "optionalDependencies": [
  8. "onerror"
  9. ]
  10. },
  11. "keywords": [
  12. "egg",
  13. "eggPlugin",
  14. "egg-plugin",
  15. "jwt"
  16. ],
  17. "dependencies": {
  18. "jsonwebtoken": "^8.3.0",
  19. "koa-jwt2": "^1.0.3"
  20. },
  21. "devDependencies": {
  22. "autod": "^3.0.1",
  23. "egg": "^2.10.0",
  24. "egg-bin": "^4.8.1",
  25. "egg-ci": "^1.8.0",
  26. "egg-mock": "^3.19.3",
  27. "eslint": "^5.4.0",
  28. "eslint-config-egg": "^7.0.0",
  29. "webstorm-disable-index": "^1.2.0"
  30. },
  31. "engines": {
  32. "node": ">=6.0.0"
  33. },
  34. "scripts": {
  35. "test": "npm run lint -- --fix && npm run test-local",
  36. "test-local": "egg-bin test",
  37. "cov": "egg-bin cov",
  38. "lint": "eslint .",
  39. "ci": "npm run lint && npm run cov",
  40. "autod": "autod"
  41. },
  42. "files": [
  43. "index.js",
  44. "app.js",
  45. "agent.js",
  46. "index.d.ts",
  47. "config",
  48. "app",
  49. "lib"
  50. ],
  51. "ci": {
  52. "version": "8, 10, 12"
  53. },
  54. "repository": {
  55. "type": "git",
  56. "url": "git+https://github.com/okoala/egg-jwt.git"
  57. },
  58. "bugs": {
  59. "url": "https://github.com/okoala/egg-jwt/issues"
  60. },
  61. "homepage": "https://github.com/okoala/egg-jwt#readme",
  62. "author": "okoala <dapixp@gmail.com>",
  63. "license": "MIT"
  64. }