-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "pg-query-exec",
"version": "1.1.0",
"description": "Pleasant wrapper for pg that provides a simple async API, strong typing, named parameters, and implicit transactions",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/sehrope/node-pg-query-exec.git"
},
"keywords": [
"pg",
"postgres",
"postgresql",
"transaction",
"tx",
"named parameters",
"query"
],
"author": "Sehrope Sarkuni <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sehrope/node-pg-query-exec/issues"
},
"homepage": "https://github.com/sehrope/node-pg-query-exec#readme",
"peerDependencies": {
"pg": "^8.6.0"
},
"devDependencies": {
"@types/mocha": "^5.0.0",
"@types/node": "^12.20.14",
"@types/pg": "^7.4.5",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"pg": "8.6.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.2"
}
}