mirror of https://github.com/Wilfred/difftastic/
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "@elm-tooling/tree-sitter-elm",
|
|
"version": "5.7.0",
|
|
"description": "Tree sitter definitions for elm",
|
|
"main": "bindings/node",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"elm",
|
|
"elm-lang",
|
|
"tree-sitter",
|
|
"parser",
|
|
"lexer"
|
|
],
|
|
"author": "Razze",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"nan": "^2.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"tree-sitter-cli": "^0.20.8"
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate",
|
|
"parse-basic": "tree-sitter parse ./examples/basic.elm",
|
|
"parse-test": "tree-sitter parse --debug ./examples/test.elm",
|
|
"test": "tree-sitter test && script/parse-examples",
|
|
"test-skip-download": "tree-sitter test && script/parse-examples -s",
|
|
"test-full": "tree-sitter test && script/parse-examples-full",
|
|
"test-full-skip-download": "tree-sitter test && script/parse-examples-full -s",
|
|
"test-only": "tree-sitter test",
|
|
"test-highlighting": "tree-sitter highlight test/highlight/basic.elm",
|
|
"test-tags": "tree-sitter tags test/highlight/basic.elm",
|
|
"generate-wasm": "tree-sitter build-wasm && mv ./tree-sitter-elm.wasm ./docs/js/tree-sitter-elm.wasm"
|
|
},
|
|
"repository": "https://github.com/elm-tooling/tree-sitter-elm",
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.elm",
|
|
"file-types": [
|
|
"elm"
|
|
]
|
|
}
|
|
]
|
|
} |