-
Notifications
You must be signed in to change notification settings - Fork 217
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "pg-promise",
"version": "11.10.2",
"description": "PostgreSQL interface for Node.js",
"main": "lib/index.js",
"typings": "typescript/pg-promise.d.ts",
"scripts": {
"spelling": "cspell --config=.cspell.json \"**/*.{md,ts,js}\" --no-progress",
"coverage": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node --captureExceptions test",
"doc": "jsdoc -c ./jsdoc/jsdoc.js ./jsdoc/README.md -t ./jsdoc/templates/custom",
"lint": "eslint ./lib ./test/*.js ./test/db --fix",
"test": "jasmine-node --captureExceptions test",
"test:init": "node test/db/init.js",
"test:native": "jasmine-node test --config PG_NATIVE true",
"tslint": "tslint ./typescript/*.ts"
},
"files": [
"lib",
"typescript"
],
"homepage": "https://github.com/vitaly-t/pg-promise",
"repository": {
"type": "git",
"url": "https://github.com/vitaly-t/pg-promise.git"
},
"bugs": {
"url": "https://github.com/vitaly-t/pg-promise/issues",
"email": "[email protected]"
},
"keywords": [
"pg",
"promise",
"postgres"
],
"author": {
"name": "Vitaly Tomilov",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=14.0"
},
"dependencies": {
"assert-options": "0.8.2",
"pg": "8.13.1",
"pg-minify": "1.6.5",
"spex": "3.4.0"
},
"peerDependencies": {
"pg-query-stream": "4.7.1"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@types/node": "22.9.0",
"bluebird": "3.7.2",
"coveralls": "3.1.1",
"cspell": "8.16.0",
"eslint": "9.14.0",
"globals": "15.12.0",
"istanbul": "0.4.5",
"jasmine-node": "3.0.0",
"jsdoc": "4.0.4",
"JSONStream": "1.3.5",
"tslint": "6.1.3",
"typescript": "5.6.3"
}
}