-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.13 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
{
"name": "@time-loop/pg-tube",
"description": "A library to pipe replication stream (with initial full copy) to external destinations",
"version": "2.11.1",
"license": "MIT",
"bin": "./pg-tube",
"scripts": {
"build": "internal/build.sh",
"dev": "internal/dev.sh",
"lint": "internal/lint.sh",
"test": "internal/test.sh",
"test:db": "set -e; FILES=(sql/__tests__/test_*.sql); f() { if [ \"$1\" != \"\" ]; then FILES=(sql/__tests__/$1); fi; for f in ${FILES[@]}; do echo == $f; yarn psql -f $f; echo; echo; done; }; f",
"docs": "internal/docs.sh",
"clean": "internal/clean.sh",
"copy-package-to-public-dir": "copy-package-to-public-dir.sh",
"backport-package-from-public-dir": "backport-package-from-public-dir.sh",
"deploy": "internal/deploy.sh"
},
"dependencies": {
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"log-update": "^4.0.0",
"minimist": "^1.2.5",
"p-defer": "^3.0.0",
"p-limit": "^3.1.0",
"pg-query-stream": "^3.4.2",
"pg": "^8.7.1",
"table": "^6.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.175",
"@types/minimist": "^1.2.2",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-typescript-enum": "^2.1.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint": "^8.40.0",
"jest": "^29.7.0",
"prettier": "3.2.1",
"ts-jest": "^29.1.1",
"typedoc-plugin-markdown": "^4.3.2",
"typedoc-plugin-merge-modules": "^6.1.0",
"typedoc": "0.27.5",
"typescript": "^5.2.2",
"wait-for-expect": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/time-loop/github-packages"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}