forked from Azganoth/tree-sitter-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 813 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "tree-sitter-lua",
"version": "2.1.3",
"description": "Lua grammar for tree-sitter.",
"main": "bindings/node",
"keywords": [
"tree-sitter",
"parser",
"lua"
],
"repository": "https://github.com/Azganoth/tree-sitter-lua",
"author": "Ademir José Ferreira Júnior <ademirj.ferreirajunior@gmail.com> (https://github.com/Azganoth)",
"license": "MIT",
"scripts": {
"build": "tree-sitter generate && node-gyp build --debug",
"test": "tree-sitter test",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"dependencies": {
"nan": "^2.15.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.6",
"prettier": "^2.6.2"
},
"tree-sitter": [
{
"scope": "source.lua",
"file-types": [
"lua"
]
}
]
}