-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "connswitch",
"displayName": "ConnSwitch",
"description": "This is an extension for assigning connections to cells of SQL Notebooks.",
"publisher": "Ian Kinkead",
"version": "0.0.1",
"engines": {
"vscode": "^1.39.0",
"azdata": "*"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:connswitch.launchWizard"
],
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "connswitch.launchWizard",
"title": "Set Cell Connections"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext wizard",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"proposedapi": "node installTypings.js"
},
"devDependencies": {
"@types/vscode": "^1.39.0",
"@types/azdata": "*",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^13.11.0",
"eslint": "^6.8.0",
"@typescript-eslint/parser": "^2.30.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"glob": "^7.1.7",
"mocha": "^9.1.0",
"typescript": "^4.3.5",
"azdata-test": "^1.x"
}
}