-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@cap-js-community/tree-sitter-cds",
"version": "2.0.0",
"description": "tree-sitter grammar for SAP CAP CDS",
"main": "bindings/node",
"types": "bindings/node",
"author": "Andre Meyering <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/cap-js-community/tree-sitter-cds"
},
"license": "Apache-2.0",
"keywords": [
"CAP",
"CDS",
"parser",
"lexer",
"tree-sitter"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"dependencies": {
"node-addon-api": "^8.3.0",
"node-gyp-build": "^4.8.4"
},
"peerDependencies": {
"tree-sitter": "^0.21.0 || ^0.22.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"eslint": "^9.20.0",
"prebuildify": "^6.0.1",
"tree-sitter-cli": "^0.24.7"
},
"scripts": {
"build": "npx tree-sitter generate && node-gyp configure && node-gyp build",
"install": "node-gyp-build",
"prestart": "npx tree-sitter build --wasm",
"start": "npx tree-sitter playground",
"playground": "npm run build && npm run prestart && npm run start",
"lint": "eslint .",
"log:versions": "npx tree-sitter --version",
"test": "npx tree-sitter test",
"test:all": "npm run test && npm run test:node && npm run test:queries && npm run test:shellcheck",
"test:node": "node --test bindings/node/*_test.js",
"test:queries": "./tools/checks/test_queries.sh",
"test:shellcheck": "./tools/checks/run_shellcheck.sh",
"test:update": "npx tree-sitter test --update"
},
"engines": {
"node": ">=18.0.0"
}
}