Initial commit: Add README and LICENSE
This commit is contained in:
40
package.json
Normal file
40
package.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"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$"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user