mirror of https://github.com/Wilfred/difftastic/
38 lines
726 B
JSON
38 lines
726 B
JSON
{
|
|
"name": "tree-sitter-json",
|
|
"version": "0.20.1",
|
|
"description": "JSON grammar for tree-sitter",
|
|
"main": "bindings/node",
|
|
"keywords": [
|
|
"parser",
|
|
"lexer",
|
|
"json"
|
|
],
|
|
"author": "Max Brunsfeld",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"nan": "^2.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": ">=8.50.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"tree-sitter-cli": "^0.20.8"
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate && node-gyp build",
|
|
"lint": "eslint grammar.js",
|
|
"test": "tree-sitter test"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.json",
|
|
"file-types": [
|
|
"json"
|
|
],
|
|
"highlights": [
|
|
"queries/highlights.scm"
|
|
]
|
|
}
|
|
]
|
|
}
|