forked from ram02z/tree-sitter-fish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
46
47
{
"name": "tree-sitter-fish",
"version": "3.5.1",
"description": "Fish tree-sitter grammar",
"main": "bindings/node",
"scripts": {
"build": "tsc -p tsconfig.json && tree-sitter generate",
"build:wasm": "npm run build && tree-sitter build-wasm",
"start": "npm run build:wasm && tree-sitter web-ui",
"test": "tree-sitter test",
"test:watch": "nodemon --ext ts,txt,fish,scm --watch grammar.ts --watch test --watch queries --exec 'npm run build && npm run test'",
"test:examples": "bash ./scripts/test_shared.sh",
"test:dev": "nodemon --ext fish --watch test.fish --watch grammar.ts --exec 'npm run build && tree-sitter parse ./test.fish -d'"
},
"keywords": [
"tree-sitter",
"fish",
"shell",
"parser"
],
"author": "Krnik",
"dependencies": {
"nan": "^2.14.2"
},
"devDependencies": {
"@types/node": "^18.11.9",
"nodemon": "^2.0.7",
"tree-sitter-cli": "^0.20.7",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ram02z/tree-sitter-fish.git"
},
"homepage": "https://github.com/ram02z/tree-sitter-fish#readme",
"bugs": {
"url": "https://github.com/ram02z/tree-sitter-fish/issues"
},
"tree-sitter": [
{
"scope": "source.fish",
"file-types": [
"fish"
]
}
]
}