-
-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.97 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
{
"name": "pg-boss",
"version": "12.26.3",
"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.6.2",
"pg": "^8.22.0",
"serialize-error": "^13.0.1"
},
"devDependencies": {
"@electric-sql/pglite": "^0.5.4",
"@prisma/adapter-pg": "^7.9.0",
"@prisma/client": "^7.9.0",
"@tsconfig/node-ts": "^23.6.4",
"@tsconfig/node22": "^22.0.5",
"@types/luxon": "^3.7.2",
"@types/node": "^22.20.1",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.2",
"cli-testlab": "^6.0.1",
"cross-env": "^10.1.0",
"drizzle-orm": "^1.0.0-rc.4",
"eslint": "^9.39.5",
"knex": "^3.3.0",
"kysely": "^0.29.4",
"luxon": "^3.7.2",
"neostandard": "^0.13.0",
"postgres": "^3.4.9",
"prisma": "^7.9.0",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"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",
"pretest": "prisma generate --schema=test/prisma/schema.prisma && npm run tsc && npm run gen:manifest:check",
"test": "eslint . && vitest run",
"test:distributed": "cross-env DISTRIBUTED=true npm test",
"test:ci": "npm run cover && cross-env DISTRIBUTED=true npm run cover && npm run test:pglite",
"test:cockroachdb": "cross-env DB_TYPE=cockroachdb COCKROACH_HOST=localhost npm test -- test/distributedDatabaseTest.ts",
"test:cockroachdb:full": "cross-env DB_TYPE=cockroachdb COCKROACH_HOST=localhost npm test -- --no-file-parallelism",
"test:yugabytedb:full": "cross-env DB_TYPE=yugabytedb YUGABYTE_HOST=localhost npm test -- --no-file-parallelism",
"test:citus:full": "cross-env DB_TYPE=citus CITUS_HOST=localhost npm test",
"test:pglite": "cross-env DB_TYPE=pglite npm test",
"lint:fix": "eslint . --fix",
"cover": "npm test -- --coverage",
"tsc": "tsc --noEmit",
"cli": "node ./dist/cli.js",
"gen:manifest": "tsx scripts/gen-manifest.ts",
"gen:manifest:check": "tsx scripts/gen-manifest.ts --check",
"console": "tsx scripts/console.js",
"seed": "tsx scripts/seed-queue-stats.js",
"readme": "node ./examples/readme.js",
"docs": "npm run docs:dev --prefix docs",
"docs:readme": "node ./scripts/sync-readme.js"
},
"pgboss": {
"schema": 37
},
"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"
]
}