-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "pg-client-helper",
"version": "1.1.4",
"description": "Postgres Client Helper providing named param objects, connection pooling",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npx jest --coverage",
"build": "tsc",
"destroy-dist": "npx rimraf dist",
"deploy-npm": "npm run destroy-dist && npm run test && npm run build && npm publish"
},
"author": "MK2k",
"license": "ISC",
"dependencies": {
"@aws-sdk/rds-signer": "^3.637.0",
"pg": "8.12.0"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.6.0",
"@types/pg": "8.11.8",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theMK2k/pg-client-helper.git"
},
"bugs": {
"url": "https://github.com/theMK2k/pg-client-helper/issues"
},
"homepage": "https://github.com/theMK2k/pg-client-helper#readme"
}