forked from tree-sitter/tree-sitter-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 883 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
{
"name": "tree-sitter-cpp",
"version": "0.20.0",
"description": "C++ grammar for tree-sitter",
"main": "bindings/node",
"keywords": [
"parser",
"c++"
],
"repository": {
"type": "git",
"url": "https://github.com/tree-sitter/tree-sitter-cpp.git"
},
"author": "Max Brunsfeld",
"license": "MIT",
"dependencies": {
"nan": "^2.14.0"
},
"devDependencies": {
"tree-sitter-c": "^0.20.1",
"tree-sitter-cli": "^0.20.0"
},
"scripts": {
"test": "tree-sitter test && tree-sitter parse examples/* --quiet --time",
"test-windows": "tree-sitter test"
},
"tree-sitter": [
{
"scope": "source.cpp",
"file-types": [
"cc",
"cpp",
"hpp",
"h"
],
"highlights": [
"queries/highlights.scm",
"node_modules/tree-sitter-c/queries/highlights.scm"
]
}
]
}