-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 loc) · 983 Bytes
/
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
{
"name": "tree-sitter-go-template",
"version": "0.19.5",
"description": "Golang template grammar for tree-sitter",
"main": "bindings/node",
"keywords": [
"parser",
"json",
"go-template"
],
"author": "Nikita Galaiko",
"license": "MIT",
"dependencies": {
"nan": "^2.18.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.8"
},
"scripts": {
"build": "tree-sitter generate && node-gyp build && npm run build-helm",
"build-helm": "cd dialects/helm && tree-sitter generate --no-bindings",
"test": "tree-sitter test",
"parse": "tree-sitter parse",
"highlight": "tree-sitter highlight"
},
"tree-sitter": [
{
"scope": "source.gotexttmpl",
"file-types": [
"gotmpl",
"gotexttmpl",
"gohtmltmpl",
"yaml"
],
"content-regex": "{{.+}}"
},
{
"scope": "source.helm",
"path": "dialects/helm",
"file-types": [
"helm"
]
}
]
}