mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
- pg-connection-string@2.8.1 - pg-cursor@2.14.1 - pg-esm-test@1.1.1 - pg-pool@3.9.1 - pg-query-stream@4.9.1 - pg@8.15.1
60 lines
1.3 KiB
JSON
60 lines
1.3 KiB
JSON
{
|
|
"name": "pg-query-stream",
|
|
"version": "4.9.1",
|
|
"description": "Postgres query result returned as readable stream",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./esm/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "mocha -r ts-node/register test/**/*.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/brianc/node-postgres.git",
|
|
"directory": "packages/pg-query-stream"
|
|
},
|
|
"keywords": [
|
|
"postgres",
|
|
"query-stream",
|
|
"pg",
|
|
"query",
|
|
"stream"
|
|
],
|
|
"files": [
|
|
"/dist/*{js,ts,map}",
|
|
"/src",
|
|
"/esm"
|
|
],
|
|
"author": "Brian M. Carlson",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/brianc/node-postgres/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.13",
|
|
"@types/mocha": "^10.0.7",
|
|
"@types/node": "^14.0.0",
|
|
"@types/pg": "^7.14.5",
|
|
"JSONStream": "~1.3.5",
|
|
"concat-stream": "~1.0.1",
|
|
"eslint-plugin-promise": "^6.0.1",
|
|
"mocha": "^10.5.2",
|
|
"pg": "^8.15.1",
|
|
"stream-spec": "~0.3.5",
|
|
"ts-node": "^8.5.4",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"peerDependencies": {
|
|
"pg": "^8"
|
|
},
|
|
"dependencies": {
|
|
"pg-cursor": "^2.14.1"
|
|
}
|
|
}
|