Add package.json

Co-Authored-By: Ashi Krishan <queerviolet@github.com>
This commit is contained in:
Max Brunsfeld 2018-06-11 15:38:00 -07:00
parent e56df0fc7f
commit d9a504136e
1 changed files with 25 additions and 0 deletions

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "tree-sitter-html",
"version": "0.0.1",
"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": {
"nan": "^2.8.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.10.1"
},
"scripts": {
"build": "tree-sitter generate && node-gyp build",
"test": "tree-sitter test"
}
}