{
  "name": "@pashoo2/crypto-utilities",
  "version": "0.0.7",
  "description": "Utilities for a data signing and verification, encryption and decryption, a password generation with a salt, crypto keys generation, serialization, parsing of them. Written in Typescript both for a browser and NodeJS.",
  "main": "es/index.js",
  "types": "es/index.d.ts",
  "files": [
    "es/**/*"
  ],
  "engines": {
    "node": ">=10.4.0"
  },
  "engineStrict": true,
  "scripts": {
    "test": "jest --passWithNoTests",
    "lint": "gts lint",
    "clean": "gts clean",
    "compile": "tsc --project ./tsconfig.build.json",
    "fix": "gts fix",
    "typecheck": "tsc --noEmit",
    "prepare": "npm run compile",
    "pretest": "npm run compile",
    "posttest": "npm run lint",
    "prepublishOnly": "npm run test",
    "preversion": "npm run lint",
    "version": "npm run fix && git add -A src",
    "postversion": "git push && git push --tags",
    "docs": "typedoc --out docs src/index.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pashoo2/crypto-utilities.git"
  },
  "keywords": [
    "web crypto",
    "nodejs crypto",
    "typescript crypto",
    "typescript",
    "crypto utilities",
    "encryption",
    "decryption",
    "data encryption",
    "data decryption",
    "sign",
    "verify",
    "data signing",
    "data verification",
    "password",
    "password encryption",
    "password with salt",
    "crypto key",
    "crypto key serialization",
    "crypto key parsing",
    "crypto key import",
    "crypto key export"
  ],
  "author": "Pavel Akulich akulich.pavel.stage@gmail.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/pashoo2/crypto-utilities/issues"
  },
  "homepage": "https://github.com/pashoo2/crypto-utilities/#readme",
  "devDependencies": {
    "@babel/core": "^7.14.6",
    "@babel/preset-env": "^7.14.7",
    "@types/jest": "^26.0.23",
    "@types/node": "^10.04.0",
    "babel-jest": "^27.0.6",
    "gts": "^3.1.0",
    "jest": "^27.0.3",
    "ts-jest": "27.0.2",
    "typedoc": "^0.21.2",
    "typedoc-plugin-markdown": "^3.10.2",
    "typescript": "^4.3.5"
  },
  "dependencies": {
    "@pashoo2/typed-array-utils": "0.0.1",
    "@pashoo2/serialization-utils": "0.0.1",
    "isomorphic-webcrypto": "^2.3.8"
  }
}
