-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
90 lines (90 loc) · 1.93 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
{
"name": "tree-sitter-dart",
"version": "1.0.0",
"description": "Dart grammar attempt for tree-sitter",
"main": "bindings/node",
"types": "bindings/node",
"keywords": [
"tree-sitter",
"parser",
"dart"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"contributors": [
"Benjamin Sobel",
"Tim Whiting <[email protected]>",
"Stephan Seitz <[email protected]>",
"Martin Jambon <[email protected]>",
"Kyosuke Takayama @ktakayama",
"Han Wang @hanwangio",
"@akinsho",
"@seb-bl"
],
"license": "ISC",
"dependencies": {
"node-addon-api": "^7.1.0",
"node-gyp-build": "^4.8.0"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"node-gyp": "^10.2.0",
"npm-watch": "^0.13.0",
"tree-sitter-cli": "^0.22.6",
"prebuildify": "^6.0.0"
},
"watch": {
"test": {
"patterns": [
"corpus"
],
"extensions": "dart",
"quiet": true
},
"build-test": {
"patterns": [
"./"
],
"extensions": [
"js",
"scm",
"txt"
],
"quiet": true
}
},
"scripts": {
"build_init": "tree-sitter generate && node-gyp configure && node-gyp build",
"build": "tree-sitter generate && node-gyp build",
"test": "tree-sitter test",
"build-test": "tree-sitter generate && node-gyp build && tree-sitter test",
"watch-test": "npm-watch test",
"watch-grammar": "npm-watch build-test",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
},
"tree-sitter": [
{
"scope": "source.dart",
"file-types": [
"dart"
],
"highlights": "queries/highlights.scm",
"tags": ["queries/tags.scm"],
"injection-regex": "dart"
}
]
}