-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 980 Bytes
/
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
{
"name": "tree-sitter-rst",
"version": "0.1.0",
"description": "reStructuredText grammar for tree-sitter",
"main": "bindings/node",
"scripts": {
"test": "tree-sitter test",
"build": "tree-sitter generate",
"wasm": "tree-sitter build-wasm --docker",
"web": "tree-sitter web-ui",
"parse": "tree-sitter parse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stsewd/tree-sitter-rst.git"
},
"keywords": [
"tree-sitter",
"reStructuredText",
"rst",
"grammar"
],
"author": "Santos Gallegos",
"license": "MIT",
"bugs": {
"url": "https://github.com/stsewd/tree-sitter-rst/issues"
},
"homepage": "https://github.com/stsewd/tree-sitter-rst#readme",
"dependencies": {
"nan": "^2.14.2"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.8"
},
"tree-sitter": [
{
"scope": "text.rst",
"file-types": [
"rst"
],
"injection-regex": "rst"
}
]
}