-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
47 lines (47 loc) · 1.15 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-hacklang",
"version": "0.0.4",
"description": "Hack grammar for tree-sitter",
"main": "bindings/node",
"keywords": [
"parser",
"lexer",
"hacklang",
"hhvm"
],
"author": "Antonio de Jesus Ochoa Solano",
"license": "MIT",
"homepage": "https://github.com/slackhq/tree-sitter-hack#readme",
"bugs": {
"url": "https://github.com/slackhq/tree-sitter-hack/issues"
},
"engines": {
"node": ">=14.7.0"
},
"dependencies": {
"nan": "^2.14.1"
},
"devDependencies": {
"tree-sitter-cli": "~0.20.6"
},
"scripts": {
"build": "bin/generate-parser --force && node-gyp build",
"test": "bin/generate-corpus && tree-sitter test",
"test-corpus": "bin/test-corpus",
"test-examples": "bin/test-examples",
"reset": "rm -rf build node_modules package-lock.json tmp/grammar.js.sha && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackhq/tree-sitter-hack.git"
},
"tree-sitter": [
{
"scope": "source.hack",
"file-types": [
"hack"
],
"first-line-regex": "^((<\\?hh.*)|(#!.+ hhvm))"
}
]
}