-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.23 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
{
"name": "mail-zap",
"displayName": "Mail Zap",
"description": "Create and update Eloqua HTML emails within Visual Studio Code",
"version": "0.0.6",
"publisher": "thomasaustin",
"author": {
"name": "Thomas Austin"
},
"repository": {
"type": "git",
"url": "https://github.com/thomasaustin/mail-zap"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"keywords": [
"Email",
"Eloqua",
"API",
"HTML"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#222222",
"theme": "dark"
},
"license": "MIT",
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.mailzapconfig",
"title": "Mail Zap: Create Config"
},
{
"command": "extension.mailzapcreate",
"title": "Mail Zap: Create Email"
},
{
"command": "extension.mailzapupdate",
"title": "Mail Zap: Update Email"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^11.13.20",
"typescript": "^3.6.2",
"vscode": "^1.1.36"
},
"dependencies": {
"axios": "^0.18.1"
}
}