-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "pg-copy-streams-binary",
"version": "2.2.0",
"description": "Streams for parsing and deparsing the COPY binary format",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha",
"lint": "[ \"$(node -v | cut -d. -f1)\" = \"v8\" ] || eslint '**/*.{js,ts}'"
},
"repository": {
"type": "git",
"url": "git://github.com/jeromew/node-pg-copy-streams-binary.git"
},
"author": "Jérôme Wagner",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeromew/node-pg-copy-streams-binary/issues"
},
"dependencies": {
"bl": "^4.0.3",
"bufferput": "^0.1.3",
"ieee754": "^1.1.13",
"int64-buffer": "^0.99.1007",
"multi-fork": "0.0.2",
"through2": "^3.0.1"
},
"devDependencies": {
"async": "^3.2.1",
"concat-stream": "^2.0.0",
"deeper": "^2.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"gonna": "0.0.0",
"mocha": "^9.1.0",
"pg": "^8.7.1",
"pg-copy-streams": "^6.0.1",
"prettier": "^2.0.5"
},
"prettier": {
"semi": false,
"printWidth": 120,
"arrowParens": "always",
"trailingComma": "es5",
"singleQuote": true
}
}