forked from kibae/pg-logical-replication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.59 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "pg-logical-replication",
"version": "2.0.6",
"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",
"publish": "npm run build && npm publish --access public"
},
"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": "[email protected]",
"url": "https://github.com/kibae"
},
"contributors": [
{
"name": "Jón Tómas Grétarsson",
"email": "[email protected]",
"url": "https://github.com/jontg"
},
{
"name": "Jaryl Sim",
"email": "[email protected]",
"url": "https://github.com/jaryl"
},
{
"name": "Caleb",
"email": "[email protected]",
"url": "https://github.com/c4l3b"
},
{
"name": "Matt R. Wilson",
"email": "[email protected]",
"url": "https://github.com/mastermatt"
},
{
"name": "Erik Arvidsson",
"email": "[email protected]",
"url": "https://github.com/arv"
}
],
"files": [
"dist/**/*",
"*.md"
],
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^14.14.31",
"@types/pg": "^8.6.5",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"prettier": "^2.7.1",
"protobufjs": "^7.0.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"eventemitter2": ">=6.4.0",
"pg": ">=6.2.2"
},
"license": "MIT",
"engines": {
"node": ">= 14.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"testEnvironment": "node",
"roots": [
"<rootDir>/src/"
],
"reporters": [
"default",
"jest-junit"
],
"maxConcurrency": 1,
"maxWorkers": 1,
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}