]> git.r.bdr.sh - rbdr/tree-sitter-api-notation/blob - package.json
Simplify dir
[rbdr/tree-sitter-api-notation] / package.json
1 {
2 "name": "tree-sitter-api-notation",
3 "version": "1.0.0",
4 "description": "API Notation grammar for tree-sitter",
5 "main": "bindings/node",
6 "scripts": {
7 "test": "echo \"Error: no test specified\" && exit 1"
8 },
9 "keywords": ["parser", "api-notation"],
10 "author": "Ruben Beltran del Rio",
11 "license": "Apache-2.0",
12 "dependencies": {
13 "nan": "^2.18.0"
14 },
15 "devDependencies": {
16 "tree-sitter-cli": "^0.20.8"
17 },
18 "scripts": {
19 "build": "tree-sitter generate",
20 "parse": "tree-sitter parse",
21 "test": "tree-sitter test"
22 },
23 "tree-sitter": [
24 {
25 "scope": "source.api-notation",
26 "file-types": [
27 "api"
28 ],
29 "highlights": [
30 "queries/highlights.scm"
31 ],
32 "injection-regex": "api_notation"
33 }
34 ]
35 }