-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "tree-sitter-cylc",
"version": "0.2.0",
"description": "Cylc grammar for tree-sitter",
"license": "MIT",
"author": "Elliot Fontaine <[email protected]>",
"main": "index.js",
"types": "bindings/node",
"scripts": {
"install": "node-gyp-build",
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"check-format": "prettier . --check",
"lint": "eslint grammar.js",
"test": "node --test bindings/node/*_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elliotfontaine/tree-sitter-cylc.git"
},
"keywords": [
"tree-sitter",
"incremental",
"parsing",
"cylc"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**",
"*.wasm"
],
"bugs": {
"url": "https://github.com/elliotfontaine/tree-sitter-cylc/issues"
},
"homepage": "https://github.com/elliotfontaine/tree-sitter-cylc#readme",
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.1"
},
"peerDependencies": {
"tree-sitter": "^0.21.1"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prebuildify": "^6.0.1",
"prettier": "^3.3.3",
"tree-sitter-cli": "^0.23.2"
},
"tree-sitter": [
{
"scope": "source.cylc",
"injection-regex": "^cylc$",
"file-types": [
"cylc",
"rc"
],
"highlights": "queries/highlights.scm"
}
],
"eslintConfig": {
"env": {
"commonjs": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
},
"globals": {
"grammar": "readonly",
"seq": "readonly",
"optional": "readonly",
"choice": "readonly",
"repeat": "readonly",
"repeat1": "readonly",
"token": "readonly",
"token.immediate": "readonly",
"field": "readonly",
"alias": "readonly",
"prec": "readonly",
"prec.left": "readonly",
"prec.right": "readonly",
"prec.dynamic": "readonly",
"_": "readonly"
}
}
}