package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "jwks-rsa",
  3. "version": "3.1.0",
  4. "description": "Library to retrieve RSA public keys from a JWKS endpoint",
  5. "main": "src/index.js",
  6. "files": [
  7. "src",
  8. "index.d.ts"
  9. ],
  10. "types": "index.d.ts",
  11. "engines": {
  12. "node": ">=14"
  13. },
  14. "dependencies": {
  15. "@types/express": "^4.17.17",
  16. "@types/jsonwebtoken": "^9.0.2",
  17. "debug": "^4.3.4",
  18. "jose": "^4.14.6",
  19. "limiter": "^1.1.5",
  20. "lru-memoizer": "^2.2.0"
  21. },
  22. "devDependencies": {
  23. "@types/chai": "^4.3.6",
  24. "@types/express-jwt-v6": "npm:@types/express-jwt@^6.0.4",
  25. "@types/mocha": "^10.0.1",
  26. "@types/nock": "^11.0.0",
  27. "@types/node": "^20.6.0",
  28. "chai": "^4.3.8",
  29. "chai-as-promised": "^7.1.1",
  30. "eslint": "^8.49.0",
  31. "express": "^4.18.2",
  32. "express-jwt": "^8.4.1",
  33. "express-jwt-v6": "npm:express-jwt@^6.1.2",
  34. "express-jwt-v7": "npm:express-jwt@^7.5.0",
  35. "jose2": "npm:jose@^2.0.6",
  36. "jsonwebtoken": "^9.0.2",
  37. "koa": "^2.14.2",
  38. "koa-jwt": "^4.0.4",
  39. "mocha": "^10.2.0",
  40. "nock": "^13.3.3",
  41. "nyc": "^15.1.0",
  42. "passport": "^0.6.0",
  43. "passport-jwt": "^4.0.1",
  44. "rimraf": "^5.0.1",
  45. "supertest": "^6.3.3",
  46. "ts-node": "^10.9.1",
  47. "typescript": "^5.2.2"
  48. },
  49. "scripts": {
  50. "clean:ts": "rimraf ts-output/",
  51. "lint": "eslint ./src ./tests",
  52. "test:ts": "npm run clean:ts && tsc && NODE_ENV=test mocha --exit --timeout 5000 $(find ./ts-output -name *.tests.js)",
  53. "test:js": "NODE_ENV=test mocha --exit --timeout 5000 $(find ./tests -name *.tests.js)",
  54. "test": "npm run test:js && npm run test:ts",
  55. "test:ci": "nyc --reporter=lcov npm test",
  56. "test-watch": "NODE_ENV=test mocha --exit --timeout 5000 $(find ./tests -name *.tests.js) --watch",
  57. "release": "git tag $npm_package_version && git push && git push --tags && npm publish"
  58. },
  59. "repository": {
  60. "type": "git",
  61. "url": "git+https://github.com/auth0/node-jwks-rsa.git"
  62. },
  63. "keywords": [
  64. "jwks",
  65. "rsa",
  66. "jwt"
  67. ],
  68. "author": "Auth0",
  69. "license": "MIT",
  70. "bugs": {
  71. "url": "https://github.com/auth0/node-jwks-rsa/issues"
  72. },
  73. "homepage": "https://github.com/auth0/node-jwks-rsa#readme"
  74. }