-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "tree-sitter-oberon07",
"version": "0.1.0",
"description": "Tree Sitter grammar for Oberon-07",
"main": "bindings/node",
"scripts": {
"build": "tree-sitter generate && node-gyp rebuild",
"test": "tree-sitter test && tree-sitter parse examples/* --quite --time",
"test-windows": "tree-sitter test",
"build-test": "tree-sitter generate && node-gyp build && tree-sitter test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geekstakulus/tree-sitter-oberon-07.git"
},
"keywords": [
"tree-sitter",
"oberon-07",
"parser"
],
"author": "Fidel H Viegas",
"license": "MIT",
"bugs": {
"url": "https://github.com/geekstakulus/tree-sitter-oberon-07/issues"
},
"homepage": "https://github.com/geekstakulus/tree-sitter-oberon-07#readme",
"dependencies": {
"nan": "^2.17.0",
"node-gyp": "^9.3.0",
"npm": "^10.0.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.7"
},
"tree-sitter": {
"scope": "source.mod",
"file-types": [
"mod",
"Mod",
"obn",
"ob7",
"ob07",
"o7"
],
"first-line-regex": "+ob7",
"highlights": "queries/highlights.scm",
"locals": "queries/locals.scm"
}
}