{
  "name": "mfchf",
  "version": "0.2.0",
  "description": "JavaScript Implementation of a Multi-Factor Credential Hashing Function (MFCHF)",
  "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 mfchf.js && git add mfchf.min.js",
    "release": "np --branch main --no-cleanup",
    "postpublish": "npm run deploy",
    "deploy": "gh-pages -d site",
    "docs": "jsdoc src -c .jsdoc.json",
    "build": "npm run browserify && npm run minify",
    "browserify": "webpack",
    "minify": "terser --compress --comments false --module mfchf.js --mangle -o mfchf.min.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/multifactor/MFCHF.git"
  },
  "author": "Vivek Nair (https://nair.me) <vivek@nair.me>",
  "license": "BSD-3-Clause-Clear",
  "bugs": {
    "url": "https://github.com/multifactor/MFCHF/issues"
  },
  "files": [
    "site/schema/**",
    "src/**",
    "README.md",
    "mfchf.js",
    "mfchf.min.js"
  ],
  "homepage": "https://github.com/multifactor/MFCHF#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": {
    "hash-wasm": "^4.10.0",
    "speakeasy": "^2.0.0"
  }
}
