forked from tree-sitter/tree-sitter-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 892 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 892 Bytes
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
{
"name": "tree-sitter-javascript",
"version": "0.15.1",
"description": "Javascript grammar for node-tree-sitter",
"main": "index.js",
"keywords": [
"parser",
"lexer"
],
"author": "Max Brunsfeld",
"license": "MIT",
"dependencies": {
"nan": "^2.12.1"
},
"devDependencies": {
"acorn": "^2.6.4",
"babylon": "^6.3.26",
"esprima": "^2.7.1",
"tree-sitter-cli": "^0.15.7",
"tree-sitter-highlight-schema": "0.1.1"
},
"scripts": {
"build": "tree-sitter generate && node-gyp build",
"test": "tree-sitter test && script/parse-examples",
"test-windows": "tree-sitter test"
},
"tree-sitter": [
{
"scope": "source.js",
"file-types": [
"js"
],
"highlights": [
"queries/highlights-jsx.scm",
"queries/highlights.scm"
],
"injection-regex": "^(js|javascript)$"
}
]
}