-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.93 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
{
"name": "@jcoreio/get-pg-config",
"description": "apply default postgres connection config from dotfiles and .pgpass",
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/get-pg-config.git"
},
"homepage": "https://github.com/jcoreio/get-pg-config",
"bugs": {
"url": "https://github.com/jcoreio/get-pg-config/issues"
},
"author": "Andy Edwards",
"license": "MIT",
"keywords": [
"pg",
"postgres",
"node-postgres",
"node-pg",
"pgpass"
],
"devDependencies": {
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "4.5.5",
"@jcoreio/toolchain-circle": "^4.5.5",
"@jcoreio/toolchain-esnext": "^4.5.5",
"@jcoreio/toolchain-mocha": "^4.5.5",
"@jcoreio/toolchain-semantic-release": "^4.5.5",
"@jcoreio/toolchain-typescript": "^4.5.5",
"@types/chai": "^4.0.0",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^10.0.6",
"@types/pg": "^8.11.6",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"chai": "^4.0.0",
"chai-subset": "^1.6.0",
"eslint": "^8.56.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"mocha": "^10.2.0",
"pg": "^8.11.5",
"typescript": "^5.1.0"
},
"version": "0.0.0-development",
"sideEffects": false,
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./dist/package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@8.11.0",
"dependencies": {
"@babel/runtime": "^7.18.6",
"cosmiconfig": "^9.0.0",
"pg": "^8.11.5",
"pgpass": "^1.0.5"
}
}