UNPKG

sails-mongo-cloud

Version:

Mongo DB adapter for Sails.js/Waterline. Forked from sails-mongo and updated with Mongodb Driver v4.9.1

72 lines (71 loc) 2.09 kB
{ "name": "sails-mongo-cloud", "version": "3.0.2", "description": "Mongo DB adapter for Sails.js/Waterline. Forked from sails-mongo and updated with Mongodb Driver v4.9.1", "main": "./lib", "scripts": { "test": "npm run lint && npm run custom-tests", "custom-tests": "node node_modules/mocha/bin/mocha test/run-adapter-specific-tests && node node_modules/mocha/bin/mocha test/connectable/ && node test/run-standard-tests", "lint": "node node_modules/eslint/bin/eslint . --max-warnings=0", "start-mongodb": "docker-compose up -d mongo", "stop-mongodb": "docker-compose down", "docker": "docker-compose run adapter bash", "mongodb-shell": "docker-compose exec mongo mongo", "docker-test": "docker-compose run adapter bash -c \"npm test\" && docker-compose down" }, "keywords": [ "mongo", "mongodb", "adapter", "sails", "sails.js", "waterline", "orm", "database-adapter" ], "license": "MIT", "readmeFilename": "README.md", "repository": { "type": "git", "url": "git://github.com/sandeeppc/sails-mongo.git" }, "dependencies": { "@sailshq/lodash": "^3.10.4", "async": "3.2.4", "flaverr": "^1.10.0", "machine": "^15.2.2", "mongodb": "4.9.1", "qs": "6.9.4" }, "devDependencies": { "benchmark": "2.1.4", "eslint": "4.19.1", "mocha": "3.0.2", "waterline": "^0.13.6", "waterline-adapter-tests": "^1.0.1", "waterline-utils": "^1.4.2" }, "waterlineAdapter": { "interfaces": [ "semantic", "queryable", "associations" ], "features": [ "unique" ] }, "machinepack": { "friendlyName": "MongoDB", "extendedDescription": "Uses the Node.js mongdb driver located at http://npmjs.com/package/mongodb", "moreInfoUrl": "https://github.com/mongodb/node-mongodb-native", "implements": [ "connectable", "modeled", "migratable" ], "machineDir": "lib/private/machines/", "exportStyle": "dryDictionary", "testsUrl": "https://travis-ci.org/balderdashy/sails-mongo" } }