forked from VSChina/vscode-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.34 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": "vscode-ansible",
"displayName": "Ansible",
"description": "VSCode extension for Ansible - RETIRED, please uninstall.",
"license": "SEE LICENSE IN LICENSE.md",
"version": "0.5.2",
"publisher": "vscoss",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other",
"Snippets"
],
"keywords": [
"ansible",
"playbook",
"snippets",
"ansible module"
],
"repository": {
"url": "https://github.com/VSChina/vscode-ansible.git"
},
"homepage": "https://github.com/VSChina/vscode-ansible/blob/master/README.md",
"activationEvents": [
"onLanguage:ansible",
"onCommand:vscode-ansible.cloudshell",
"onCommand:vscode-ansible.playbook-in-docker",
"onCommand:vscode-ansible.playbook-in-localansible",
"onCommand:vscode-ansible.ssh",
"onCommand:vscode-ansible.sync-folder-ssh",
"onCommand:vscode-ansible.resource-module-samples"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "ansible",
"alias": [
"ansible"
],
"extensions": [
"ansible"
]
}
],
"commands": [
{
"command": "vscode-ansible.cloudshell",
"title": "Run Ansible Playbook in Cloud Shell",
"category": "Ansible"
},
{
"command": "vscode-ansible.playbook-in-docker",
"title": "Run Ansible Playbook in Docker",
"category": "Ansible"
},
{
"command": "vscode-ansible.playbook-in-localansible",
"title": "Run Ansible Playbook in Local Ansible",
"category": "Ansible"
},
{
"command": "vscode-ansible.ssh",
"title": "Run Ansible Playbook Remotely via ssh",
"category": "Ansible"
},
{
"command": "vscode-ansible.sync-folder-ssh",
"title": "Copy folder to Remote Host",
"category": "Ansible"
},
{
"command": "vscode-ansible.resource-module-samples",
"title": "Samples for azure_rm_resource (PREVIEW)",
"category": "Ansible"
}
],
"menus": {}
},
"scripts": {
"compile": "tsc -p ./",
"vscode:prepublish": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "12.7.2",
"@types/vscode": "^1.31.0",
"typescript": "^4.1.2"
},
"dependencies": {}
}