-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
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
{
"name": "tree-sitter-robot",
"version": "1.3.0",
"description": "Tree-sitter parser for Robot Framework files",
"main": "bindings/node",
"types": "bindings/node",
"scripts": {
"install": "node-gyp-build",
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test": "node --test bindings/node/*_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hubro/tree-sitter-robot.git"
},
"keywords": [
"incremental",
"parsing",
"tree-sitter",
"robot"
],
"author": "Tomas Sandven",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hubro/tree-sitter-robot/issues"
},
"homepage": "https://github.com/Hubro/tree-sitter-robot#readme",
"files": [
"grammar.js",
"tree-sitter.json",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**",
"*.wasm"
],
"dependencies": {
"node-addon-api": "^8.2.2",
"node-gyp-build": "^4.8.4",
"tree-sitter": "^0.25.0",
"tree-sitter-cli": "^0.26.6",
"prebuildify": "^6.0.1"
}
}