initial commit

This commit is contained in:
mhoffm
2021-06-07 20:50:00 +02:00
parent 89c1b30cde
commit ba9acb912f
15 changed files with 2732 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "tree-sitter-hcl",
"version": "1.0.0",
"description": "",
"main": "bindings/node",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"nan": "^2.14.2",
"tree-sitter-cli": "^0.19.5"
},
"tree-sitter": [
{
"scope": "source.hcl",
"file-types": [
"hcl",
"tf",
"tfvars"
]
}
]
}