-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "@well-known-components/pg-component",
"version": "1.0.0",
"description": "Component to interact with https://www.postgresql.org/ easily",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/well-known-components/pg-component.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/well-known-components/pg-component/issues"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"homepage": "https://github.com/well-known-components/pg-component#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.47.0",
"@types/node": "^17.0.31",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/metrics": "^2.1.0",
"@well-known-components/test-helpers": "^1.5.6",
"node-fetch": "2",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/pg": "^8.6.5",
"@well-known-components/interfaces": "^1.4.3",
"node-pg-migrate": "^6.2.1",
"pg": "^8.7.3",
"pg-query-stream": "^4.2.3",
"sql-template-strings": "^2.2.2"
},
"files": [
"dist"
]
}