ksmithut/mongoose-pass

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "mongoose-pass",
  "version": "1.0.3",
  "description": "Adds a password field that gets hashed when updated",
  "main": "index.js",
  "scripts": {
    "jshint": "jshint --reporter node_modules/jshint-stylish/stylish.js index.js",
    "check-cov": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
    "test": "istanbul cover _mocha",
    "posttest": " npm run check-cov; npm run jshint;",
    "codeclimate": "cat ./coverage/lcov.info | codeclimate"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ksmithut/mongoose-pass.git"
  },
  "keywords": [
    "mongoose",
    "password",
    "hash"
  ],
  "author": "ksmithut",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ksmithut/mongoose-pass/issues"
  },
  "homepage": "https://github.com/ksmithut/mongoose-pass",
  "devDependencies": {
    "codeclimate-test-reporter": "0.0.4",
    "expect.js": "^0.3.1",
    "istanbul": "^0.3.5",
    "jshint": "^2.6.0",
    "jshint-stylish": "^1.0.0",
    "mocha": "^2.1.0",
    "mocha-lcov-reporter": "0.0.1",
    "mongoose": "^3.8.23"
  },
  "dependencies": {
    "bcrypt": "^0.8.1",
    "bluebird": "^2.9.6"
  }
}