-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 908 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
{
"name": "tree-sitter-hurl",
"version": "1.0.0",
"description": "Grammar for Hurl",
"main": "grammar.js",
"scripts": {
"test": "tree-sitter test",
"prepare": "husky install",
"format": "rome format --write grammar.js",
"pretest": "rome check --apply grammar.js && tree-sitter generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otherJL0/tree-sitter-hurl.git"
},
"keywords": [
"tree-sitter",
"grammar",
"hurl",
"treesitter"
],
"author": "Jonathan Lopez",
"license": "MIT",
"bugs": {
"url": "https://github.com/otherJL0/tree-sitter-hurl/issues"
},
"homepage": "https://github.com/otherJL0/tree-sitter-hurl#readme",
"volta": {
"node": "18.9.0"
},
"dependencies": {
"nan": "^2.16.0"
},
"devDependencies": {
"husky": "^8.0.1",
"rome": "^0.9.2-next",
"tree-sitter-cli": "^0.20.7"
}
}