forked from databricks/databricks-sql-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.09 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
73
74
75
76
77
{
"name": "@databricks/sql",
"version": "1.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": ">=14.0.0"
},
"scripts": {
"prepare": "npm run build",
"e2e": "nyc --reporter=lcov --report-dir=coverage_e2e mocha --config tests/e2e/.mocharc.js",
"test": "nyc --reporter=lcov --report-dir=coverage_unit mocha --config tests/unit/.mocharc.js",
"build": "tsc",
"watch": "tsc -w",
"type-check": "tsc --noEmit",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"lint": "eslint lib/** --ext .js,.ts",
"lint:fix": "eslint lib/** --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/node": "^18.0.0",
"@types/node-int64": "^0.4.29",
"@types/thrift": "^0.10.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"chai": "^4.3.6",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"commander": "^9.3.0",
"node-int64": "^0.4.0",
"thrift": "^0.16.0",
"uuid": "^9.0.0",
"winston": "^3.8.2"
}
}