-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "@figedi/node-wal2json",
"version": "0.0.5",
"description": "Logical decoding for postgres via wal2json",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Figedi/node-wal2json.git"
},
"readme": "README.md",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint ./src/**/*.ts",
"format": "eslint --fix ./src/**/*.ts"
},
"author": "Felix Kaminski",
"license": "MIT",
"dependencies": {
"pg": "^8.7.1",
"pg-copy-streams": "^6.0.2",
"debug": "^4.3.2",
"obuf": "^1.1.2"
},
"devDependencies": {
"@types/pg-copy-streams": "^1.2.1",
"@types/debug": "^4.1.7",
"@types/pg": "^8.6.1",
"eslint": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}