-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
{
"name": "@cubejs-backend/cloud",
"version": "1.6.22",
"description": "Cube Cloud package",
"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",
"unit": "jest dist/test",
"lint": "eslint --debug src/* --ext .ts",
"lint:fix": "eslint --fix src/* --ext .ts"
},
"files": [
"README.md",
"dist/src/*"
],
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=17.0.0"
},
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-backend-cloud"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@cubejs-backend/linter": "1.6.22",
"@types/fs-extra": "^9.0.8",
"@types/jest": "^29",
"jest": "^29",
"typescript": "~5.2.2"
},
"dependencies": {
"@cubejs-backend/dotenv": "^9.0.2",
"@cubejs-backend/shared": "1.6.22",
"chokidar": "^3.5.1",
"env-var": "^6.3.0",
"form-data": "^4.0.0",
"fs-extra": "^9.1.0",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^2.7.0"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "../cubejs-linter"
}
}