{
  "name": "globalid-crypto-library",
  "version": "5.4.2",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=12"
  },
  "dependencies": {
    "@scure/base": "^1.1.1",
    "elliptic": "^6.5.4",
    "node-jose": "^2.2.0",
    "smart-buffer": "^4.2.0",
    "sodium-universal": "^4.0.1"
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "**/interfaces.ts",
      "**/*.d.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "text",
      "html"
    ],
    "sourceMap": true,
    "instrument": true,
    "all": true
  },
  "scripts": {
    "lint": "eslint \"src/**/*\" \"tests/**/*\" --format unix",
    "lint-fix": "npm run lint -- --fix",
    "build": "npm run build:clean && npm run lint && npm run build:lib",
    "build:clean": "rimraf dist",
    "build:lib": "tsc --declaration -p tsconfig-build.json",
    "test": "nyc npm run test:integration",
    "test:integration": "mocha --require ts-node/register --require source-map-support/register --full-trace \"tests/integration/*.ts\" --timeout 999999"
  },
  "devDependencies": {
    "@globalid/eslint-plugin": "^1.3.1",
    "@noble/curves": "^1.0.0",
    "@types/bn.js": "^5.1.0",
    "@types/chai": "^4.3.5",
    "@types/chai-as-promised": "^7.1.5",
    "@types/elliptic": "^6.4.14",
    "@types/lodash": "^4.14.201",
    "@types/mocha": "^10.0.1",
    "@types/node": "^20.4.2",
    "@types/node-jose": "^1.1.10",
    "@types/sinon": "^10.0.14",
    "@typescript-eslint/parser": "^5.62.0",
    "chai": "^4.3.7",
    "chai-as-promised": "^7.1.1",
    "chai-match-pattern": "^1.3.0",
    "eslint": "^8.53.0",
    "eslint-plugin-mocha": "^10.0.3",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "rimraf": "^5.0.0",
    "sinon": "^15.2.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2"
  }
}
