-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "tree-sitter-multilingual",
"version": "0.1.0",
"description": "Tree-sitter grammar for the Multilingual programming language",
"main": "bindings/node",
"keywords": [
"tree-sitter",
"grammar",
"multilingual",
"language",
"syntax",
"parser"
],
"author": "John Samuel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/multilingualprogramming/tree-sitter-multilingual.git"
},
"bugs": {
"url": "https://github.com/multilingualprogramming/tree-sitter-multilingual/issues"
},
"homepage": "https://github.com/multilingualprogramming/tree-sitter-multilingual",
"engines": {
"node": ">=14.0.0"
},
"tree-sitter": [
{
"scope": "source.multi",
"file-types": [
"multi"
],
"highlights": [
"queries/highlights.scm"
],
"indents": [
"queries/indents.scm"
],
"folds": [
"queries/folds.scm"
]
}
],
"devDependencies": {
"node-gyp": "^12.3.0",
"tree-sitter-cli": "^0.20.0"
},
"scripts": {
"install": "node -e \"console.log('Skipping native rebuild during npm install; run npm run build or make build after generating the parser.')\"",
"generate": "tree-sitter generate",
"build": "npm run generate && node-gyp rebuild",
"test": "tree-sitter test",
"inject": "python -X utf8 scripts/inject_aliases.py",
"tmgrammar": "python -X utf8 scripts/build_tmgrammar.py",
"monarch": "python -X utf8 scripts/build_monarch.py",
"validate": "python -X utf8 scripts/validate_coverage.py",
"all": "npm run inject && npm run generate && npm run build && npm run tmgrammar && npm run monarch && npm run validate"
},
"files": [
"src",
"grammar.js",
"queries",
"data",
"binding.gyp",
"generated"
]
}