-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1 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
{
"name": "tree-sitter-gitcommit",
"version": "0.0.1",
"description": "A tree-sitter grammar for git commit messages",
"main": "bindings/node",
"scripts": {
"test": "tree-sitter test",
"format": "prettier --write grammar.js package.json",
"format-check": "prettier --check grammar.js package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-mikedavis/tree-sitter-gitcommit.git"
},
"keywords": [
"tree-sitter",
"parser",
"lexer",
"git",
"commit"
],
"author": "the-mikedavis",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-mikedavis/tree-sitter-gitcommit/issues"
},
"homepage": "https://github.com/the-mikedavis/tree-sitter-gitcommit#readme",
"dependencies": {
"nan": "^2.15.0"
},
"devDependencies": {
"prettier": "^2.5.1",
"tree-sitter-cli": "^0.20.7"
},
"tree-sitter": [
{
"file-types": [
"COMMIT_EDITMSG"
]
}
],
"prettier": {
"trailingComma": "es5"
}
}