c4a0e6dd58
* Eliminate detach/reattach strategy as it isn't able to differentiate between on/once and inconsistenly loses unshifted data depending on node version. Instead just split stream and send it to copy stream and the connection.stream at the same time. Disconnecting copy stream just means unpiping. Added handleCopyData to fulfill query contract but ignore the incoming data. Add node 4.2.2 to Travis Minimum postgres 9.2 to allow tests to complete in Travis Remove test that is no longer needed since we no longer disconnect/reconnect listeners * Add resume * Remove node 0.10 and add 0.12 * Re-enable old tests * Add more versions to the travis test matrix
34 lines
714 B
JSON
34 lines
714 B
JSON
{
|
|
"name": "pg-copy-streams",
|
|
"version": "0.3.0",
|
|
"description": "Low-Level COPY TO and COPY FROM streams for PostgreSQL in JavaScript using",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "node test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/brianc/node-pg-copy-streams.git"
|
|
},
|
|
"keywords": [
|
|
"postgres",
|
|
"copy",
|
|
"in",
|
|
"out",
|
|
"stream"
|
|
],
|
|
"author": "Brian M. Carlson",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/brianc/node-pg-copy-streams/issues"
|
|
},
|
|
"devDependencies": {
|
|
"pg": "~4.4.3",
|
|
"concat-stream": "~1.1.0",
|
|
"gonna": "0.0.0",
|
|
"lodash": "~2.2.1",
|
|
"heroku-env": "~0.1.1",
|
|
"async": "~0.2.10"
|
|
}
|
|
}
|