package.json
{
"name": "kouchbase-odm",
"version": "3.0.0",
"author": "fogine",
"keywords": [
"couchbase",
"odm",
"couchbase-odm",
"promise",
"n1ql"
],
"repository": {
"type": "git",
"url": "https://github.com/fogine/couchbase-odm.git"
},
"engines": {
"node": ">=6.4.0"
},
"bugs": {
"url": "https://github.com/fogine/couchbase-odm/issues"
},
"files": [
"lib",
"tutorials",
"CHANGELOG.md",
"LICENSE",
"README.md",
"index.js"
],
"description": "Couchbase Promise based ODM",
"private": false,
"scripts": {
"unit-tests": "./node_modules/.bin/mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec 'tests/unit/**/*.js'",
"functional-tests": "./node_modules/.bin/mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec 'tests/functional/**/*.js'",
"tests": "node --use-strict ./node_modules/.bin/mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec 'tests/**/*.js'",
"test": "npm run tests",
"generate-docs": "./node_modules/.bin/jsdoc --configure .jsdoc.json -u ./tutorials --verbose",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec 'tests/**/*.js' -t 5000"
},
"license": "MIT",
"dependencies": {
"ajv": "^6.10.0",
"ajv-keywords": "^3.2.0",
"bluebird": "^3.5.1",
"couchbase": "^2.6.3",
"lodash": "^4.17.0",
"node-uuid": "^1.4.8"
},
"devDependencies": {
"realm-jsdoc": "0.x",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"istanbul": "^0.4.3",
"jsdoc": "^3.4.0",
"mocha": "^2.5.3",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0"
}
}