-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.86 KB
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": "@beekeeperstudio/knex-snowflake-dialect",
"version": "0.4.4",
"description": "knex.js dialect for the Snowflake data warehouse",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf lib/ tsconfig.build.tsbuildinfo",
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint --fix 'src/**/*.ts'",
"test": "yarn run lint && jest --runInBand --silent --forceExit --detectOpenHandles",
"coverage": "jest --coverage --silent && open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beekeeper-studio/knex-snowflake-dialect.git"
},
"author": "Emmet Murphy",
"keywords": [
"knex",
"snowflake"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/beekeeper-studio/knex-snowflake-dialect/issues"
},
"homepage": "https://github.com/beekeeper-studio/knex-snowflake-dialect#readme",
"jest": {
"automock": false,
"transform": {
".(ts)": ["ts-jest", { "tsconfig": "tsconfig.test.json" }]
},
"testEnvironment": "node",
"testRegex": "(\\.(ispec|uspec))\\.(ts)$",
"roots": [
"<rootDir>/test"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"dependencies": {
"lodash": "^4.18.1",
"snowflake-sdk": "^2.4.0"
},
"peerDependencies": {
"knex": ">=2.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^29",
"@types/lodash": "4.17.24",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"jest": "^29.7.0",
"knex": "^3.2.10",
"ts-jest": "^29.1.5",
"typescript": "^6.0.3"
}
}