-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "dataform-to-dbt",
"version": "0.5.1",
"type": "module",
"description": "Tool to assist in migrating from dataform to dbt",
"homepage": "https://github.com/elyobo/dataform-to-dbt/#readme",
"bugs": {
"url": "https://github.com/elyobo/dataform-to-dbt/#readme"
},
"repository": {
"type": "git",
"url": "https://github.com/elyobo/dataform-to-dbt.git"
},
"main": "./src/cli.js",
"bin": "./src/cli.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"preversion": "npm run test && npm run lint",
"postpublish": "git push origin main --follow-tags",
"lint": "eslint .",
"prepare": "husky install"
},
"keywords": [
"dbt",
"dataform"
],
"author": "Liam O'Boyle <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 14.8"
},
"dependencies": {
"@dataform/core": "^2.0.3",
"commander": "^9.4.1",
"yaml": "^2.1.3"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-n": "^15.3.0",
"husky": "^8.0.1",
"jest": "^29.2.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1"
},
"lint-staged": {
"*.{css,md}": "prettier --write",
"*.?(c)js": [
"npm run test -- --bail --findRelatedTests --passWithNoTests",
"prettier --write",
"eslint"
]
}
}