{
  "name": "mongoose-create-unique",
  "version": "0.4.4",
  "description": "Mongoose plugin to create a document or return the existing one based on the unique index",
  "main": "dist/index.js",
  "files": [
    "bin/",
    "dist/"
  ],
  "scripts": {
    "clean": "rimraf dist",
    "lint": "eslint src test",
    "check": "npm run lint -s && dependency-check package.json --entry src",
    "watch": "watch 'npm run build' src test",
    "test": "babel-node test/index.js | tspec",
    "prebuild": "npm run check -s && npm run clean -s",
    "build": "babel --optional runtime src -d dist",
    "postbuild": "npm run test -s",
    "coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
    "coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
    "postcoveralls": "rimraf ./coverage",
    "prepublish": "npm run build -s",
    "deploy": "git pull --rebase origin master && git push origin master",
    "patch": "npm version patch && npm publish",
    "minor": "npm version minor && npm publish",
    "major": "npm version major && npm publish",
    "postpublish": "git push origin master --follow-tags",
    "toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/diegohaz/mongoose-create-unique.git"
  },
  "keywords": [
    "mongoose",
    "mongodb",
    "plugin",
    "unique",
    "create",
    "index",
    "save",
    "mongo"
  ],
  "author": "Diego Haz <hazdiego@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/diegohaz/mongoose-create-unique/issues"
  },
  "homepage": "https://github.com/diegohaz/mongoose-create-unique#readme",
  "devDependencies": {
    "babel-cli": "^6.8.0",
    "babel-core": "^6.8.0",
    "babel-eslint": "*",
    "babel-preset-es2015": "^6.6.0",
    "coveralls": "*",
    "dependency-check": "*",
    "doctoc": "*",
    "eslint": "*",
    "isparta": "*",
    "rimraf": "*",
    "tap-spec": "*",
    "tape": "*",
    "watch": "*",
    "mongoose": "^4.4.14"
  },
  "dependencies": {}
}
