{
  "name": "node-webcrypto-ossl",
  "version": "2.1.3",
  "repository": {
    "type": "git",
    "url": "https://github.com/PeculiarVentures/node-webcrypto-ossl.git"
  },
  "description": "A WebCrypto Polyfill for Node in TypeScript built on OpenSSL",
  "main": "buildjs/index.js",
  "module": "buildjs/index.es.js",
  "types": "index.d.ts",
  "scripts": {
    "prepare": "npm run build",
    "test": "mocha",
    "clear": "rimraf buildjs",
    "build": "rollup -c",
    "rebuild": "npm run clear && npm run build",
    "lint": "tslint -p .",
    "lint:fix": "tslint -p . --fix",
    "prepub": "npm run lint && npm run rebuild",
    "pub": "npm version patch && npm publish && git push",
    "sync": "git ac && git pull --rebase && git push",
    "coverage": "nyc npm test",
    "precoveragehtml": "npm run coverage",
    "coveragehtml": "nyc report -r html",
    "predev": "if [ ! -f coverage/index.html ]; then mkdir coverage; cp .waiting.html coverage/index.html; fi",
    "coveralls": "nyc report --reporter=text-lcov | coveralls"
  },
  "author": "PeculiarVentures",
  "license": "MIT",
  "keywords": [
    "crypto",
    "openssl",
    "webcrypto",
    "rsa",
    "aes",
    "ec",
    "jwk",
    "polyfill",
    "secp256k1"
  ],
  "dependencies": {
    "@peculiar/asn1-schema": "^2.0.36",
    "mkdirp": "^1.0.4",
    "nan": "^2.14.2",
    "pvtsutils": "^1.1.7",
    "tslib": "^2.2.0",
    "webcrypto-core": "^1.2.0"
  },
  "devDependencies": {
    "@peculiar/webcrypto-test": "^1.0.7",
    "@rollup/plugin-alias": "^3.1.2",
    "@rollup/plugin-typescript": "^8.2.1",
    "@types/mkdirp": "^1.0.1",
    "@types/mocha": "^8.2.0",
    "@types/node": "^12.19.12",
    "@types/rimraf": "^3.0.0",
    "coveralls": "^3.1.0",
    "mocha": "^9.0.0",
    "nyc": "^15.1.0",
    "rimraf": "^3.0.2",
    "rollup": "^2.51.1",
    "ts-node": "^10.0.0",
    "tsconfig-paths": "^3.9.0",
    "tslint": "^6.1.3",
    "typescript": "^4.3.2"
  },
  "files": [
    "build",
    "buildjs",
    "src",
    "binding.gyp",
    "index.d.ts",
    "README.md"
  ],
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "include": [
      "lib/**/*.ts"
    ],
    "exclude": [
      "**/*.d.ts"
    ],
    "reporter": [
      "text-summary",
      "html",
      "lcov"
    ]
  },
  "mocha": {
    "require": [
      "ts-node/register",
      "tsconfig-paths/register"
    ],
    "extension": [
      "ts"
    ],
    "watch-files": [
      "test/**/*.ts"
    ]
  }
}
