-
-
Notifications
You must be signed in to change notification settings - Fork 234
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.82 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
{
"name": "pg-boss",
"version": "12.15.0",
"description": "Queueing jobs in Postgres from Node.js like a boss",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"pg-boss": "./dist/cli.js"
},
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"cron-parser": "^5.5.0",
"pg": "^8.20.0",
"serialize-error": "^13.0.1"
},
"devDependencies": {
"@tsconfig/node-ts": "^23.6.4",
"@tsconfig/node22": "^22.0.5",
"@types/luxon": "^3.7.1",
"@types/node": "^22.19.15",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.2",
"cli-testlab": "^6.0.1",
"eslint": "^9.39.4",
"luxon": "^3.7.2",
"neostandard": "^0.13.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"clean": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\"",
"prepublishOnly": "npm install && npm test && npm run build",
"test": "eslint . && vitest run",
"lint:fix": "eslint . --fix",
"cover": "vitest run --coverage",
"tsc": "tsc --noEmit",
"readme": "node ./examples/readme.js",
"db:migrate": "node --import=tsx -e 'console.log(require(\"./src\").getMigrationPlans())'",
"db:construct": "node --import=tsx -e 'console.log(require(\"./src\").getConstructionPlans())'"
},
"pgboss": {
"schema": 30
},
"repository": {
"type": "git",
"url": "git+https://github.com/timgit/pg-boss.git"
},
"author": "timgit",
"license": "MIT",
"bugs": {
"url": "https://github.com/timgit/pg-boss/issues"
},
"homepage": "https://timgit.github.io/pg-boss",
"keywords": [
"postgresql",
"postgres",
"queue",
"job"
],
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
]
}