UNPKG

@deepstream/storage-postgres

Version:
57 lines (56 loc) 1.56 kB
{ "name": "@deepstream/storage-postgres", "version": "3.0.12", "description": "A deepstream.io storage connector for use with deepstream", "main": "dist/src/connector.js", "scripts": { "tsc": "tsc", "lint": "tslint --project .", "lint:fix": "npm run lint -- --fix", "test": "npm run tsc && mocha --config=.mocharc.json 'dist/test/*.spec.js' --exit", "docker": "docker run -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword postgres" }, "repository": { "type": "git", "url": "git+https://github.com/deepstreamIO/deepstream.io-storage-postgres.git" }, "author": "deepstreamHub GmbH", "license": "Apache-2.0", "bugs": { "url": "https://github.com/deepstreamIO/deepstream.io-storage-postgres/issues" }, "keywords": [ "postgres", "postgresql", "realtime search", "realtime", "deepstream.io" ], "homepage": "https://deepstream.io/tutorials/integrations/db-postgres/", "dependencies": { "pg": "^8.15.6", "pg-escape": "^0.2.0" }, "devDependencies": { "@deepstream/protobuf": "^1.0.8", "@deepstream/types": "^2.3.2", "@types/chai": "^5.2.1", "@types/mocha": "^10.0.10", "@types/node": "^22.15.3", "@types/pg": "^8.11.14", "chai": "^5.2.0", "husky": "^4.2.5", "mocha": "^11.2.2", "ts-essentials": "^10.0.4", "ts-lint": "^4.5.1", "ts-node": "^10.9.2", "tslint": "^6.1.3", "typescript": "^5.8.3" }, "husky": { "hooks": { "pre-commit": "npm run lint && npm run tsc", "pre-push": "npm run tsc" } } }