2017-07-14 19:28:54 +00:00
|
|
|
{
|
|
|
|
"name": "tree-sitter-bash",
|
2021-03-04 22:15:26 +00:00
|
|
|
"version": "0.19.0",
|
2017-07-14 19:28:54 +00:00
|
|
|
"description": "Bash grammar for tree-sitter",
|
2021-03-04 22:15:19 +00:00
|
|
|
"main": "bindings/node",
|
2017-07-14 19:28:54 +00:00
|
|
|
"keywords": [
|
|
|
|
"parser",
|
|
|
|
"lexer"
|
|
|
|
],
|
|
|
|
"author": "Max Brunsfeld",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2019-12-10 20:39:14 +00:00
|
|
|
"nan": "^2.14.0",
|
2020-03-02 13:55:26 +00:00
|
|
|
"prebuild-install": "^5.3.3"
|
2017-07-14 19:28:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-02 13:55:26 +00:00
|
|
|
"prebuild": "^10.0.0",
|
2021-03-04 22:15:19 +00:00
|
|
|
"tree-sitter-cli": "^0.19.1"
|
2017-07-14 19:28:54 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-07-22 18:13:32 +00:00
|
|
|
"install": "prebuild-install || node-gyp rebuild",
|
2018-08-06 17:03:34 +00:00
|
|
|
"pre-build": "prebuild --all --strip --verbose",
|
|
|
|
"pre-build:upload": "prebuild --upload-all",
|
2018-05-24 17:08:20 +00:00
|
|
|
"test": "tree-sitter test && script/parse-examples.sh",
|
|
|
|
"test-windows": "tree-sitter test"
|
2018-07-22 18:13:32 +00:00
|
|
|
},
|
2021-03-04 23:46:26 +00:00
|
|
|
"repository": "https://github.com/tree-sitter/tree-sitter-bash",
|
|
|
|
"tree-sitter": [
|
|
|
|
{
|
|
|
|
"scope": "source.bash",
|
|
|
|
"file-types": [
|
|
|
|
"sh",
|
|
|
|
"bash"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2017-07-14 19:28:54 +00:00
|
|
|
}
|