forked from gren-lang/tree-sitter-gren
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.39 KB
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
{
"name": "MaeBrooks/tree-sitter-gren",
"version": "0.1.0",
"description": "Tree sitter definitions for gren",
"main": "bindings/node",
"publishConfig": {
"access": "public"
},
"keywords": [
"gren",
"gren-lang",
"tree-sitter",
"parser",
"lexer"
],
"author": "Mae Brooks",
"license": "MIT",
"dependencies": {
"nan": "^2.18.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.8"
},
"scripts": {
"build": "tree-sitter generate",
"parse-basic": "tree-sitter parse ./examples/basic.gren",
"parse-test": "tree-sitter parse --debug ./examples/test.gren",
"test:dev": "npm run build && npm run test-only",
"test": "tree-sitter test && script/parse-examples",
"test-skip-download": "tree-sitter test && script/parse-examples -s",
"test-full": "tree-sitter test && script/parse-examples-full",
"test-full-skip-download": "tree-sitter test && script/parse-examples-full -s",
"test-only": "tree-sitter test",
"test-highlighting": "tree-sitter highlight test/highlight/basic.gren",
"test-tags": "tree-sitter tags test/highlight/basic.gren",
"generate-wasm": "tree-sitter build-wasm && mv ./tree-sitter-gren.wasm ./docs/js/tree-sitter-gren.wasm"
},
"repository": "https://github.com/MaeBrooks/tree-sitter-gren",
"tree-sitter": [
{
"scope": "source.gren",
"file-types": [
"gren"
]
}
]
}