{
  "name": "@mattrglobal/http-signatures",
  "version": "4.2.0",
  "description": "An implementation of Http request signing and verifying",
  "private": false,
  "main": "lib/index.js",
  "engines": {
    "node": "=14 || =16 || >=18"
  },
  "typings": "lib/index.d.ts",
  "directories": {
    "lib": "lib",
    "test": "__tests__"
  },
  "files": [
    "lib"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mattrglobal/http-signatures.git"
  },
  "author": "MATTR",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/mattrglobal/http-signatures/issues"
  },
  "homepage": "https://github.com/mattrglobal/http-signatures#readme",
  "scripts": {
    "build": "rm -rf lib/ && tsc --pretty",
    "clean": "rm -rf lib/",
    "test": "jest --passWithNoTests",
    "pre-pr": "yarn format && yarn lint:fix && yarn build && yarn test",
    "lint": "eslint . --ext .ts --color --format=table && prettier --check '**/*.{js,ts,md,json,yml}'",
    "lint:fix": "eslint . --ext .ts --color --format=table --fix && yarn format",
    "format": "prettier --write '**/*.{js,ts,md,json,yml}'",
    "docs": "typedoc --plugin typedoc-plugin-markdown --theme docusaurus",
    "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
    "version:release": "yarn version --message \"chore(release): publish\"",
    "publish:stable": "./scripts/publish_stable.sh",
    "publish:unstable": "./scripts/publish_unstable.sh",
    "prepare": "husky install"
  },
  "devDependencies": {
    "@commitlint/cli": "17.7.2",
    "@commitlint/config-conventional": "17.7.0",
    "@types/express": "4.17.18",
    "@types/jest": "29.5.5",
    "@types/ramda": "0.27.32",
    "@typescript-eslint/eslint-plugin": "5.28.0",
    "@typescript-eslint/parser": "5.28.0",
    "body-parser": "1.20.3",
    "conventional-changelog": "5.1.0",
    "conventional-changelog-cli": "4.1.0",
    "eslint": "8.51.0",
    "eslint-formatter-table": "7.32.1",
    "eslint-plugin-functional": "4.2.1",
    "eslint-plugin-header": "3.1.1",
    "eslint-plugin-import": "2.26.0",
    "eslint-plugin-node": "11.1.0",
    "express": "4.21.2",
    "husky": "8.0.1",
    "jest": "29.7.0",
    "prettier": "2.7.1",
    "pretty-quick": "2.0.1",
    "ts-jest": "29.1.1",
    "ts-node": "8.4.1",
    "typedoc": "0.22.17",
    "typedoc-plugin-markdown": "3.12.1",
    "typescript": "4.7.3"
  },
  "dependencies": {
    "@stablelib/base64": "1.0.1",
    "@stablelib/sha256": "1.0.1",
    "@stablelib/sha512": "1.0.1",
    "buffer": "6.0.3",
    "neverthrow": "4.3.0",
    "ramda": "0.30.1",
    "structured-headers": "0.5.0",
    "url": "0.11.0"
  }
}
