{
  "name": "tresorit-node-webcrypto-ossl",
  "version": "3.0.0",
  "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/webcrypto.js",
  "types": "index.d.ts",
  "scripts": {
    "clean": "rm -rf build/ buildjs/ coverage/ .nyc_output/ npm-debug.log npm-debug.log.*",
    "prepare": "npm run build",
    "test": "mocha",
    "build": "npm run build:es5",
    "build:es5": "tsc",
    "build:source": "tsc --sourceMap",
    "build:es2015": "tsc --module es2015 --target es2015",
    "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"
  ],
  "dependencies": {
    "mkdirp": "^0.5.1",
    "nan": "^2.8.0",
    "tslib": "^1.7.1",
    "tresorit-webcrypto-core": "^1.0.1"
  },
  "devDependencies": {
    "@types/mkdirp": "^0.3.29",
    "@types/node": "^8",
    "coveralls": "^2.13.1",
    "mocha": "^3.4.2",
    "nyc": "^10.1.2",
    "typescript": "~2.5.2"
  }
}
