-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.6 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
{
"name": "pg-tbus",
"author": "IlijaNL",
"version": "1.0.0",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"main": "dist/index.js",
"files": [
"./migrations",
"./dist",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ilijaNL/pg-tbus.git"
},
"keywords": [
"postgresql",
"postgres",
"queue",
"tasks",
"events",
"ddd"
],
"bugs": {
"url": "https://github.com/ilijaNL/pg-tbus/issues"
},
"homepage": "https://github.com/ilijaNL/pg-tbus#readme",
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts",
"tc": "tsc --noEmit",
"ci:publish": "yarn build && changeset publish",
"test": "tap --ts --no-check-coverage tests/*.test.ts",
"posttest": "tap --coverage-report=html --no-check-coverage"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"sideEffects": false,
"dependencies": {
"@sinclair/typebox": "^0.26.6",
"ajv": "^8.8.2",
"ajv-formats": "^2.1.1",
"delay": "^5.0.0",
"node-batcher": "^0.1.3",
"pg": "^8.8.0"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.176",
"@types/node": "^16.0.0",
"@types/pg": "^8.6.4",
"@types/tap": "^15.0.8",
"@types/uuid": "^8.3.1",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.4.0",
"fs-extra": "^11.1.0",
"safe-stable-stringify": "^2.4.2",
"tap": "^16.3.4",
"ts-node": "^10.7.0",
"tsup": "^6.6.0",
"typescript": "^4.9.0"
}
}