-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.16 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
71
72
{
"name": "@dforsber/s3-selectable",
"version": "2.2.0",
"description": "S3 Select over Glue Table",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"author": "dforsber",
"license": "MIT",
"private": false,
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/dforsber/s3-selectable"
},
"keywords": [
"S3",
"Glue Table"
],
"scripts": {
"prebuild": "yarn install --frozen-lockfile",
"build": "rimraf dist/ && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build:watch": "npx onchange 'src/**/*.ts' -- yarn build",
"prettier": "prettier --check 'src/**/*.{js,ts}'",
"prettier:fix": "prettier --write 'src/**/*.{js,ts}'",
"lint": "yarn prettier && eslint \"./src/**/*.ts\"",
"lint:fix": "yarn lint --quiet --fix",
"lint:watch": "npx onchange 'src/**/*.ts' -- yarn lint",
"test": "jest",
"preupdate-integration": "yarn build",
"update-integration": "rsync -av --exclude integration-tests . integration-tests/node_modules/@dforsber/s3-selectable/",
"test:watch": "yarn test -- --watchAll",
"test:badges": "npx jest-coverage-badges output ./badges",
"clean": "rimraf dist/ node_modules/ coverage/"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"dependencies": {
"@aws-sdk/client-glue": "^3.379.1",
"@aws-sdk/client-s3": "^3.379.1",
"bunyan": "^1.8.15",
"merge-stream": "^2.0.0",
"node-sql-parser": "^4.8.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/jest": "^29.5.3",
"@types/merge-stream": "^1.1.2",
"@types/node": "^20.4.5",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"aws-sdk-client-mock": "^3.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"onchange": "^7.1.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}