forked from porsager/postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "postgres",
"version": "3.4.4",
"description": "Fastest full featured PostgreSQL client for Node.js",
"type": "module",
"module": "src/index.js",
"main": "cjs/src/index.js",
"exports": {
"types": "./types/index.d.ts",
"bun": "./src/index.js",
"worker": "./cf/src/index.js",
"import": "./src/index.js",
"default": "./cjs/src/index.js"
},
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "npm run build:cjs && npm run build:deno && npm run build:cf",
"build:cjs": "node transpile.cjs",
"build:deno": "node transpile.deno.js",
"build:cf": "node transpile.cf.js",
"test": "npm run test:esm && npm run test:cjs && npm run test:deno",
"test:esm": "node tests/index.js",
"test:cjs": "npm run build:cjs && cd cjs/tests && node index.js && cd ../../",
"test:deno": "npm run build:deno && cd deno/tests && deno run --unstable --allow-all --unsafely-ignore-certificate-errors index.js && cd ../../",
"lint": "eslint src && eslint tests",
"prepare": "npm run build",
"prepublishOnly": "npm run lint"
},
"files": [
"/cf/src",
"/cf/polyfills.js",
"/cjs/src",
"/cjs/package.json",
"/src",
"/types"
],
"author": "Rasmus Porsager <[email protected]> (https://www.porsager.com)",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/porsager"
},
"license": "Unlicense",
"repository": "porsager/postgres",
"homepage": "https://github.com/porsager/postgres",
"bugs": "https://github.com/porsager/postgres/issues",
"keywords": [
"driver",
"postgresql",
"postgres.js",
"postgres",
"postrges",
"postgre",
"client",
"sql",
"db",
"pg",
"database"
]
}