-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 1.5 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
{
"name": "hive-driver",
"version": "1.0.0",
"description": "Driver for connection to Apache Hive via Thrift API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"e2e": "env HIVE_E2E_LOG=CONSOLE mocha 'tests/e2e/**/*.test.js' --timeout=300000",
"test": "nyc --reporter=lcov mocha 'tests/unit/**/*.test.js'",
"coverage": "codecov",
"build": "tsc",
"watch": "tsc -w",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/lenchv/hive-driver/"
},
"bugs": {
"url": "https://github.com/lenchv/hive-driver/issues"
},
"homepage": "https://github.com/lenchv/hive-driver#readme",
"keywords": [
"hiveserver2",
"apache",
"hive",
"hs2",
"kerberos",
"sasl",
"ldap",
"hadoop",
"client",
"thrift",
"nodejs",
"js",
"hive",
"hive js"
],
"author": "Liench Volodymyr <lenchvov@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"chai": "^4.4.1",
"codecov": "^3.8.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"get-fqdn": "1.0.0",
"jks-js": "^1.1.3",
"kerberos": "^2.1.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"typescript": "^5.4.5",
"zookeeper": "^6.1.1"
},
"dependencies": {
"node-int64": "^0.4.0",
"thrift": "^0.20.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}