Sieabah/feathersjs-couchbase

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "feathersjs-couchbase",
  "description": "FeathersJS DB adapter for couchbase",
  "version": "3.0.2",
  "homepage": "https://github.com/Sieabah/feathers-couchbase",
  "main": "lib/",
  "keywords": [
    "feathers",
    "feathers-plugin",
    "couchbase",
    "service"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/Sieabah/feathers-couchbase.git"
  },
  "author": {
    "name": "Christopher Sidell",
    "email": "sieabah@gmail.com",
    "url": "https://christophersidell.com"
  },
  "contributors": [],
  "bugs": {
    "url": "https://github.com/Sieabah/feathers-couchbase/issues"
  },
  "engines": {
    "node": ">= 6.0.0"
  },
  "scripts": {
    "publish": "git push origin --tags && git push origin",
    "release:pre": "npm version prerelease && npm publish --tag pre",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "lint": "semistandard lib/*.js lib/**/*.js test/*.js test/**/*.js --fix",
    "mocha": "mocha --opts mocha.opts",
    "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
    "test": "npm run lint && npm run coverage"
  },
  "semistandard": {
    "sourceType": "module",
    "env": [
      "mocha"
    ]
  },
  "directories": {
    "lib": "lib"
  },
  "peerDependencies": {
    "couchbase": "^2.x"
  },
  "dependencies": {
    "@feathersjs/errors": "^3.3.6",
    "bluebird": "^3.5.5",
    "couchbase": "^2.6.5",
    "debug": "^4.1.1",
    "ramda": "^0.26.1",
    "uuid": "^3.3.2"
  },
  "devDependencies": {
    "chai": "^4.2.0",
    "istanbul": "^1.1.0-alpha.1",
    "mocha": "^5.2.0",
    "semistandard": "^13.0.1",
    "sinon": "^7.1.1"
  }
}