-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.22 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
47
48
49
50
51
52
53
54
55
{
"name": "tree-sitter-firrtl",
"version": "0.7.0",
"description": "FIRRTL grammar for tree-sitter",
"main": "bindings/node",
"scripts": {
"gen": "tree-sitter generate",
"install": "node bin/install.js",
"prepare": "node bin/install.js",
"test": "eslint grammar.js && tree-sitter test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chipsalliance/tree-sitter-firrtl.git"
},
"author": "Aliaksei Chapyzhenka",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chipsalliance/tree-sitter-firrtl/issues"
},
"homepage": "https://github.com/chipsalliance/tree-sitter-firrtl#readme",
"files": [
"bin",
"src",
"grammar.js",
"binding.gyp",
"bindings/node"
],
"keywords": [
"parser",
"tree-sitter",
"verilog"
],
"dependencies": {
"nan": "^2.14.2"
},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"eslint": "^7.22.0",
"tree-sitter-cli": "^0.18",
"web-tree-sitter": "^0.18"
},
"tree-sitter": [
{
"scope": "source.firrtl",
"injection-regex": "firrtl",
"file-types": [
"fir"
]
}
],
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}