-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.82 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": "pgmq-js",
"version": "1.3.0",
"description": "Postgres Message Queue (PSMQ) JavaScript Client Library",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "github",
"url": "https://github.com/Muhammad-Magdi/pgmq-js"
},
"scripts": {
"build": "tsup",
"start": "ts-node src/index.ts",
"test": "jest --runInBand",
"test:watch": "jest --watch --detectOpenHandles --runInBand",
"test:cov": "jest --coverage --runInBand",
"lint": "eslint . --fix",
"lint:check": "eslint . --quiet",
"format": "prettier . --write --ignore-unknown",
"format:check": "prettier . --check --ignore-unknown"
},
"keywords": [
"postgres",
"postgresql",
"message-queue",
"queues",
"postgresql-extension",
"pgmq"
],
"author": "muhammad-magdi",
"license": "Apache 2.0",
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@types/jest": "^29.5.12",
"@types/pg-pool": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.2.5",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"ts-node": "^10.9.2"
},
"dependencies": {
"pg": "^8.12.0",
"pg-pool": "^3.6.2"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/$1"
}
}
}