knex-dialect-athena
Version:
A Knex dialect for AWS Athena
62 lines • 1.44 kB
JSON
{
"$schema": "https://json.schemastore.org/package.json",
"name": "knex-dialect-athena",
"version": "0.0.12",
"author": "ej-shafran",
"license": "MIT",
"description": "A Knex dialect for AWS Athena",
"repository": {
"url": "https://github.com/ej-shafran/knex-dialect-athena.git",
"type": "git",
"directory": "packages/knex-dialect-athena/"
},
"keywords": [
"knex",
"sql",
"aws",
"athena"
],
"files": [
"lib",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"./athena-connection": {
"types": "./lib/athena-connection.d.ts",
"import": "./lib/athena-connection.mjs",
"require": "./lib/athena-connection.js"
}
},
"peerDependencies": {
"@aws-sdk/client-athena": "^3",
"knex": "^3"
},
"devDependencies": {
"@fast-check/vitest": "^0.1.4",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.17.13",
"fast-check": "^3.23.0",
"nock": "^13.5.5",
"tarn": "^3.0.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"dependencies": {
"debug": "^4.3.7",
"lodash": "^4.17.21"
},
"scripts": {
"build": "tsup src/ --out-dir lib",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"check-types": "tsc",
"test": "vitest run",
"test:watch": "vitest dev"
}
}