-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.98 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.98 KB
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
{
"name": "quicktemplate-vscode",
"displayName": "QuickTemplate",
"description": "Syntax Highlighting and code (go/html/css) completion for valyala/quicktemplate",
"author": "JDinABox",
"publisher": "jdinabox",
"license": "MIT",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/JDinABox/quicktemplate.vscode"
},
"engines": {
"vscode": "^1.50.0"
},
"activationEvents": [
"onLanguage:qtpl"
],
"main": "./client/out/extension",
"categories": [
"Snippets"
],
"contributes": {
"languages": [
{
"id": "qtpl",
"aliases": [
"QTPL",
"qtpl"
],
"extensions": [
".qtpl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "qtpl",
"scopeName": "source.qtpl",
"path": "./syntaxes/qtpl.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.html": "html",
"meta.embedded.block.go": "go"
}
}
],
"snippets": [
{
"language": "qtpl",
"path": "./snippets/qtpl.json"
}
]
},
"scripts": {
"vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh",
"compile": "tsc -b",
"development": "tsc -b -w"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.1.0",
"typescript": "^4.0.2"
}
}