-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.75 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
{
"name": "ide-vscode",
"displayName": "Zato for Visual Studio Code",
"description": "Hot-deploy Zato services to clusters",
"version": "1.0.8",
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/zatosource/ide-vscode.git"
},
"icon": "images/zato-128xsquare.png",
"galleryBanner.color": "#ffffe3",
"publisher": "zatosource",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:python",
"onCommand:extension.zatoHotDeploy",
"onCommand:extension.zatoTestConnection"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.zatoHotDeploy",
"title": "Hot-deploy to Zato"
},
{
"command": "extension.zatoTestConnection",
"title": "Test Zato Connection"
}
],
"keybindings": [
{
"command": "extension.zatoHotDeploy",
"key": "ctrl+shift+l",
"mac": "cmd+shift+l",
"when": "editorTextFocus"
}
],
"menus": {
"editor/title": [
{
"command": "extension.zatoHotDeploy",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "Zato Publish Configuration",
"properties": {
"zato.url": {
"type": "string",
"default": "http://localhost:11223/",
"description": "URL to the Zato load balancer or server where changes should be published."
},
"zato.username": {
"type": "string",
"default": "ide_publisher",
"description": "User name to authenticate to Zato with."
},
"zato.password": {
"type": "string",
"description": "Password to authenticate to Zato with."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"http-client": "^4.3.1",
"js-base64": "^2.4.0",
"path": "^0.12.7",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"vsce": "^1.35.0"
}
}