-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.17 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
{
"name": "tree-sitter-bruno",
"version": "0.1.0",
"description": "Bruno grammar for tree-sitter",
"main": "bindings/node",
"types": "bindings/node",
"scripts": {
"generate": "tree-sitter generate",
"parse": "tree-sitter parse",
"test": "tree-sitter test",
"highlight": "tree-sitter highlight"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scalamando/tree-sitter-bruno.git"
},
"keywords": [
"bruno",
"tree-sitter",
"parser"
],
"author": "Raimund Canzler <[email protected]>",
"license": "MIT",
"files": [
"/bindings/node/",
"/binding.gyp",
"/grammar.js",
"/queries/",
"/src/"
],
"tree-sitter": [
{
"scope": "source.bruno",
"file-types": [
"bru"
],
"highlights": [
"queries/highlights.scm"
],
"injections": [
"queries/injections.scm"
]
}
],
"bugs": {
"url": "https://github.com/Scalamando/tree-sitter-bruno/issues"
},
"homepage": "https://github.com/Scalamando/tree-sitter-bruno#readme",
"dependencies": {
"node-addon-api": "^7.1.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.8"
}
}