-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "pg-trx-outbox",
"version": "0.14.177",
"description": "Transactional outbox of Postgres for Node.js with little Event Sourcing",
"main": "./dist/src/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "node --test --test-concurrency 1 ./dist/test/*.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"transactional",
"outbox",
"postgres",
"postgresql",
"pg",
"2pc",
"transaction",
"event",
"sourcing"
],
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:darky/pg-trx-outbox.git"
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts"
],
"author": "Vladislav Botvin",
"license": "MIT",
"dependencies": {
"pg": "^8.13.1",
"pg-cursor": "^2.12.1",
"robot3": "^1.1.0",
"throw": "^1.1.1",
"ts-pattern": "^5.6.2"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.17.1",
"@types/node": "^22.10.9",
"@types/pg": "^8.11.10",
"@types/pg-cursor": "^2.7.2",
"testcontainers": "^10.17.1",
"ts-fp-di": "^0.22.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"optionalDependencies": {
"pg-listen": "^1.7.0"
}
}