forked from timgit/pg-boss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.78 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pg-boss",
"version": "8.3.0",
"description": "Queueing jobs in Node.js using PostgreSQL like a boss",
"main": "./src/index.js",
"engines": {
"node": ">=14"
},
"dependencies": {
"cron-parser": "^4.0.0",
"delay": "^5.0.0",
"lodash.debounce": "^4.0.8",
"p-map": "^4.0.0",
"pg": "^8.5.1",
"serialize-error": "^8.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"coveralls": "^3.1.0",
"luxon": "^3.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"standard": "^17.0.0"
},
"scripts": {
"test": "standard && mocha",
"cover": "nyc --reporter=text npm test",
"travis-cover": "nyc --reporter=text npm run travis-test",
"travis-test": "standard && mocha --jobs 0 --exit",
"forcover": "npm run travis-cover && nyc report --reporter=text-lcov | coveralls",
"export-schema": "node ./scripts/construct.js",
"export-migration": "node ./scripts/migrate.js",
"export-rollback": "node ./scripts/rollback.js",
"tsc": "tsc --noEmit types.d.ts"
},
"mocha": {
"timeout": 10000,
"slow": 10000,
"bail": true,
"parallel": true,
"require": "./test/hooks"
},
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": true
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/timgit/pg-boss.git"
},
"keywords": [
"postgresql",
"postgres",
"queue",
"job"
],
"author": "timgit",
"license": "MIT",
"bugs": {
"url": "https://github.com/timgit/pg-boss/issues"
},
"homepage": "https://github.com/timgit/pg-boss#readme",
"types": "./types.d.ts"
}