mirror of https://github.com/Wilfred/difftastic/
32 lines
618 B
JSON
32 lines
618 B
JSON
{
|
|
"name": "tree-sitter-julia",
|
|
"version": "0.19.0",
|
|
"description": "Julia grammar for tree-sitter",
|
|
"main": "bindings/node",
|
|
"keywords": [
|
|
"parser",
|
|
"julia"
|
|
],
|
|
"author": "Max Brunsfeld",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"nan": "^2.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"tree-sitter-cli": "^0.19.1"
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate && node-gyp build",
|
|
"test": "tree-sitter test && script/parse-examples",
|
|
"test-windows": "tree-sitter test"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"file-types": [
|
|
"jl"
|
|
],
|
|
"scope": "source.julia"
|
|
}
|
|
]
|
|
}
|