{
  "name": "base64url-universal",
  "version": "2.0.0",
  "description": "Encode/decode \"Base64url Encoding\" format of JSON Web Signature (JWS) RFC7517.",
  "homepage": "https://github.com/digitalbazaar/base64url-universal",
  "author": {
    "name": "Digital Bazaar, Inc.",
    "email": "support@digitalbazaar.com",
    "url": "https://digitalbazaar.com/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/digitalbazaar/base64url-universal"
  },
  "bugs": {
    "url": "https://github.com/digitalbazaar/base64url-universal/issues",
    "email": "support@digitalbazaar.com"
  },
  "license": "BSD-3-Clause",
  "type": "module",
  "exports": "./lib/index.js",
  "browser": {
    "./lib/index.js": "./lib/browser.js"
  },
  "files": [
    "lib/**/*.js"
  ],
  "dependencies": {
    "base64url": "^3.0.1"
  },
  "devDependencies": {
    "c8": "^7.11.3",
    "chai": "^4.3.6",
    "chai-bytes": "^0.1.2",
    "cross-env": "^7.0.3",
    "eslint": "^8.16.0",
    "eslint-config-digitalbazaar": "^3.0.0",
    "eslint-plugin-jsdoc": "^39.3.2",
    "eslint-plugin-unicorn": "^42.0.0",
    "karma": "^6.3.20",
    "karma-chrome-launcher": "^3.1.1",
    "karma-mocha": "^2.0.1",
    "karma-mocha-reporter": "^2.2.5",
    "karma-sourcemap-loader": "^0.3.8",
    "karma-webpack": "^5.0.0",
    "mocha": "^10.0.0",
    "mocha-lcov-reporter": "^1.3.0",
    "webpack": "^5.72.1"
  },
  "c8": {
    "reporter": [
      "lcov",
      "text-summary",
      "text"
    ]
  },
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "test": "npm run test-node",
    "test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -t 30000 -A -R ${REPORTER:-spec} tests/*.spec.js",
    "test-karma": "karma start karma.conf.cjs",
    "coverage": "cross-env NODE_ENV=test c8 npm run test-node",
    "coverage-ci": "cross-env NODE_ENV=test c8 --reporter=lcovonly --reporter=text-summary --reporter=text npm run test-node",
    "coverage-report": "c8 report",
    "lint": "eslint ."
  },
  "keywords": [
    "base64",
    "base64url"
  ]
}
