-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.77 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.77 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
{
"name": "cubejs-cli",
"description": "Cube.js Command Line Interface",
"author": "Cube Dev, Inc.",
"version": "1.6.11",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-cli"
},
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=17.0.0"
},
"bin": {
"cubejs": "dist/src/index.js"
},
"scripts": {
"build": "rm -rf dist && npm run tsc",
"tsc": "tsc",
"watch": "tsc -w",
"test": "npm run unit",
"unit": "jest dist/test",
"lint": "eslint src/* --ext .ts,.js",
"lint:fix": "eslint --fix src/* --ext .ts,.js"
},
"files": [
"dist/src/*",
"yarn.lock",
"README.md",
"LICENSE"
],
"dependencies": {
"@cubejs-backend/cloud": "1.6.11",
"@cubejs-backend/dotenv": "^9.0.2",
"@cubejs-backend/schema-compiler": "1.6.11",
"@cubejs-backend/shared": "1.6.11",
"chalk": "^2.4.2",
"cli-progress": "^3.10",
"commander": "^2.19.0",
"cross-spawn": "^7.0.1",
"form-data": "^4.0.0",
"fs-extra": "^8.1.0",
"inquirer": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"node-fetch": "2",
"semver": "^7.6.3",
"source-map-support": "^0.5.19"
},
"resolutions": {
"colors": "1.4.0"
},
"devDependencies": {
"@cubejs-backend/linter": "1.6.11",
"@cubejs-backend/server": "1.6.11",
"@oclif/command": "^1.8.0",
"@types/cli-progress": "^3.8.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.2",
"@types/inquirer": "^7.3.1",
"@types/jest": "^29",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20",
"@types/semver": "^7.5.8",
"husky": "^4.2.3",
"jest": "^29",
"typescript": "~5.2.2"
},
"license": "Apache-2.0",
"eslintConfig": {
"extends": "../cubejs-linter"
}
}