-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.11 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.11 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "pg-logical-replication",
"version": "2.1.1",
"description": "PostgreSQL Location Replication client - logical WAL replication streaming",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --maxWorkers=1",
"test:watch": "jest --watch",
"build": "rm -rf dist/* ; tsc -p tsconfig.build.json"
},
"keywords": [
"postgres",
"postgresql",
"pg",
"libpq",
"database",
"rdbms",
"replication",
"logical",
"logical-decoding",
"logical-replication",
"cdc",
"wal2json",
"pgoutput",
"decoderbufs",
"typescript",
"nodejs"
],
"homepage": "http://github.com/kibae/pg-logical-replication",
"repository": {
"type": "git",
"url": "git://github.com/kibae/pg-logical-replication.git"
},
"author": {
"name": "Kibae Shin",
"email": "kibae.shin@gmail.com",
"url": "https://github.com/kibae"
},
"contributors": [
{
"name": "Jón Tómas Grétarsson",
"email": "jon.gretarsson@gmail.com",
"url": "https://github.com/jontg"
},
{
"name": "Jaryl Sim",
"email": "jaryl@tinkerbox.com.sg",
"url": "https://github.com/jaryl"
},
{
"name": "Caleb",
"email": "caleb.bertsch@gmail.com",
"url": "https://github.com/c4l3b"
},
{
"name": "Matt R. Wilson",
"email": "github.public@mattw.co",
"url": "https://github.com/mastermatt"
},
{
"name": "Erik Arvidsson",
"email": "erik.arvidsson@gmail.com",
"url": "https://github.com/arv"
},
{
"name": "Darick Tong",
"url": "https://github.com/darkgnotic"
}
],
"files": [
"dist/**/*",
"*.md"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.0.3",
"@types/pg": "^8.6.5",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.4.2",
"protobufjs": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"eventemitter2": ">=6.4.0",
"pg": ">=6.2.2"
},
"license": "MIT",
"engines": {
"node": ">=16.9.0"
}
}