forked from tree-sitter/tree-sitter-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 969 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
{
"name": "tree-sitter-ruby",
"version": "0.19.0",
"description": "Ruby grammar for tree-sitter",
"main": "bindings/node",
"keywords": [
"parser",
"lexer"
],
"author": "Rob Rix",
"license": "MIT",
"dependencies": {
"nan": "^2.14.1",
"node-gyp": "^9.0.0",
"prebuild-install": "^5.0.0"
},
"devDependencies": {
"prebuild": "^10.0.1",
"tree-sitter-cli": "^0.20.6"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"prebuild": "prebuild -r electron -t 3.0.0 -t 4.0.0 -t 4.0.4 -t 5.0.0 --strip && prebuild -t 8.16.0 -t 10.12.0 --strip",
"prebuild:upload": "prebuild --upload-all",
"test": "tree-sitter test && script/parse-examples",
"test-windows": "tree-sitter test"
},
"repository": "https://github.com/tree-sitter/tree-sitter-ruby",
"tree-sitter": [
{
"scope": "source.ruby",
"file-types": [
"rb"
],
"injection-regex": "ruby"
}
]
}