-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 979 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
{
"name": "tree-sitter-cobol",
"version": "0.0.1",
"description": "COBOL grammar for tree-sitter",
"main": "bindings/node",
"scripts": {
"test": "tree-sitter test",
"build": "tree-sitter generate && node-gyp build",
"sample": "tree-sitter parse test/cobol85/src/SG204A.CBL | tee out.txt",
"t": "tree-sitter parse a.cbl",
"c": "cobc -fsyntax-only a.cbl",
"nist": "sh run_nist_cobol85.sh | tee nist.txt",
"ct": "cd test && bash check_tests.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yutaro-sakamoto/tree-sitter-cobol.git"
},
"keywords": [
"tree-sitter",
"COBOL"
],
"author": "Yutaro Sakamoto",
"license": "MIT",
"bugs": {
"url": "https://github.com/yutaro-sakamoto/tree-sitter-cobol/issues"
},
"homepage": "https://github.com/yutaro-sakamoto/tree-sitter-cobol#readme",
"devDependencies": {
"tree-sitter-cli": "^0.20.7"
},
"dependencies": {
"nan": "^2.17.0"
}
}