-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 KB
/
package.json
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
{
"name": "dataform-osmosis",
"version": "0.2.3",
"description": "dataform-osmosis is a CLI tool for refactoring and managing Dataform SQLX files.",
"main": "./bin/main.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node ./bin/main.js"
},
"files": [
"bin"
],
"dependencies": {
"@dataform/cli": "^3.0.0",
"@dataform/core": "^3.0.0",
"@google-cloud/bigquery": "^7.9.0",
"commander": "12.1.0",
"json5": "^2.2.3",
"yaml": "^2.6.0"
},
"author": "hiracky16",
"license": "Apache-2.0",
"bin": {
"dataform-osmosis": "./bin/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiracky16/dataform-osmosis.git"
},
"bugs": {
"url": "https://github.com/hiracky16/dataform-osmosis/issues"
},
"homepage": "https://github.com/hiracky16/dataform-osmosis",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/mock-fs": "^4.13.4",
"jest": "^29.7.0",
"mock-fs": "^5.3.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.0"
},
"keywords": [
"dataform"
]
}