2018-06-11 22:38:00 +00:00
|
|
|
{
|
|
|
|
"name": "tree-sitter-html",
|
2019-06-07 21:48:53 +00:00
|
|
|
"version": "0.15.0",
|
2018-06-11 22:38:00 +00:00
|
|
|
"description": "HTML grammar for tree-sitter",
|
|
|
|
"main": "index.js",
|
|
|
|
"keywords": [
|
|
|
|
"parser",
|
|
|
|
"lexer"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
"Max Brunsfeld <maxbrunsfeld@gmail.com>",
|
|
|
|
"Ashi Krishnan <queerviolet@github.com>"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2018-08-30 18:28:22 +00:00
|
|
|
"nan": "^2.10.0"
|
2018-06-11 22:38:00 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-07-17 22:57:54 +00:00
|
|
|
"tree-sitter-cli": "^0.15.6"
|
2018-06-11 22:38:00 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "tree-sitter generate && node-gyp build",
|
2019-02-19 19:24:50 +00:00
|
|
|
"test": "tree-sitter test && tree-sitter parse examples/*.html --quiet --time",
|
|
|
|
"test-windows": "tree-sitter test"
|
2018-12-14 01:23:56 +00:00
|
|
|
},
|
|
|
|
"tree-sitter": [
|
|
|
|
{
|
2019-03-04 02:20:47 +00:00
|
|
|
"scope": "text.html.basic",
|
2019-06-07 21:48:48 +00:00
|
|
|
"file-types": [
|
|
|
|
"html"
|
|
|
|
],
|
2018-12-14 01:23:56 +00:00
|
|
|
"injection-regex": "html"
|
|
|
|
}
|
|
|
|
]
|
2018-06-11 22:38:00 +00:00
|
|
|
}
|