-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.58 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/postgres-bridge/**/*"
],
"ignoredByWatcher": [
"test/fixtures/**/*"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"generic-pool": "^3.9.0",
"roarr": "^7.21.0",
"serialize-error": "^8.1.0"
},
"description": "pg compatibility layer for postgres.",
"devDependencies": {
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.2.4",
"@semantic-release/npm": "^11.0.1",
"@types/node": "^20.10.1",
"@types/sinon": "^17.0.2",
"ava": "^5.3.1",
"eslint": "^8.54.0",
"eslint-config-canonical": "^42.8.0",
"husky": "^8.0.3",
"pg": "^8.11.3",
"postgres": "^3.4.3",
"postgres-array": "^3.0.2",
"semantic-release": "^22.0.8",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run build"
}
},
"keywords": [
"postgres",
"node-postgres",
"pg",
"compatibility"
],
"license": "BSD-3-Clause",
"main": "./dist/src/bridge.js",
"name": "postgres-bridge",
"repository": {
"type": "git",
"url": "https://github.com/gajus/postgres-bridge"
},
"scripts": {
"build": "tsc",
"lint": "eslint ./src ./test && tsc --noEmit",
"test": "ava --serial --verbose"
},
"version": "1.0.0"
}