40 lines
908 B
JSON
40 lines
908 B
JSON
{
|
|
"name": "tree-sitter-stonescript",
|
|
"version": "0.0.1",
|
|
"description": "StoneScript grammar for tree-sitter",
|
|
"main": "bindings/node",
|
|
"types": "bindings/node",
|
|
"keywords": [
|
|
"parsing",
|
|
"incremental"
|
|
],
|
|
"files": [
|
|
"grammar.js",
|
|
"binding.gyp",
|
|
"prebuilds/**",
|
|
"bindings/node/*",
|
|
"queries/*",
|
|
"src/**"
|
|
],
|
|
"dependencies": {
|
|
"nan": "^2.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"tree-sitter-cli": "^0.20.8",
|
|
"prebuild-install": "^7.1.1"
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate && node-gyp build",
|
|
"test": "tree-sitter test"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.stonescript",
|
|
"file-types": [
|
|
"ss",
|
|
"txt"
|
|
],
|
|
"injection-regex": "^stonescript$"
|
|
}
|
|
]
|
|
} |