-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.8 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.8 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
94
95
96
97
98
99
100
101
{
"name": "postgrejs",
"description": "Professional PostgreSQL client NodeJS",
"version": "2.23.0",
"author": "Panates",
"license": "MIT",
"private": true,
"dependencies": {
"@jsopen/objects": "^2.2.0",
"doublylinked": "^2.5.6",
"lightning-pool": "^4.12.0",
"postgres-bytea": "^3.0.0",
"power-tasks": "^1.14.2",
"putil-promisify": "^1.10.1",
"putil-varhelpers": "^1.7.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@panates/eslint-config": "^2.1.0",
"@panates/eslint-config-ts": "^2.1.0",
"@panates/tsconfig": "^2.1.0",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.21",
"@swc/helpers": "^0.5.21",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.2",
"@types/pg": "^8.20.0",
"auto-changelog": "^2.5.0",
"c8": "^11.0.0",
"dotenv": "^17.4.0",
"expect": "^30.3.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"dpdm": "^4.0.1",
"mocha": "^11.7.5",
"pg": "^8.20.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"ts-cleanup": "^1.3.0",
"typescript": "^6.0.2"
},
"scripts": {
"compile": "tsc -b tsconfig-build.json --noEmit",
"clean": "npm run clean:src && npm run clean:dist",
"clean:dist": "rimraf build coverage",
"clean:src": "ts-cleanup -s src --all | ts-cleanup -s test",
"prebuild": "npm run check && npm run clean:dist && npm run lint",
"build": "tsc -b tsconfig-build.json",
"postbuild": "node postbuild.cjs && rimraf build/*.tsbuildinfo",
"_postbuild": "npm run postbuild:copyfiles && node postbuild.cjs",
"_postbuild:copyfiles": "cp LICENSE README.md CHANGELOG.md ./build && cp ./support/package.esm.json ./build/esm/package.json",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"format": "prettier . --write --log-level=warn",
"precover": "rimraf coverage",
"check": "dpdm -T --no-warning --no-tree ./src/index.ts",
"test": "mocha",
"precitest": "rimraf coverage",
"citest": "c8 mocha",
"qc": "npm run lint && npm run check",
"version": "auto-changelog -p && git add CHANGELOG.md",
"prepare": "husky || true"
},
"type": "module",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20.0"
},
"homepage": "https://postgrejs.panates.com/",
"contributors": [
"Eray Hanoglu <e.hanoglu@panates.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/panates/postgrejs.git"
},
"keywords": [
"postgresql",
"postgres",
"postgre",
"pg",
"database",
"db",
"driver",
"client",
"backend",
"rdbms",
"sql"
],
"publishConfig": {
"access": "public"
}
}