2017-07-14 19:28:54 +00:00
|
|
|
{
|
|
|
|
"name": "tree-sitter-bash",
|
2018-07-23 18:01:35 +00:00
|
|
|
"version": "0.13.1",
|
2017-07-14 19:28:54 +00:00
|
|
|
"description": "Bash grammar for tree-sitter",
|
|
|
|
"main": "index.js",
|
|
|
|
"keywords": [
|
|
|
|
"parser",
|
|
|
|
"lexer"
|
|
|
|
],
|
|
|
|
"author": "Max Brunsfeld",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2018-07-22 18:13:32 +00:00
|
|
|
"nan": "^2.10.0",
|
|
|
|
"prebuild-install": "^5.0.0"
|
2017-07-14 19:28:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-08-06 17:03:34 +00:00
|
|
|
"nodemon": "^1.18.3",
|
2018-07-22 18:13:32 +00:00
|
|
|
"prebuild": "^7.6.1",
|
2018-07-18 20:19:42 +00:00
|
|
|
"tree-sitter-cli": "^0.13.1"
|
2017-07-14 19:28:54 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "tree-sitter generate && node-gyp build",
|
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",
|
2018-08-06 17:03:34 +00:00
|
|
|
"test:watch": "nodemon --exec 'npm run build && npm run test' --ext js,txt,sh",
|
2018-05-24 17:08:20 +00:00
|
|
|
"test-windows": "tree-sitter test"
|
2018-07-22 18:13:32 +00:00
|
|
|
},
|
2018-08-06 17:03:34 +00:00
|
|
|
"nodemonConfig": {
|
|
|
|
"ignore": [
|
|
|
|
"build/",
|
|
|
|
"src/"
|
|
|
|
]
|
|
|
|
},
|
2018-07-22 18:13:32 +00:00
|
|
|
"repository": "https://github.com/tree-sitter/tree-sitter-bash"
|
2017-07-14 19:28:54 +00:00
|
|
|
}
|