-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 818 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
{
"name": "tree-sitter-monkey",
"version": "1.0.0",
"description": "",
"main": "bindings/node",
"scripts": {
"test": "tree-sitter generate && tree-sitter test",
"watching": "onchange './grammar.js' 'queries/highlights.scm' 'test/**/*' -- npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamestrew/tree-sitter-monkey.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamestrew/tree-sitter-monkey/issues"
},
"homepage": "https://github.com/jamestrew/tree-sitter-monkey#readme",
"dependencies": {
"nan": "^2.17.0"
},
"devDependencies": {
"onchange": "^7.1.0",
"tree-sitter-cli": "^0.20.7"
},
"tree-sitter": [
{
"scope": "source.mon",
"file-types": [
"mon"
]
}
]
}