-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.56 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
{
"name": "sml-converters",
"description": "Semantic Modeling Language converters",
"version": "0.0.0",
"author": "AtScale",
"bin": {
"sml-converters": "./bin/run.js"
},
"dependencies": {
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"js-yaml": "^4.1.0",
"sml-sdk": "^1.1.0",
"snowflake-sdk": "^2.1.1",
"zod": "3.22.3"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8",
"eslint-config-prettier": "^9",
"oclif": "^4",
"shx": "^0.3.3",
"ts-node": "^10",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"./bin/run.js",
"./dist",
"./oclif.manifest.json",
"./.oclifrc.js"
],
"homepage": "https://github.com/semanticdatalayer/sml-converters",
"keywords": [
"sml",
"semantic modeling language",
"semantic layer",
"converters",
"dbt",
"cortex",
"snowflake",
"cli"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"repository": "https://github.com/semanticdatalayer/sml-converters",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint --ext ts src",
"test": "echo \"No tests found\"",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts"
}