1+ {
2+ "name" : " azure-account" ,
3+ "version" : " 0.1.0" ,
4+ "publisher" : " vscode" ,
5+ "engines" : {
6+ "vscode" : " *"
7+ },
8+ "enableProposedApi" : true ,
9+ "activationEvents" : [
10+ " *"
11+ ],
12+ "main" : " ./out/extension" ,
13+ "contributes" : {
14+ "commands" : [
15+ {
16+ "command" : " azure-account.login" ,
17+ "title" : " %azure-account.commands.login%" ,
18+ "category" : " %azure-account.commands.azure%"
19+ },
20+ {
21+ "command" : " azure-account.logout" ,
22+ "title" : " %azure-account.commands.logout%" ,
23+ "category" : " %azure-account.commands.azure%"
24+ },
25+ {
26+ "command" : " azure-account.addFilter" ,
27+ "title" : " %azure-account.commands.addResourceFilter%" ,
28+ "category" : " %azure-account.commands.azure%"
29+ },
30+ {
31+ "command" : " azure-account.removeFilter" ,
32+ "title" : " %azure-account.commands.removeResourceFilter%" ,
33+ "category" : " %azure-account.commands.azure%"
34+ },
35+ {
36+ "command" : " azure-account.createAccount" ,
37+ "title" : " %azure-account.commands.createAccount%" ,
38+ "category" : " %azure-account.commands.azure%"
39+ }
40+ ],
41+ "configuration" : {
42+ "type" : " object" ,
43+ "title" : " Azure configuration" ,
44+ "properties" : {
45+ "azure.resourceFilter" : {
46+ "type" : " array" ,
47+ "default" : null ,
48+ "description" : " The resource filter, each element is either a subscription id or a subscription id and a resource group name separated by a slash."
49+ }
50+ }
51+ }
52+ },
53+ "scripts" : {
54+ "compile" : " gulp compile-extension:azure-account" ,
55+ "watch" : " gulp watch-extension:azure-account"
56+ },
57+ "devDependencies" : {
58+ "@types/copy-paste" : " ^1.1.30" ,
59+ "@types/node" : " ^6.0.40" ,
60+ "@types/opn" : " ^3.0.28"
61+ },
62+ "dependencies" : {
63+ "adal-node" : " ^0.1.22" ,
64+ "azure-arm-resource" : " ^2.0.0-preview" ,
65+ "copy-paste" : " ^1.3.0" ,
66+ "ms-rest-azure" : " ^2.2.3" ,
67+ "vscode-nls" : " ^2.0.2" ,
68+ "opn" : " ^5.1.0"
69+ }
70+ }
0 commit comments