UNPKG

machinepack-postgresql

Version:

Structured Node.js bindings for connecting and running queries against a PostgreSQL database.

62 lines (61 loc) 1.66 kB
{ "name": "machinepack-postgresql", "version": "4.0.2", "description": "Structured Node.js bindings for connecting and running queries against a PostgreSQL database.", "scripts": { "test": "node ./node_modules/mocha/bin/mocha test/integration --recursive", "fasttest": "node ./node_modules/mocha/bin/mocha test/integration --recursive", "pretest": "npm run lint", "lint": "node ./node_modules/eslint/bin/eslint *.js **/*.js", "docker": "docker-compose run adapter bash", "benchmark": "node ./node_modules/mocha/bin/mocha test/benchmarks --recursive" }, "keywords": [ "postgresql", "driver", "waterline", "sails", "machines", "machinepack" ], "author": "The Sails Company", "license": "MIT", "dependencies": { "debug": "2.6.9", "@sailshq/lodash": "^3.10.2", "machine": "^15.0.0-21", "pg": "8.11.0", "waterline-sql-builder": "^3.0.1" }, "devDependencies": { "eslint": "3.5.0", "benchmark": "2.1.1", "mocha": "3.0.2" }, "machinepack": { "friendlyName": "PostgreSQL", "machineDir": "machines/", "machines": [ "get-connection", "release-connection", "send-native-query", "parse-native-query-result", "parse-native-query-error", "begin-transaction", "commit-transaction", "rollback-transaction", "compile-statement", "create-manager", "destroy-manager" ], "implements": { "connectable": "1.0", "queryable": "1.0", "transactional": "1.0" } }, "repository": { "type": "git", "url": "git@github.com:sailshq/machinepack-postgresql.git" } }