forked from tree-sitter/tree-sitter-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 822 Bytes
/
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
{
"name": "tree-sitter-haskell",
"version": "0.14.0",
"description": "Haskell grammar for tree-sitter",
"repository": "github:tree-sitter/tree-sitter-haskell",
"main": "bindings/node",
"keywords": [
"parser",
"haskell"
],
"author": "Rick Winfrey",
"license": "MIT",
"dependencies": {
"nan": "^2.12.1",
"node-gyp": "^7.1.2"
},
"devDependencies": {
"tree-sitter-cli": "^0.19.4",
"web-tree-sitter": "^0.19.4"
},
"scripts": {
"test": "tree-sitter test",
"examples": "script/parse-examples",
"examples-wasm": "script/parse-examples wasm"
},
"tree-sitter": [
{
"scope": "source.haskell",
"file-types": [
"hs"
],
"highlights": [
"queries/highlights.scm"
],
"injection-regex": "^(hs|haskell)$"
}
]
}