-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
{
"name": "vscode-microsoftteams",
"displayName": "vscode-microsoftteams",
"description": "Send messages and files to Microsoft Teams from Visual Studio Code",
"icon": "icon.png",
"version": "1.0.6",
"publisher": "stefanstranger",
"repository": {
"type": "git",
"url": "https://github.com/stefanstranger/vscode-microsoftteams"
},
"homepage": "https://github.com/stefanstranger/vscode-microsoftteams/blob/master/README.md",
"bugs": {
"url": "https://github.com/stefanstranger/vscode-microsoftteams/issues"
},
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other"
],
"keywords": [
"MicrosoftTeams",
"chat",
"communication",
"collaboration"
],
"activationEvents": [
"onCommand:extension.postMessage",
"onCommand:extension.postCurrentFile"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.postMessage",
"title": "Microsoft Teams: Post Message"
},
{
"command": "extension.postCurrentFile",
"title": "Microsoft Teams: Post Current File"
}
],
"configuration": {
"type": "object",
"title": "Visual Studio Code Microsoft Teams configuration",
"properties": {
"microsoftteams.teamswebhook": {
"type": "object",
"default": "",
"description": "Microsoft Teams Webhook"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"request": "^2.81.0"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.69",
"@types/request": "0.0.42",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
}
}