{
  "name": "jwt-authn",
  "version": "2.1.0",
  "description": "JWT decoder, encoder, and more with only Node >=18.18.2 as a requirement and clipboardy as the only dependency.",
  "author": "Anthony Dombrowski",
  "license": "MIT-Modern-Variant",
  "homepage": "https://github.com/akdombrowski/jwt-authn#readme",
  "bugs": {
    "url": "https://github.com/akdombrowski/jwt-authn/issues"
  },
  "main": "./lib/index.min.js",
  "bin": {
    "jwt": "cli_lib/index.min.js"
  },
  "files": [
    "./src/index.min.js",
    "./cli_lib/index.min.js",
    "./lib/index.min.js"
  ],
  "scripts": {
    "prepare": "npm run build",
    "build": "npm run babelify && npm run tersify",
    "test": "cross-env NODE_ENV=test npm run nycest",
    "nycest": "nyc mocha test",
    "mocha": "mocha test",
    "babelify": "babel ./src/index.js -o ./lib/index.js && babel ./cli/index.js -o ./cli_lib/index.js",
    "tersify": "terser ./src/index.js -f quote_style=2 -o ./src/index.min.js -c -m --sourcemap && terser ./cli/index.js -f quote_style=2 -o ./cli/index.min.js -c -m --sourcemap && terser ./cli_lib/index.js -f quote_style=2 -o ./cli_lib/index.min.js -c -m --sourcemap && terser ./lib/index.js -f quote_style=2 -o ./lib/index.min.js -c -m --sourcemap"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/akdombrowski/jwt-authn.git"
  },
  "keywords": [
    "jwt",
    "decoder",
    "encoder",
    "jot",
    "oauth",
    "oauth2.0",
    "authentication",
    "authorization",
    "jwt-decoder",
    "jwt-encoder",
    "token",
    "jwt decoder",
    "jwt encoder",
    "JSON",
    "crypto",
    "nodejs",
    "authn",
    "authz",
    "sha256",
    "rs256",
    "hs256",
    "jws",
    "alg",
    "verify",
    "sign",
    "signature",
    "header",
    "payload",
    "base64url"
  ],
  "engines": {
    "node": ">=15.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.23.0",
    "@babel/core": "^7.23.3",
    "@babel/preset-env": "^7.23.3",
    "@babel/register": "^7.22.15",
    "@istanbuljs/nyc-config-babel": "^3.0.0",
    "babel-plugin-istanbul": "^6.1.1",
    "braces": ">=3.0.2",
    "chai": "^4.3.10",
    "cross-env": "^7.0.3",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "sinon": "^17.0.1",
    "terser": "^5.24.0"
  },
  "dependencies": {
    "clipboardy": "^4.0.0"
  }
}
