{
  "name": "@peculiar/x509",
  "version": "1.9.5",
  "description": "@peculiar/x509 is an easy to use TypeScript/Javascript library based on @peculiar/asn1-schema that makes generating X.509 Certificates and Certificate Requests as well as validating certificate chains easy",
  "main": "build/x509.cjs.js",
  "module": "build/x509.es.js",
  "unpkg": "build/x509.js",
  "types": "build/index.d.ts",
  "scripts": {
    "test": "mocha",
    "clear": "rimraf build/* docs",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint --fix . --ext .ts",
    "build": "npm run build:module",
    "build:module": "rollup -c",
    "rebuild": "npm run clear && npm run build",
    "coverage": "nyc npm test",
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
    "docs": "typedoc",
    "pub": "npm run pub:patch",
    "pub:patch": "npm version patch && npm run git:push",
    "pub:minor": "npm version minor && npm run git:push",
    "pub:major": "npm version major && npm run git:push",
    "git:push": "git push --follow-tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/PeculiarVentures/x509.git"
  },
  "keywords": [
    "x509",
    "certificate",
    "csr",
    "pkcs10",
    "pkcs7",
    "cms",
    "rsa",
    "ec"
  ],
  "author": "Peculiar Ventures LLC",
  "contributors": [
    "Miroshin Stepan<microshine@mail.ru>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/PeculiarVentures/x509/issues"
  },
  "homepage": "https://github.com/PeculiarVentures/x509#readme",
  "files": [
    "build/**/*.{ts,js}",
    "README.md",
    "LICENSE"
  ],
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "**/*.d.ts"
    ],
    "reporter": [
      "lcov",
      "text-summary"
    ]
  },
  "devDependencies": {
    "@babel/core": "^7.22.10",
    "@babel/preset-env": "^7.22.10",
    "@peculiar/webcrypto": "^1.4.3",
    "@rollup/plugin-babel": "^6.0.3",
    "@rollup/plugin-commonjs": "^25.0.4",
    "@rollup/plugin-node-resolve": "^15.2.0",
    "@rollup/plugin-terser": "^0.4.3",
    "@types/mocha": "^10.0.1",
    "@types/node": "^20.5.0",
    "@typescript-eslint/eslint-plugin": "^6.4.0",
    "@typescript-eslint/parser": "^6.4.0",
    "coveralls": "^3.1.1",
    "eslint": "^8.47.0",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "rimraf": "^5.0.1",
    "rollup": "^3.28.0",
    "rollup-plugin-dts": "^5.3.1",
    "rollup-plugin-typescript2": "^0.35.0",
    "ts-node": "^10.9.1",
    "typedoc": "^0.24.8",
    "typescript": "^5.1.6"
  },
  "dependencies": {
    "@peculiar/asn1-cms": "^2.3.6",
    "@peculiar/asn1-csr": "^2.3.6",
    "@peculiar/asn1-ecc": "^2.3.6",
    "@peculiar/asn1-pkcs9": "^2.3.6",
    "@peculiar/asn1-rsa": "^2.3.6",
    "@peculiar/asn1-schema": "^2.3.6",
    "@peculiar/asn1-x509": "^2.3.6",
    "pvtsutils": "^1.3.5",
    "reflect-metadata": "^0.1.13",
    "tslib": "^2.6.1",
    "tsyringe": "^4.8.0"
  },
  "resolutions": {
    "minimist": "^1.2.6",
    "json5": "^2.2.3",
    "qs": "^6.11.0",
    "terser": "^5.14.2"
  }
}
