-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.53 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.53 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
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
{
"name": "jobguard",
"version": "0.1.3",
"description": "PostgreSQL durability for Redis-backed job queues with minimal integration",
"keywords": [
"job-queue",
"bull",
"bullmq",
"bee-queue",
"postgres",
"postgresql",
"durability",
"reliability",
"background-jobs",
"fault-tolerance",
"queue-persistence",
"redis-queue",
"job-recovery",
"microservices"
],
"author": "Alex Potapenko <alex.potapenko.dev@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/alexpota/jobguard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alexpota/jobguard.git"
},
"bugs": {
"url": "https://github.com/alexpota/jobguard/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"schema",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist coverage",
"test": "jest",
"test:integration": "jest --config jest.integration.config.js --runInBand --forceExit",
"test:e2e": "jest --config jest.e2e.config.js",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build && npm test && npm run lint"
},
"dependencies": {
"pg": "^8.12.0"
},
"peerDependencies": {
"bee-queue": "^1.7.0",
"bull": "^4.16.5",
"bullmq": "^5.61.0"
},
"peerDependenciesMeta": {
"bull": {
"optional": true
},
"bullmq": {
"optional": true
},
"bee-queue": {
"optional": true
}
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.18.10",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"bee-queue": "^1.7.0",
"bull": "^4.16.5",
"bullmq": "^5.61.0",
"eslint": "^9.39.1",
"ioredis": "^5.4.1",
"jest": "^30.2.0",
"prettier": "^3.3.0",
"ts-jest": "^29.4.5",
"tsup": "^8.5.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.46.4"
},
"overrides": {
"js-yaml": "^4.1.1",
"glob": "^11.1.0"
}
}