forked from johnknoop/vscode-handlebars-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.28 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
{
"name": "vscode-handlemarj",
"displayName": "HandleMarj: Handlebars + MJML Preview",
"description": "Use Handlebars + MJML together to preview data driven HTML emails",
"publisher": "dbateman",
"version": "1.0.0",
"engines": {
"vscode": "^1.35.1"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/dbateman/vscode-handlemarj"
},
"icon": "media/handlemarj.png",
"activationEvents": [
"onCommand:extension.previewHandlemarj",
"onCommand:extension.generateContextFile"
],
"main": "./out/extension.js",
"preview": false,
"contributes": {
"commands": [
{
"command": "extension.previewHandlemarj",
"title": "HandleMarj: Preview"
},
{
"command": "extension.generateContextFile",
"title": "HandleMarj: Generate context file"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.generateContextFile",
"when": "resourceFilename =~ /\\.(mjml|hbmjml)$/",
"group": "HandleMarj"
}
],
"editor/title/context": [
{
"command": "extension.previewHandlemarj",
"when": "resourceLangId == mjml",
"group": "HandleMarj"
},
{
"command": "extension.generateContextFile",
"when": "resourceLangId == mjml",
"group": "HandleMarj"
}
]
},
"languages": [
{
"id": "mjml",
"extensions": [
".mjml"
],
"aliases": [
"MJML",
"mjml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mjml",
"scopeName": "text.mjml.basic",
"path": "./syntaxes/MJML.tmLanguage"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "vsce package",
"publish-marketplace": "vsce publish"
},
"devDependencies": {
"@types/cheerio": "^0.22.11",
"@types/jest": "^24.0.15",
"@types/mjml": "^4.7.0",
"@types/node": "^10.12.21",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.12.1",
"typescript": "^3.5.2",
"vsce": "1.78.0",
"vscode": "^1.1.34"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"handlebars": "^4.7.6",
"mjml": "^4.8.1",
"rxjs": "^6.5.2"
},
"volta": {
"node": "14.16.0"
}
}