-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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": "@elm-tooling/tree-sitter-elm",
"version": "5.7.0",
"description": "Tree sitter definitions for elm",
"main": "bindings/node",
"publishConfig": {
"access": "public"
},
"keywords": [
"elm",
"elm-lang",
"tree-sitter",
"parser",
"lexer"
],
"author": "Razze",
"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.elm",
"parse-test": "tree-sitter parse --debug ./examples/test.elm",
"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.elm",
"test-tags": "tree-sitter tags test/highlight/basic.elm",
"generate-wasm": "tree-sitter build-wasm && mv ./tree-sitter-elm.wasm ./docs/js/tree-sitter-elm.wasm"
},
"repository": "https://github.com/elm-tooling/tree-sitter-elm",
"tree-sitter": [
{
"scope": "source.elm",
"file-types": [
"elm"
]
}
]
}