mirror of https://github.com/Wilfred/difftastic/
37 lines
795 B
JSON
37 lines
795 B
JSON
{
|
|
"name": "tree-sitter-rust",
|
|
"version": "0.20.1",
|
|
"description": "Rust grammar for tree-sitter",
|
|
"main": "bindings/node",
|
|
"keywords": [
|
|
"parser",
|
|
"rust"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tree-sitter/tree-sitter-rust.git"
|
|
},
|
|
"author": "Maxim Sokolov <maxim0xff@gmail.com> (https://github.com/MaximSokolov)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"nan": "^2.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"tree-sitter-cli": "^0.20.0"
|
|
},
|
|
"scripts": {
|
|
"generate": "tree-sitter generate",
|
|
"test": "tree-sitter test && script/parse-examples",
|
|
"test-windows": "tree-sitter test"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.rust",
|
|
"injection-regex": "rust",
|
|
"file-types": [
|
|
"rs"
|
|
]
|
|
}
|
|
]
|
|
}
|