-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "tree-sitter-blade",
"version": "0.11.0",
"description": "tree-sitter-blade grammar for Laravel Blade files",
"main": "bindings/node",
"keywords": [
"tree-sitter-blade",
"blade",
"tree-sitter",
"laravel"
],
"homepage": "https://github.com/EmranMR/tree-sitter-blade",
"repository": {
"type": "git",
"url": "https://github.com/EmranMR/tree-sitter-blade"
},
"bugs": "https://github.com/EmranMR/tree-sitter-blade/issues",
"funding": "https://github.com/sponsors/EmranMR",
"scripts": {
"build": "tree-sitter generate",
"lint": "eslint grammar.js",
"test": "tree-sitter test",
"test-examples": "script/parse-examples"
},
"author": "Emran Mashhadi Ramezan",
"license": "MIT",
"dependencies": {
"nan": "^2.17.0"
},
"devDependencies": {
"eslint": "^9.10.0",
"eslint-config-google": "^0.14.0",
"globals": "^15.9.0",
"tree-sitter-cli": "^0.20.8"
},
"tree-sitter": [
{
"scope": "source.blade.php",
"file-types": [
"blade",
"php"
],
"injection-regex": "blade",
"highlights": "queries/highlights.scm",
"injections": "queries/injections-text.scm",
"folds": "queries/folds.scm"
}
]
}