-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.44 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": "tree-sitter-twig",
"version": "1.0.0",
"description": "Twig grammar for tree-sitter",
"main": "bindings/node",
"types": "bindings/node",
"scripts": {
"build": "tree-sitter generate && node-gyp build",
"test": "npm run build && tree-sitter test",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gbprod/tree-sitter-twig.git"
},
"keywords": [
"parser",
"twig"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"author": "gbprod <[email protected]>",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/gbprod/tree-sitter-twig/issues"
},
"homepage": "https://github.com/gbprod/tree-sitter-twig#readme",
"dependencies": {
"node-addon-api": "^7.1.0",
"node-gyp-build": "^4.8.0"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"tree-sitter-cli": "^0.20.7",
"prebuildify": "^6.0.0"
},
"tree-sitter": [
{
"scope": "twig",
"file-types": [
"twig",
"html.twig",
"html.twig.js.css"
],
"highlights": [
"queries/highlights.scm"
],
"injections": "queries/injections.scm",
"injection-regex": "twig"
}
]
}