forked from PejmanNik/sqlops-spexecutesql-to-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "sqlops-spexecutesql-to-sql",
"displayName": "sqlops-spexecutesql-to-sql",
"description": "sp_executesql to sql",
"version": "1.0.2",
"publisher": "pejmannikram",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/PejmanNik/sqlops-spexecutesql-to-sql"
},
"engines": {
"vscode": "^1.29.0",
"sqlops": "*"
},
"keywords": [
"spexecutesql",
"sp-executesql",
"convert"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.convert"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.convert",
"title": "Convert",
"category": "sp_executesql to sql"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install && node ./node_modules/sqlops/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.7.4",
"vscode": "^1.1.36",
"sqlops": "github:anthonydresser/sqlops-extension-sqlops",
"tslint": "^5.20.1",
"@types/node": "^13.1.2",
"@types/mocha": "^5.2.7"
}
}