mirror of https://github.com/Wilfred/difftastic/
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "tree-sitter-swift",
|
|
"version": "0.3.4",
|
|
"description": "A tree-sitter grammar for the Swift programming language.",
|
|
"main": "bindings/node/index.js",
|
|
"scripts": {
|
|
"install": "node scripts/wait-for-tree-sitter.js && tree-sitter generate",
|
|
"postinstall": "node-gyp configure && node-gyp build",
|
|
"ci": "prettier --check grammar.js",
|
|
"test-ci": "./scripts/test-with-memcheck.sh --install-valgrind",
|
|
"test": "./scripts/test-with-memcheck.sh"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/alex-pinkus/tree-sitter-swift.git"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.swift",
|
|
"file-types": [
|
|
"swift"
|
|
],
|
|
"injection-regex": "swift"
|
|
}
|
|
],
|
|
"keywords": [
|
|
"parser",
|
|
"swift"
|
|
],
|
|
"author": "Alex Pinkus <alex.pinkus@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/alex-pinkus/tree-sitter-swift/issues"
|
|
},
|
|
"homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme",
|
|
"dependencies": {
|
|
"nan": "^2.15.0",
|
|
"tree-sitter-cli": "=0.20.6",
|
|
"which": "2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"node-gyp": "^8.4.1",
|
|
"prettier": "2.3.2"
|
|
}
|
|
}
|