-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
185 lines (185 loc) · 5.79 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"name": "vscode-aad-explorer",
"publisher": "425show",
"displayName": "Microsoft Identity Platform explorer",
"description": "Add Azure Active Directory authentication to your app",
"version": "0.0.1",
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Azure"
],
"keywords": [
"Azure",
"Active Directory",
"Authentication"
],
"preview": true,
"activationEvents": [
"onCommand:azureAd.refreshEntry",
"onCommand:azureAd.CreateNewApp",
"onCommand:azureAd.OpenInPortal",
"onCommand:azureAd.ConfigureAppAuth",
"onCommand:azureAd.DeleteApp",
"onCommand:azureAd.UpdateApp",
"onCommand:azureAd.LoginAndTellMeImPretty",
"onStartupFinished"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "azureAd.LoginAndTellMeImPretty",
"title": "Login",
"category": "Azure AD Authentication"
},
{
"command": "azureAd.Logout",
"title": "Logout",
"icon": {
"light": "resources/light/account.svg",
"dark": "resources/dark/account.svg"
}
},
{
"command": "azureAd.refreshEntry",
"title": "Refresh",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
},
{
"command": "azureAd.createNewApp",
"title": "Create new App Registration",
"category": "Azure AD Authentication",
"icon": {
"light": "resources/light/add.svg",
"dark": "resources/dark/add.svg"
}
},
{
"command": "azureAd.updateApp",
"title": "Update App Registration details",
"category": "Azure AD Authentication"
},
{
"command": "azureAd.openInPortal",
"title": "View App Registration in Portal",
"category": "Azure AD Authentication"
},
{
"command": "azureAd.configureAppAuth",
"title": "Configure app authentication in code",
"category": "Azure AD Authentication"
},
{
"command": "azureAd.deleteApp",
"title": "Delete App Registration",
"category": "Azure AD Authentication",
"icon": {
"light": "resources/light/delete.svg",
"dark": "resources/dark/delete.svg"
}
},
{
"command": "azureAd.loginAndTellMeImPretty",
"title": "Login",
"category": "Azure AD Authentication"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "vscode-aad-explorer",
"title": "Azure Active Directory",
"icon": "resources/dark/aad.svg"
}
]
},
"viewsWelcome": [
{
"view": "vscode-aad-explorer.apps",
"contents": "Login to get started.\n[Login with work or school](command:azureAd.LoginAndTellMeImPretty)"
}
],
"views": {
"vscode-aad-explorer": [
{
"id": "vscode-aad-explorer.apps",
"name": "Apps"
}
]
},
"menus": {
"view/title": [
{
"command": "azureAd.refreshEntry",
"group": "navigation"
},
{
"command": "azureAd.createNewApp",
"group": "navigation"
},
{
"command": "azureAd.Logout",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "azureAd.deleteApp",
"group": "action"
},
{
"command": "azureAd.updateApp",
"group": "action"
},
{
"command": "azureAd.openInPortal",
"group": "action"
}
]
},
"breakpoints": [
{
"language": "javascript"
}
]
},
"scripts": {
"vscode:prepublish": "npm run webpack-prod",
"build": "tsc",
"compile": "tsc -watch",
"lint": "tslint --project tsconfig.json -t verbose",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.10.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@types/vscode": "^1.48.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"open": "^8.4.0",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "^4.5.2",
"vscode-test": "^1.6.1",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"extensionDependencies": [],
"dependencies": {
"@azure/arm-resources": "^4.2.2",
"@azure/msal-node": "^1.3.3",
"@microsoft/microsoft-graph-client": "^3.0.1",
"isomorphic-fetch": "^3.0.0",
"ms-rest": "^2.5.4",
"ms-rest-azure": "^3.0.1"
}
}