-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
40 lines (40 loc) · 938 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
36
37
38
39
40
{
"name": "tree-sitter-nix",
"version": "0.0.2",
"description": "Tree Sitter grammar for Nix",
"main": "bindings/node",
"scripts": {
"build": "npm run generate && node-gyp build",
"generate": "tree-sitter generate --abi 13",
"test": "tree-sitter test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nix-community/tree-sitter-nix.git"
},
"author": "Charles Strahan",
"license": "MIT",
"bugs": {
"url": "https://github.com/nix-community/tree-sitter-nix/issues"
},
"homepage": "https://github.com/nix-community/tree-sitter-nix#readme",
"dependencies": {
"nan": "^2.17.0"
},
"devDependencies": {},
"tree-sitter": [
{
"file-types": [
"nix"
],
"highlights": [
"queries/highlights.scm"
],
"injection-regex": "^(nix)$",
"locals": [
"queries/locals.scm"
],
"scope": "source.nix"
}
]
}