{
  "name": "credential",
  "version": "2.0.0",
  "description": "Easy password hashing and verification in Node. Protects against brute force, rainbow tables, and timing attacks.",
  "main": "credential.js",
  "directories": {
    "test": "test",
    "bin": "bin"
  },
  "bin": {
    "credential": "bin/cmd.js"
  },
  "dependencies": {
    "commander": "^2.8.1",
    "mout": "1.0.0",
    "pify": "^2.3.0",
    "pinkie-promise": "^2.0.0",
    "pluck-keys": "^0.0.4"
  },
  "devDependencies": {
    "babel": "^6.5.2",
    "babel-core": "^6.5.2",
    "babel-eslint": "6.0.4",
    "babel-loader": "^6.2.2",
    "babel-plugin-object-assign": "^1.2.0",
    "babel-preset-es2015": "^6.5.0",
    "babel-preset-stage-3": "^6.5.0",
    "blue-tape": "^0.2.0",
    "cross-env": "^1.0.5",
    "dependency-check": "^2.5.0",
    "eslint": "2.13.0",
    "eslint-config-xo-space": "0.14.0",
    "eslint-loader": "^1.2.1",
    "faucet": "0.0.1",
    "isparta": "^4.0.0",
    "node-libs-browser": "^1.0.0",
    "nsp": "^2.0.1",
    "precommit-hook": "^3.0.0",
    "rimraf": "^2.5.2",
    "tape": "^4.2.2",
    "ttest": "^0.3.0",
    "updtr": "0.1.15",
    "webpack": "^1.12.13"
  },
  "scripts": {
    "test": "tape test/*-test.js",
    "lint": "eslint credential.js test bin/cmd.js",
    "init": "rimraf .validate.json && rimraf .jshintrc",
    "clean": "rimraf build",
    "prebuild": "npm run clean",
    "build": "cross-env NODE_ENV=production webpack && npm run build:min",
    "build:min": "cross-env NODE_ENV=production MINIFY=1 webpack",
    "start": "webpack --watch",
    "cov": "npm run cov:clean",
    "cov:clean": "rimraf coverage",
    "prepublish": "npm run build",
    "validate": "npm run lint && npm run build && npm test",
    "validate-dev": "npm run lint && npm test | faucet",
    "update": "updtr",
    "audit": "nsp check",
    "precheck": "npm run validate",
    "check": "npm run audit && npm outdated --depth 0"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:ericelliott/credential.git"
  },
  "keywords": [
    "password",
    "passwords",
    "hash",
    "auth",
    "authorization",
    "authentication",
    "security",
    "login",
    "sign in",
    "salt",
    "rainbow",
    "brute",
    "stretching",
    "PBKDF2"
  ],
  "author": "Eric Elliott",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ericelliott/credential/issues"
  },
  "pre-commit": [
    "validate"
  ]
}
