-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.05 KB
/
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
45
46
{
"name": "tree-sitter-systemrdl",
"version": "0.8.0",
"description": "SystemRDL grammar for tree-sitter",
"main": "bindings/node",
"scripts": {
"gen": "tree-sitter generate",
"install": "node bin/install.js",
"prepare": "node bin/install.js",
"test": "tree-sitter test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SystemRDL/tree-sitter-systemrdl.git"
},
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/SystemRDL/tree-sitter-systemrdl/issues"
},
"homepage": "https://github.com/SystemRDL/tree-sitter-systemrdl#readme",
"files": [
"bin",
"grammar.js",
"binding.gyp",
"src",
"bindings"
],
"keywords": [
"parser",
"tree-sitter",
"verilog"
],
"dependencies": {
"nan": "^2.14.2"
},
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"eslint": "^8.56.0",
"node-addon-api": "^8.0.0",
"tree-sitter-cli": "^0.22.6"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint8/node12"
}
}