-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "aws-athena-node-client",
"version": "3.0.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"author": "Álvaro de la Vega Olmedilla <alvarodlvo@gmail.com>",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublish": "tsc",
"build": "tsc"
},
"keywords": [
"aws",
"athena-client",
"amazon web services",
"athena",
"query",
"typescript",
"node",
"nodejs"
],
"license": "MIT",
"homepage": "https://github.com/avegao/aws-athena-node-client",
"repository": {
"type": "git",
"url": "git@github.com:avegao/aws-athena-node-client.git"
},
"bugs": "https://github.com/avegao/aws-athena-node-client/issues",
"devDependencies": {
"@aws-sdk/client-athena": "^3.600.0",
"@aws-sdk/client-s3": "^3.600.0",
"@aws-sdk/s3-request-presigner": "^3.600.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.6",
"@vitest/coverage-v8": "^1.6.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"aws-athena-node-client": "^2.0.1",
"destr": "^2.0.3",
"lodash-es": "^4.17.21",
"pg-promise": "^11.8.0"
},
"peerDependencies": {
"@aws-sdk/client-athena": "^3.533.0",
"@aws-sdk/client-s3": "^3.533.0",
"@aws-sdk/s3-request-presigner": "^3.533.0"
}
}