-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
46
47
{
"name": "tree-sitter-faust",
"version": "1.1.5",
"description": "Tree-sitter grammar for the Faust audio programming language",
"main": "grammar.js",
"scripts": {
"build": "tree-sitter generate && node-gyp build",
"generate": "tree-sitter generate",
"test": "tree-sitter test",
"parse": "tree-sitter parse"
},
"tree-sitter": [
{
"scope": "source.faust",
"file-types": [
"dsp"
],
"highlights": [
"queries/highlights.scm"
]
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/khiner/tree-sitter-faust.git"
},
"keywords": [
"faust",
"tree-sitter",
"grammar",
"parser",
"lexer"
],
"author": "Karl Hiner",
"license": "MIT",
"bugs": {
"url": "https://github.com/khiner/tree-sitter-faust/issues"
},
"homepage": "https://github.com/khiner/tree-sitter-faust#readme",
"dependencies": {
"nan": "^2.18.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.8",
"node-gyp": "^10.0.1"
}
}