-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 2.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "dbt-shortcuts",
"publisher": "foldager",
"displayName": "dbt-shortcuts",
"description": "Shortcuts for DBT",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#d9694e",
"theme": "dark"
},
"homepage": "https://github.com/magnusfoldager/dbt-shortcuts",
"bugs": {
"url": "https://github.com/magnusfoldager/dbt-shortcuts/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/magnusfoldager/dbt-shortcuts.git"
},
"version": "0.0.6",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:dbt-shortcuts.compileFile",
"onCommand:dbt-shortcuts.compileFileFromMenu",
"onCommand:dbt-shortcuts.runFile",
"onCommand:dbt-shortcuts.runFileFromMenu",
"onCommand:dbt-shortcuts.testFile",
"onCommand:dbt-shortcuts.testFileFromMenu"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "DBT Shortcuts",
"properties": {
"dbtshortcuts.askForPrefix": {
"type": "boolean",
"default": true,
"description": "Ask for a prefix every time when running a DBT Shortcut."
},
"dbtshortcuts.defaultPrefix": {
"type": "string",
"default": "@",
"description": "Specifies the default prefix to use when running a DBT Shortcut."
}
}
},
"commands": [
{
"command": "dbt-shortcuts.compileFile",
"title": "DBT Shortcuts: Compile File"
},
{
"command": "dbt-shortcuts.compileFileFromMenu",
"title": "DBT Shortcuts: Compile File"
},
{
"command": "dbt-shortcuts.runFile",
"title": "DBT Shortcuts: Run File"
},
{
"command": "dbt-shortcuts.runFileFromMenu",
"title": "DBT Shortcuts: Run File"
},
{
"command": "dbt-shortcuts.testFile",
"title": "DBT Shortcuts: Test File"
},
{
"command": "dbt-shortcuts.testFileFromMenu",
"title": "DBT Shortcuts: Test File"
}
],
"menus": {
"explorer/context": [
{
"command": "dbt-shortcuts.compileFileFromMenu",
"group": "DBTShortcuts@1",
"when": "resourceExtname == .sql"
},
{
"command": "dbt-shortcuts.runFileFromMenu",
"group": "DBTShortcuts@2",
"when": "resourceExtname == .sql"
},
{
"command": "dbt-shortcuts.testFileFromMenu",
"group": "DBTShortcuts@3",
"when": "resourceExtname == .sql"
}
],
"commandPalette": [
{
"command": "dbt-shortcuts.compileFileFromMenu",
"when": "false"
},
{
"command": "dbt-shortcuts.runFileFromMenu",
"when": "false"
},
{
"command": "dbt-shortcuts.testFileFromMenu",
"when": "false"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"dependencies": {
"@types/vscode": "^1.49.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
},
"devDependencies": {}
}