]>
Commit | Line | Data |
---|---|---|
dc87cd89 RBR |
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", | |
0931d6ef | 11 | "license": "Apache-2.0", |
dc87cd89 RBR |
12 | "dependencies": { |
13 | "nan": "^2.18.0" | |
14 | }, | |
15 | "devDependencies": { | |
16 | "tree-sitter-cli": "^0.20.8" | |
17 | }, | |
18 | "scripts": { | |
20fe4b1e | 19 | "build": "tree-sitter generate", |
dc87cd89 RBR |
20 | "parse": "tree-sitter parse", |
21 | "test": "tree-sitter test" | |
22 | }, | |
23 | "tree-sitter": [ | |
24 | { | |
25 | "scope": "source.api-notation", | |
26 | "file-types": [ | |
dc87cd89 RBR |
27 | "api" |
28 | ], | |
29 | "highlights": [ | |
30 | "queries/highlights.scm" | |
31 | ], | |
5d5dd65c | 32 | "injection-regex": "api_notation" |
dc87cd89 RBR |
33 | } |
34 | ] | |
35 | } |