-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "@cubejs-backend/base-driver",
"description": "Cube.js Base Driver",
"author": "Cube Dev, Inc.",
"version": "1.6.21",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-base-driver"
},
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=17.0.0"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"build": "rm -rf dist && npm run tsc",
"tsc": "tsc",
"watch": "tsc -w",
"test": "npm run unit && npm run integration",
"unit": "jest --runInBand --coverage --verbose test/unit",
"lint": "eslint src/* test/* --ext .ts,.js",
"lint:fix": "eslint --fix src/* test/* --ext .ts,.js"
},
"files": [
"README.md",
"driver/*",
"orchestrator/*",
"dist/src/*"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.49.0",
"@aws-sdk/s3-request-presigner": "^3.49.0",
"@azure/identity": "^4.4.1",
"@azure/storage-blob": "^12.9.0",
"@cubejs-backend/shared": "1.6.21",
"@google-cloud/storage": "^7.13.0"
},
"devDependencies": {
"@cubejs-backend/linter": "1.6.21",
"@types/jest": "^29",
"@types/node": "^20",
"jest": "^29",
"ts-jest": "^29",
"typescript": "~5.2.2"
},
"license": "Apache-2.0",
"eslintConfig": {
"extends": "../cubejs-linter"
},
"publishConfig": {
"access": "public"
}
}