-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 696 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 696 Bytes
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
{
"name": "pg-cursor",
"version": "2.18.0",
"description": "Query cursor extension for node-postgres",
"main": "index.js",
"exports": {
".": {
"import": "./esm/index.mjs",
"require": "./index.js",
"default": "./index.js"
}
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/brianc/node-postgres.git",
"directory": "packages/pg-cursor"
},
"author": "Brian M. Carlson",
"license": "MIT",
"devDependencies": {
"mocha": "^11.7.5",
"pg": "^8.19.0"
},
"peerDependencies": {
"pg": "^8"
},
"files": [
"index.js",
"esm"
]
}