{
  "name": "protocol-common",
  "version": "1.1.3",
  "description": "Common code for kiva protocol webservices",
  "license": "Apache-2.0",
  "type": "module",
  "homepage": "https://github.com/kiva/protocol-common#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kiva/protocol-common.git",
    "directory": ""
  },
  "keywords": [
    "kiva",
    "protocol",
    "SSI",
    "hyperledger"
  ],
  "author": "protocol-services",
  "exports": {
    ".": "./index.js",
    "./validation": "./validation/index.js"
  },
  "files": [
    "*"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "rm -rf dist && npm run build:js && npm run build:dts && cp package.json dist/",
    "build:js": "tsc",
    "build:dts": "dts-bundle-generator --config dts.json",
    "build:pack": "npm run build && cd dist/ && npm pack",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "node -r dotenv/config node_modules/.bin/jest --runInBand",
    "setup": "npm run build && cd dist && npm link && cd ..",
    "teardown": "cd dist && npm unlink && cd .."
  },
  "dependencies": {
    "@nestjs/axios": "^0.0.7",
    "@nestjs/common": "^8.2.0",
    "@nestjs/core": "^8.2.0",
    "@nestjs/platform-express": "^8.2.0",
    "axios": "^0.26.0",
    "class-transformer": "^0.4.0",
    "class-validator": "^0.13.1",
    "cls-hooked": "^4.2.2",
    "crypto-js": "^4.1.1",
    "crypto-random-string": "^4.0.0",
    "dd-trace": "^2.5.0",
    "dotenv": "^10.0.0",
    "jaeger-client": "^3.19.0",
    "nestjs-pino": "^2.5.2",
    "opentracing": "^0.14.5",
    "pino": "^7.11.0",
    "pino-pretty": "^7.6.1",
    "pino-http": "^6.6.0",
    "reflect-metadata": "^0.1.13",
    "rxjs": "^7.4.0",
    "typescript": "^4.4.4"
  },
  "devDependencies": {
    "@nestjs/testing": "^8.2.0",
    "@types/express": "^4.17.13",
    "@types/jest": "^27.0.2",
    "@types/supertest": "^2.0.11",
    "@typescript-eslint/eslint-plugin": "^5.17.0",
    "@typescript-eslint/eslint-plugin-tslint": "^5.17.0",
    "@typescript-eslint/parser": "^5.17.0",
    "dts-bundle-generator": "^6.9.0",
    "eslint": "^8.12.0",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-jsdoc": "^38.1.4",
    "eslint-plugin-prefer-arrow": "^1.2.3",
    "eslint-plugin-react": "^7.29.4",
    "jest": "^27.3.1",
    "prettier": "^2.4.1",
    "supertest": "^6.1.6",
    "ts-jest": "^27.0.7",
    "tslint-config-prettier": "^1.18.0"
  },
  "jest": {
    "globals": {
      "factories": {}
    },
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": "test",
    "testRegex": ".(e2e-spec|spec).ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "coverageDirectory": "../coverage",
    "testEnvironment": "node"
  }
}
