mirror of https://github.com/Wilfred/difftastic/
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "tree-sitter-qmljs",
|
|
"version": "0.1.2",
|
|
"description": "QML grammar for the tree-sitter parsing library",
|
|
"main": "bindings/node",
|
|
"scripts": {
|
|
"test": "tree-sitter test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/yuja/tree-sitter-qmljs.git"
|
|
},
|
|
"keywords": [
|
|
"parser",
|
|
"tree-sitter",
|
|
"qml"
|
|
],
|
|
"author": "Yuya Nishihara",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/yuja/tree-sitter-qmljs/issues"
|
|
},
|
|
"homepage": "https://github.com/yuja/tree-sitter-qmljs#readme",
|
|
"dependencies": {
|
|
"nan": "^2.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"tree-sitter-cli": "^0.20.1",
|
|
"tree-sitter-javascript": "0.20.3",
|
|
"tree-sitter-typescript": "0.20.5"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.qml",
|
|
"file-types": [
|
|
"qml"
|
|
],
|
|
"highlights": [
|
|
"queries/highlights.scm",
|
|
"node_modules/tree-sitter-typescript/queries/highlights.scm",
|
|
"node_modules/tree-sitter-javascript/queries/highlights.scm"
|
|
],
|
|
"locals": [
|
|
"queries/locals.scm",
|
|
"node_modules/tree-sitter-typescript/queries/locals.scm",
|
|
"node_modules/tree-sitter-javascript/queries/locals.scm"
|
|
],
|
|
"tags": [
|
|
"node_modules/tree-sitter-typescript/queries/tags.scm",
|
|
"node_modules/tree-sitter-javascript/queries/tags.scm"
|
|
]
|
|
}
|
|
]
|
|
}
|