-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 892 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
{
"name": "tree-sitter-bibtex",
"version": "0.1.0",
"description": "Tree-sitter Grammar for BibTeX",
"main": "bindings/node",
"scripts": {
"build": "tree-sitter generate",
"test": "tree-sitter test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/latex-lsp/tree-sitter-bibtex.git"
},
"keywords": [
"tree-sitter",
"latex",
"parser"
],
"author": "Patrick Förster <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/latex-lsp/tree-sitter-bibtex/issues"
},
"homepage": "https://github.com/latex-lsp/tree-sitter-bibtex#readme",
"dependencies": {
"nan": "^2.14.2"
},
"devDependencies": {
"tree-sitter-cli": "0.19.4"
},
"tree-sitter": [
{
"scope": "source.bibtex",
"file-types": [
"bib"
],
"injection-regex": "bibtex"
}
]
}