package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "jsonwebtoken",
  3. "version": "9.0.0",
  4. "description": "JSON Web Token implementation (symmetric and asymmetric)",
  5. "main": "index.js",
  6. "nyc": {
  7. "check-coverage": true,
  8. "lines": 95,
  9. "statements": 95,
  10. "functions": 100,
  11. "branches": 95,
  12. "exclude": [
  13. "./test/**"
  14. ],
  15. "reporter": [
  16. "json",
  17. "lcov",
  18. "text-summary"
  19. ]
  20. },
  21. "scripts": {
  22. "lint": "eslint .",
  23. "coverage": "nyc mocha --use_strict",
  24. "test": "npm run lint && npm run coverage && cost-of-modules"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/auth0/node-jsonwebtoken"
  29. },
  30. "keywords": [
  31. "jwt"
  32. ],
  33. "author": "auth0",
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/auth0/node-jsonwebtoken/issues"
  37. },
  38. "dependencies": {
  39. "jws": "^3.2.2",
  40. "lodash": "^4.17.21",
  41. "ms": "^2.1.1",
  42. "semver": "^7.3.8"
  43. },
  44. "devDependencies": {
  45. "atob": "^2.1.2",
  46. "chai": "^4.1.2",
  47. "conventional-changelog": "~1.1.0",
  48. "cost-of-modules": "^1.0.1",
  49. "eslint": "^4.19.1",
  50. "mocha": "^5.2.0",
  51. "nsp": "^2.6.2",
  52. "nyc": "^11.9.0",
  53. "sinon": "^6.0.0"
  54. },
  55. "engines": {
  56. "npm": ">=6",
  57. "node": ">=12"
  58. },
  59. "files": [
  60. "lib",
  61. "decode.js",
  62. "sign.js",
  63. "verify.js"
  64. ]
  65. }