-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 877 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 877 Bytes
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
{
"name": "@squashql/squashql-codegen",
"version": "1.0.17",
"description": "SquashQL CLI to generate type definitions representing tables from your database",
"main": "./build/index.js",
"types": "./build/types.d.ts",
"files": [
"/build"
],
"bin": {
"squashql-codegen": "./build/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./build && tsc"
},
"keywords": [
"cli"
],
"author": "SquashQL Labs",
"license": "Apache-2.0",
"devDependencies": {
"@types/lodash": "^4.14.196",
"@types/node": "^20.4.5",
"@types/snowflake-sdk": "^1.6.13",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@google-cloud/bigquery": "^7.0.0",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"snowflake-sdk": "^1.7.0",
"ts-node": "^10.9.1"
}
}