-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "athena-query",
"version": "1.0.6",
"description": "Query AWS Athena",
"source": "query.js",
"author": "hawyar",
"license": "MIT",
"type": "module",
"main": "dist/query.js",
"module": "dist/query.js",
"exports": {
"require": "./dist/query.cjs",
"import": "./dist/query.js",
"types": "./dist/query.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hawyar/athena-query.git"
},
"scripts": {
"build": "esbuild lib/query.js --format=cjs --platform=node --outfile=dist/query.cjs && esbuild lib/query.js --format=esm --platform=node --outfile=dist/query.js && tsc",
"test": "tap test.js --reporter=specy -J --color --no-coverage",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"lib",
"test.js",
"tsconfig.json",
"README.md"
],
"standard": {
"ignore": [
"dist",
"node_modules",
".nyc_output",
"coverage"
]
},
"devDependencies": {
"@types/node": "^20.3.2",
"esbuild": "^0.18.10",
"tap": "^15.2.3",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@aws-sdk/client-athena": "^3.252.0",
"@aws-sdk/credential-providers": "^3.252.0"
}
}