mirror of https://github.com/Wilfred/difftastic/
41 lines
997 B
JSON
41 lines
997 B
JSON
{
|
|
"name": "tree-sitter-elixir",
|
|
"version": "0.1.0",
|
|
"description": "Elixir grammar for the tree-sitter parsing library",
|
|
"main": "bindings/node",
|
|
"keywords": [
|
|
"parser",
|
|
"lexer",
|
|
"elixir",
|
|
"tree-sitter"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/elixir-lang/tree-sitter-elixir.git"
|
|
},
|
|
"scripts": {
|
|
"test": "tree-sitter test",
|
|
"format": "prettier --trailing-comma es5 --write grammar.js && clang-format -i src/scanner.c",
|
|
"format-check": "prettier --trailing-comma es5 --check grammar.js && cat src/scanner.c | clang-format src/scanner.c | diff src/scanner.c -"
|
|
},
|
|
"dependencies": {
|
|
"nan": "^2.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"clang-format": "^1.8.0",
|
|
"prettier": "^2.3.2",
|
|
"tree-sitter-cli": "^0.20.7"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.elixir",
|
|
"file-types": [
|
|
"ex",
|
|
"exs"
|
|
],
|
|
"injection-regex": "^(ex|elixir)$"
|
|
}
|
|
]
|
|
}
|