-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "tree-sitter-elsa",
"version": "1.1.0",
"description": "Elsa grammar for tree-sitter",
"main": "bindings/node",
"keywords": [
"parser",
"lexer",
"elsa"
],
"author": "Miles Glapa-Grossklag <[email protected]>",
"contributors": [
"amaanq (Amaan Qureshi) <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/glapa-grossklag/tree-sitter-elsa/issues"
},
"homepage": "https://github.com/glapa-grossklag/tree-sitter-elsa#readme",
"dependencies": {
"nan": "^2.15.0"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-google": "^0.14.0",
"tree-sitter-cli": "^0.20.6"
},
"repository": "https://github.com/glapa-grossklag/tree-sitter-elsa",
"scripts": {
"build": "tree-sitter generate && node-gyp build",
"test": "tree-sitter test && script/parse-examples",
"parse": "tree-sitter parse",
"test-windows": "tree-sitter test"
},
"tree-sitter": [
{
"scope": "source.lc",
"file-types": [
"lc"
],
"highlights": [
"queries/highlights.scm"
]
}
]
}