-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "tree-sitter-bash",
"version": "0.19.0",
"description": "Bash grammar for tree-sitter",
"main": "bindings/node",
"keywords": [
"parser",
"lexer"
],
"author": "Max Brunsfeld",
"license": "MIT",
"dependencies": {
"nan": "^2.14.0",
"prebuild-install": "^5.3.3"
},
"devDependencies": {
"prebuild": "^10.0.0",
"tree-sitter-cli": "^0.19.1"
},
"scripts": {
"build": "tree-sitter generate",
"install": "prebuild-install || node-gyp rebuild",
"pre-build": "prebuild --all --strip --verbose",
"pre-build:upload": "prebuild --upload-all",
"test": "tree-sitter test && script/parse-examples.sh",
"test-windows": "tree-sitter test"
},
"repository": "https://github.com/tree-sitter/tree-sitter-bash",
"tree-sitter": [
{
"scope": "source.bash",
"file-types": [
"sh",
"bash"
]
}
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"arrowParens": "avoid",
"singleQuote": true
}
}