mirror of https://github.com/Wilfred/difftastic/
44 lines
968 B
JSON
44 lines
968 B
JSON
{
|
|
"name": "tree-sitter-python",
|
|
"version": "0.20.4",
|
|
"description": "Python grammar for tree-sitter",
|
|
"main": "bindings/node",
|
|
"keywords": [
|
|
"parser",
|
|
"lexer"
|
|
],
|
|
"author": "Max Brunsfeld",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"nan": "^2.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.47.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",
|
|
"parse": "tree-sitter parse",
|
|
"test": "tree-sitter test && script/parse-examples",
|
|
"test-windows": "tree-sitter test"
|
|
},
|
|
"repository": "https://github.com/tree-sitter/tree-sitter-python",
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.python",
|
|
"file-types": [
|
|
"py"
|
|
],
|
|
"injection-regex": "py",
|
|
"highlights": [
|
|
"queries/highlights.scm"
|
|
],
|
|
"tags": [
|
|
"queries/tags.scm"
|
|
]
|
|
}
|
|
]
|
|
}
|