{
  "name": "mfkdf",
  "version": "1.4.8",
  "description": "JavaScript Implementation of a Multi-Factor Key Derivation Function (MFKDF)",
  "main": "src/index.js",
  "engines": {
    "node": ">= 16"
  },
  "scripts": {
    "test": "npm run style && npm run coverage",
    "style": "standard ./src --fix && standard ./test --fix",
    "unit": "mocha",
    "coverage": "nyc --report-dir=\"./site/nyc\" --reporter=text --reporter=html mocha --branches 100",
    "version": "npm run docs && git add site && npm run build && git add mfkdf.js && git add mfkdf.min.js",
    "release": "np --branch main --no-cleanup",
    "postpublish": "npm run deploy",
    "deploy": "gh-pages -d site",
    "docs": "jsdoc src -c .jsdoc.json -u tutorials",
    "build": "npm run browserify && npm run minify",
    "browserify": "webpack",
    "minify": "terser --compress --comments false --module mfkdf.js --mangle -o mfkdf.min.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/multifactor/MFKDF.git"
  },
  "author": "Vivek Nair (https://nair.me) <vivek@nair.me>",
  "license": "CC-BY-NC-SA-4.0",
  "bugs": {
    "url": "https://github.com/multifactor/MFKDF/issues"
  },
  "files": [
    "site/schema/**",
    "src/**",
    "README.md",
    "mfkdf.js",
    "mfkdf.min.js"
  ],
  "homepage": "https://github.com/multifactor/MFKDF#readme",
  "devDependencies": {
    "base64-loader": "^1.0.0",
    "buffer": "^6.0.3",
    "chai": "^4.3.4",
    "chai-as-promised": "^7.1.1",
    "crypto-browserify": "^3.12.0",
    "docdash": "^2.0.1",
    "gh-pages": "^3.2.3",
    "jsdoc": "^4.0.2",
    "mocha": "^10.2.0",
    "mochawesome": "^7.1.3",
    "np": "^8.0.4",
    "nyc": "^15.1.0",
    "process": "^0.11.10",
    "standard": "^17.0.0",
    "stream-browserify": "^3.0.0",
    "terser": "^5.10.0",
    "url": "^0.11.0",
    "util": "^0.12.4",
    "vm-browserify": "^1.1.2",
    "webpack": "^5.65.0",
    "webpack-cli": "^4.9.1"
  },
  "dependencies": {
    "@panva/hkdf": "^1.0.1",
    "ajv": "^8.11.0",
    "bcryptjs": "^2.4.3",
    "buffer-xor": "^2.0.2",
    "hash-wasm": "^4.9.0",
    "human-crypto-keys": "^0.1.4",
    "pbkdf2": "^3.1.2",
    "random-number-csprng": "^1.0.2",
    "scrypt-js": "^3.0.1",
    "secrets.js-34r7h": "^2.0.1",
    "speakeasy": "^2.0.0",
    "uuid": "^8.3.2",
    "zxcvbn": "^4.4.2"
  },
  "overrides": {
    "node-forge": "^1.3.0"
  }
}
