mirror of https://github.com/Wilfred/difftastic/
41 lines
911 B
JSON
41 lines
911 B
JSON
{
|
|
"name": "tree-sitter-php",
|
|
"version": "0.19.0",
|
|
"description": "PHP grammar for tree-sitter",
|
|
"main": "bindings/node",
|
|
"keywords": [
|
|
"parser",
|
|
"php"
|
|
],
|
|
"author": "Josh Vera",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/tree-sitter/tree-sitter-php/issues"
|
|
},
|
|
"homepage": "https://github.com/tree-sitter/tree-sitter-php#readme",
|
|
"dependencies": {
|
|
"nan": "^2.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"tree-sitter-cli": "^0.19.1",
|
|
"shelljs": "^0.8.4"
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate && node-gyp build",
|
|
"test": "tree-sitter test && node script/parse-examples.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tree-sitter/tree-sitter-php.git"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.php",
|
|
"file-types": [
|
|
"php"
|
|
],
|
|
"highlights": "queries/highlights.scm"
|
|
}
|
|
]
|
|
}
|