-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
51 lines (51 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "pg-copy-streams",
"version": "6.0.6",
"description": "Low-Level COPY TO and COPY FROM streams for PostgreSQL in JavaScript using",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha --v8-expose-gc",
"lint": "[ \"$(node -v | cut -d. -f1)\" = \"v8\" ] || eslint '**/*.{js,ts}'"
},
"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": {
"async": "~0.2.10",
"benchmark": "^2.1.4",
"concat-stream": "^2.0.0",
"csv-parse": "^4.9.0",
"csv-parser": "^2.3.2",
"duplex-child-process": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"pg": "^8.8.0",
"prettier": "^2.0.5"
},
"prettier": {
"semi": false,
"printWidth": 120,
"arrowParens": "always",
"trailingComma": "es5",
"singleQuote": true
},
"dependencies": {
"obuf": "^1.1.2"
}
}