mirror of https://github.com/Wilfred/difftastic/
39 lines
822 B
JSON
39 lines
822 B
JSON
{
|
|
"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)$"
|
|
}
|
|
]
|
|
}
|