{
  "name": "@relaycorp/dnssec",
  "version": "1.12.1",
  "author": {
    "email": "no-reply@relaycorp.tech",
    "name": "Relaycorp, Inc.",
    "url": "https://relaycorp.tech/"
  },
  "description": "Resolver-agnostic DNSSEC library",
  "type": "module",
  "typings": "build/lib/index.d.ts",
  "main": "build/lib/index.js",
  "repository": "https://github.com/relaycorp/dnssec-js",
  "homepage": "https://docs.relaycorp.tech/dnssec-js/",
  "license": "MIT",
  "keywords": [
    "dnssec",
    "rfc4033",
    "rfc4034",
    "rfc4035"
  ],
  "scripts": {
    "build": "run-s clean tsc",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:eslint": "eslint -c .eslintrc.cjs --fix src",
    "static-checks": "run-p static-checks:*",
    "static-checks:lint": "eslint -c .eslintrc.cjs src",
    "static-checks:prettier": "prettier \"src/**/*.ts\" --list-different",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
    "test:integration": "run-s build test:integration:jest",
    "test:integration:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest-integration-transpiled.config.mjs",
    "tsc": "tsc",
    "doc-api": "typedoc src/index.ts --out build/docs",
    "clean": "del-cli build test"
  },
  "engines": {
    "node": ">=16"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@relaycorp/eslint-config": "^1.1.63",
    "@relaycorp/shared-config": "^1.14.1",
    "@types/jest": "^29.5.11",
    "@typescript-eslint/parser": "^5.61.0",
    "del-cli": "^5.1.0",
    "dohdec": "^6.0.1",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "jest-date-mock": "^1.0.8",
    "jest-extended": "^4.0.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.8.8",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "typedoc": "^0.25.4",
    "typescript": "^4.9.5"
  },
  "dependencies": {
    "@leichtgewicht/dns-packet": "^6.0.3",
    "@peculiar/asn1-schema": "^2.3.8",
    "bigint-conversion": "^2.4.3",
    "date-fns": "^2.30.0"
  },
  "prettier": "@relaycorp/shared-config/.prettierrc.json",
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  }
}
