-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tree-sitter-imba",
"version": "0.0.2",
"description": "",
"main": "bindings/node",
"type": "commonjs",
"scripts": {
"build": "wireit",
"wasm": "wireit",
"pg": "wireit",
"test": "wireit",
"only": "npm run test --watch -- -f only -d"
},
"wireit": {
"wasm": {
"command": "tree-sitter build-wasm",
"dependencies": [
"build"
]
},
"pg": {
"command": "tree-sitter playground",
"dependencies": [
"wasm"
],
"service": true
},
"build": {
"command": "node-gyp build",
"dependencies": [
"generate-grammar"
]
},
"compile-grammar": {
"command": "imbac grammar.imba --cjs",
"output": [
"grammar.js"
],
"files": [
"grammar.imba",
"src/scanner.cc"
]
},
"generate-grammar": {
"command": "tree-sitter generate ",
"dependencies": [
"compile-grammar"
]
},
"test": {
"command": "tree-sitter test",
"dependencies": [
"generate-grammar"
],
"files": [
"test/**/*"
]
}
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"nan": "^2.17.0",
"wireit": "^0.9.5"
},
"devDependencies": {
"imba": "^2.0.0-alpha.226",
"nodemon": "^2.0.20",
"tree-sitter-cli": "^0.19.3"
},
"tree-sitter": [
{
"scope": "source.imba",
"file-types": [
"imba",
"imba1"
],
"theme": {
"keyword": "#e88376",
"comment": {
"color": "#718096",
"italic": true
}
}
}
]
}