-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.3 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@databricks/sql",
"version": "2.0.0",
"description": "Driver for connection to Databricks SQL via Thrift API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples",
"test": "tests"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepare": "npm run build",
"e2e": "nyc --report-dir=${NYC_REPORT_DIR:-coverage_e2e} mocha --config tests/e2e/.mocharc.js",
"test": "nyc --report-dir=${NYC_REPORT_DIR:-coverage_unit} mocha --config tests/unit/.mocharc.js",
"update-version": "node bin/update-version.js && prettier --write ./lib/version.ts",
"build": "npm run update-version && tsc --project tsconfig.build.json",
"watch": "tsc --project tsconfig.build.json --watch",
"type-check": "tsc --noEmit",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"lint": "eslint 'lib/**/*.{js,ts}' 'tests/e2e/**/*.{js,ts}' --ext .js,.ts",
"lint:fix": "eslint 'lib/**/*.{js,ts}' --ext .js,.ts --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/databricks/databricks-sql-nodejs/"
},
"bugs": {
"url": "https://github.com/databricks/databricks-sql-nodejs/issues"
},
"homepage": "https://github.com/databricks/databricks-sql-nodejs#readme",
"keywords": [
"databricks sql",
"hiveserver2",
"apache",
"hive",
"hs2",
"client",
"thrift",
"nodejs",
"js",
"hive",
"hive js"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/http-proxy": "^1.17.14",
"@types/lz4": "^0.6.4",
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.13",
"@types/node-int64": "^0.4.29",
"@types/sinon": "^17.0.3",
"@types/thrift": "^0.10.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"chai": "^4.3.6",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"http-proxy": "^1.18.1",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"sinon": "^17.0.2",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
},
"dependencies": {
"apache-arrow": "^13.0.0",
"commander": "^9.3.0",
"node-fetch": "^2.6.12",
"node-int64": "^0.4.0",
"open": "^8.4.2",
"openid-client": "^5.4.2",
"proxy-agent": "^6.3.1",
"thrift": "^0.23.0",
"uuid": "^11.1.1",
"winston": "^3.8.2"
},
"optionalDependencies": {
"lz4": "^0.6.5"
},
"overrides": {
"basic-ftp": "^5.3.1",
"@75lb/deep-merge": "^1.1.2",
"braces": "^3.0.3",
"picomatch": "^2.3.2",
"flatted": "^3.4.2",
"minimatch": "^3.1.3",
"ws": "^8.18.0",
"cross-spawn": "^7.0.6",
"serialize-javascript": "^7.0.5",
"follow-redirects": "^1.16.0",
"brace-expansion": "^1.1.13",
"@babel/helpers": "^7.26.10",
"@babel/runtime": "^7.26.10",
"@babel/runtime-corejs3": "^7.26.10",
"ip-address": "^10.1.1",
"js-yaml": "^4.1.1",
"micromatch": "^4.0.8",
"uuid": "^11.1.1"
}
}