-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.58 KB
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
{
"name": "tree-sitter-a2ml",
"version": "0.1.0",
"description": "Tree-sitter grammar for the A2ML (Attestation & Automation Markup Language) format",
"license": "PMPL-1.0-or-later",
"author": "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
"repository": {
"type": "git",
"url": "https://github.com/hyperpolymath/tree-sitter-a2ml.git"
},
"homepage": "https://github.com/hyperpolymath/tree-sitter-a2ml",
"bugs": {
"url": "https://github.com/hyperpolymath/tree-sitter-a2ml/issues"
},
"keywords": [
"tree-sitter",
"parser",
"a2ml",
"syntax-highlighting",
"attestation",
"contractiles"
],
"main": "bindings/node",
"types": "bindings/node/index.d.ts",
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**",
"*.wasm"
],
"dependencies": {
"node-addon-api": "^8.3.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"prebuildify": "^6.0.1",
"tree-sitter-cli": "^0.25.10"
},
"peerDependencies": {
"tree-sitter": "^0.22.4"
},
"peerDependenciesMeta": {
"tree-sitter": {
"optional": true
}
},
"scripts": {
"generate": "tree-sitter generate",
"build": "tree-sitter generate && node-gyp build",
"test": "tree-sitter test",
"parse": "tree-sitter parse",
"install": "node-gyp-build"
},
"tree-sitter": [
{
"scope": "source.a2ml",
"injection-regex": "^a2ml$",
"file-types": [
"a2ml"
],
"highlights": "queries/highlights.scm",
"locals": "queries/locals.scm"
}
]
}