-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1015 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
40
41
42
43
{
"name": "tree-sitter-javap",
"version": "0.1.0",
"description": "",
"main": "bindings/node",
"scripts": {
"build": "tree-sitter generate && node-gyp rebuild",
"test": "tree-sitter test",
"build-test": "tree-sitter generate && node-gyp build && tree-sitter test"
},
"author": "ghostbuster91",
"keywords": [
"parser",
"javap"
],
"license": {
"type": "Apache-2.0",
"url": "https://opensource.org/licenses/apache2.0.php"
},
"dependencies": {
"nan": "^2.14.2"
},
"devDependencies": {
"tree-sitter-cli": "^0.19.5"
},
"homepage": "https://github.com/ghostuster91/tree-sitter-javap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ghostbuster91/tree-sitter-javap.git"
},
"bugs": {
"url": "https://github.com/ghostbuster91/tree-sitter-javap/issues"
},
"tree-sitter": [
{
"scope": "source.javap",
"highlights": "queries/highlights.scm",
"file-types": [
"javap"
]
}
]
}