{
  "name": "ts-dpop",
  "version": "0.4.2",
  "description": "Verifies Solid access tokens via their WebID claim, and thus asserts ownership of WebIDs.",
  "license": "MIT",
  "keywords": [
    "Token verification",
    "Solid Identity",
    "Access Token",
    "DPoP",
    "OAuth"
  ],
  "author": "Matthieu Bosquet <matthieu@cognithive.com> (https://github.com/matthieubosquet/)",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "lint:eslint": "eslint --cache --fix --ignore-path .gitignore .",
    "lint:prettier": "prettier --ignore-path .gitignore --write '**/*.{css,md,mdx}'",
    "lint:staged": "lint-staged",
    "prepublishOnly": "npm ci && pinst --disable && npm run build",
    "postpublish": "pinst --enable",
    "_postinstall": "[[ -n \"$CI\" ]] || husky install",
    "test": "jest"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/matthieubosquet/ts-dpop.git"
  },
  "bugs": {
    "url": "https://github.com/matthieubosquet/ts-dpop/issues"
  },
  "homepage": "https://github.com/matthieubosquet/ts-dpop#readme",
  "devDependencies": {
    "@solid/eslint-config-base": "^0.1.8",
    "@tsconfig/node12": "^1.0.7",
    "@types/jest": "^26.0.19",
    "@types/lru-cache": "^5.1.0",
    "@types/node": "12.x",
    "@typescript-eslint/eslint-plugin": "^4.11.1",
    "@typescript-eslint/parser": "^4.11.1",
    "eslint": "^7.16.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.1.3",
    "eslint-plugin-prettier": "^3.3.0",
    "husky": "^5.0.6",
    "jest": "^26.6.3",
    "jest-circus": "^26.6.3",
    "lint-staged": "^10.5.3",
    "pinst": "^2.1.1",
    "prettier": "^2.2.1",
    "ts-jest": "^26.4.4",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "cross-fetch": "^3.0.6",
    "jose": "^3.5.0",
    "lru-cache": "^6.0.0",
    "n3": "^1.6.4",
    "nmspc": "^0.2.4",
    "rdf-data-factory": "^1.0.4",
    "rdf-dereference": "^1.6.0",
    "rdf-parse": "^1.6.1",
    "rdf-store-stream": "^1.1.0",
    "ts-guards": "^0.5.1"
  }
}
