{
  "name": "electron-root-ssl-pinning",
  "version": "0.0.4",
  "description": "Pinning root CA certificates into your Electron app",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": "https://github.com/myxious/electron-root-ssl-pinning.git",
  "author": "Aydar Sultanov <aydarsultanov90@gmail.com>",
  "license": "MIT",
  "scripts": {
    "prepublishOnly": "yarn lint && yarn test && yarn build",
    "build": "yarn tsc",
    "build:watch": "yarn tsc --watch",
    "format": "yarn prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
    "lint": "yarn tslint --project \"./tsconfig.json\"",
    "test": "yarn jest"
  },
  "keywords": [
    "electron",
    "https",
    "root",
    "ca",
    "cert",
    "certificate",
    "pinning",
    "ssl"
  ],
  "dependencies": {
    "asn1js": "^2.0.26",
    "lodash.flow": "^3.5.0",
    "n-readlines": "^1.0.0",
    "pkijs": "^2.1.82"
  },
  "devDependencies": {
    "@jest-runner/electron": "^2.0.2",
    "@types/asn1js": "^0.0.1",
    "@types/jest": "^24.0.18",
    "@types/lodash.flow": "^3.5.6",
    "@types/node": "^12.7.2",
    "electron": "^6.0.5",
    "husky": "^3.0.4",
    "jest": "^24.9.0",
    "jest-date-mock": "^1.0.7",
    "prettier": "^1.18.2",
    "ts-jest": "^24.0.2",
    "tslint": "^5.19.0",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.6.2"
  },
  "husky": {
    "hooks": {
      "pre-push": "yarn lint"
    }
  },
  "files": [
    "lib"
  ],
  "jest": {
    "projects": [
      "tests/e2e/jest.config.js",
      "tests/integration/jest.config.js",
      "tests/unit/jest.config.js"
    ],
    "setupFiles": [
      "jest-date-mock"
    ]
  }
}
