-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.45 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "pidginmq",
"version": "0.0.7",
"description": "Fast and reliable background jobs in Typescript",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"source": "./src/index.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm-run-all tsc:all",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"release": "release-it",
"tsc": "tsc",
"tsc:all": "tsc && tsc -p tsconfig.cjs.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivanvs/pidginmq.git"
},
"keywords": [
"pidginmq",
"queues",
"jobs",
"postgresql",
"scheduler"
],
"author": "Ivan Vasiljevic",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivanvs/pidginmq/issues"
},
"files": [
"dist"
],
"bin": {
"pidginmq": "./dist/cjs/bin/index.js"
},
"homepage": "https://github.com/ivanvs/pidginmq#readme",
"devDependencies": {
"@testcontainers/postgresql": "^10.7.2",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"release-it": "17.4.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@npmcli/package-json": "^5.2.0",
"any-signal": "^4.1.1",
"commander": "^12.1.0",
"cron-parser": "^4.9.0",
"knex": "^3.1.0",
"lodash.throttle": "^4.1.1",
"loglevel": "^1.9.1",
"luxon": "^3.4.4",
"pg": "^8.11.3",
"pg-pool": "^3.6.1",
"rxjs": "^7.8.1"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.(t|j)s$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules"
]
}
}