-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "bigquery-porter",
"description": "BigQuery Porter is a tool to manage BigQuery Metadata and Deployment. ",
"type": "module",
"exports": "./dist/src/index.js",
"files": [
"dist"
],
"license": {
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
},
"bin": {
"bqport": "dist/src/index.js"
},
"keywords": [
"deployment",
"metadata",
"bigquery"
],
"repository": "https://github.com/takegue/bigquery-porter",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"publint": "publint",
"format": "deno fmt",
"build": "tsc"
},
"dependencies": {
"@google-cloud/bigquery": "^7.0.0",
"@types/node": "^20.1.1",
"commander": "^11.0.0",
"log-update": "^5.0.1",
"p-throttle": "^5.0.0",
"picocolors": "^1.0.0",
"publint": "^0.2.5",
"tree-sitter": "^0.20.1",
"tree-sitter-sql-bigquery": "^0.4.2"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@vitest/coverage-istanbul": "^0.31.4",
"ts-node": "^10.7.0",
"typescript": "^5.0.4",
"vitest": "^0.31.0",
"webpack": "^5.73.0",
"webpack-cli": "^5.0.0"
},
"version": "0.2.8"
}