forked from sogaiu/tree-sitter-clojure
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 736 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 736 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
38
39
{
"name": "tree-sitter-clojure",
"version": "0.0.14",
"description": "Clojure grammar for tree-sitter",
"repository": "https://github.com/anomalyco/tree-sitter-clojure",
"license": "CC0-1.0",
"author": "sogaiu",
"keywords": [
"incremental",
"parsing",
"tree-sitter",
"clojure",
"edn"
],
"files": [
"grammar.js",
"tree-sitter.json",
"queries/*",
"src/**",
"*.wasm"
],
"scripts": {
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test": "tree-sitter test"
},
"tree-sitter": [
{
"scope": "source.clojure",
"file-types": [
"bb",
"clj",
"cljc",
"cljs",
"edn"
]
}
]
}