-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
45 lines (45 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "tree-sitter-swift",
"version": "0.4.3",
"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 <[email protected]>",
"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.18.0",
"tree-sitter-cli": "=0.20.6",
"which": "2.0.2"
},
"devDependencies": {
"node-gyp": "^10.0.1",
"prettier": "2.3.2"
}
}