-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (36 loc) · 735 Bytes
/
package.json
File metadata and controls
37 lines (36 loc) · 735 Bytes
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
{
"name": "tree-sitter-bl",
"version": "1.0.0",
"description": "'",
"main": "bindings/node",
"scripts": {
"build": "tree-sitter generate && node-gyp build",
"test": "tree-sitter test && tree-sitter parse tests/* --quiet --time",
"test-windows": "tree-sitter test"
},
"author": "Gmos",
"license": "MIT",
"dependencies": {
"nan": "^2.18.0",
"tree-sitter": "^0.20.6"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.8"
},
"gypfile": true,
"directories": {
"test": "tests"
},
"tree-sitter": [
{
"scope": "source.bl",
"injection-regex": "bl",
"file-types": [
"bl"
],
"highlights": [
"queries/highlights.scm"
]
}
]
}