-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
81 lines (81 loc) · 5.38 KB
/
Copy pathdeno.json
File metadata and controls
81 lines (81 loc) · 5.38 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"tasks": {
"build": "deno task version.ts ; deno task docs ; deno task compile",
"version.ts": "deno run --allow-read --allow-write --allow-run --allow-env cmt.ts codemeta.json version.ts",
"compile": "deno task cmt.ts ; deno task cme.ts",
"cmt.ts": "deno compile --allow-read --allow-write --allow-run --allow-env --output ./bin/cmt cmt.ts ;",
"cme.ts": "deno compile --allow-read --allow-write --allow-run --allow-env --output ./bin/cme cme.ts",
"docs": "deno task cmt.1.md ; deno task cme.1.md ; deno task manpages",
"cmt.1.md": "deno run --allow-read --allow-write --allow-run --allow-env cmt.ts --help > cmt.1.md",
"cme.1.md": "deno run --allow-read --allow-write --allow-run --allow-env cme.ts --help > cme.1.md",
"manpages": "deno run --allow-read --allow-write --allow-run ./bldutils/mk_manpage.ts cmt 1",
"website": " deno task index.html ; deno task user_manual.html ; deno task cmt.1.html ; deno task about.html ; deno task INSTALL.html",
"index.html": "deno run --allow-read --allow-write ./bldutils/mk_html.ts README.md index.html",
"user_manual.html": "deno run --allow-read --allow-write ./bldutils/mk_html.ts user_manual.md",
"about.html": "deno run --allow-read --allow-write ./bldutils/mk_html.ts about.md",
"INSTALL.html": "deno run --allow-read --allow-write ./bldutils/mk_html.ts INSTALL.md",
"about.md": "cmt codemeta.json about.md",
"CITATION.cff": "deno run --allow-read --allow-write --allow-run --allow-env cmt.ts codemeta.json CITATION.cff",
"gen-code": "deno task version.ts ; deno task about.md ; deno task CITATION.cff ",
"dist_linux_x86_64": "deno task dist_linux_x86_64_cmt ; deno task dist_linux_x86_64_cme",
"dist_linux_x86_64_cmt": "deno compile --allow-read --allow-write --allow-run --allow-env --output dist/bin/cmt --target x86_64-unknown-linux-gnu cmt.ts",
"dist_linux_x86_64_cme": "deno compile --allow-env --allow-read --allow-write --allow-run --output dist/bin/cme --target x86_64-unknown-linux-gnu cme.ts",
"dist_linux_aarch64": "deno task dist_linux_aarch64_cmt ; deno task dist_linux_aarch64_cme",
"dist_linux_aarch64_cmt": "deno compile --allow-read --allow-write --allow-run --allow-env --output dist/bin/cmt --target aarch64-unknown-linux-gnu cmt.ts",
"dist_linux_aarch64_cme": "deno compile --allow-env --allow-read --allow-write --allow-run --output dist/bin/cme --target aarch64-unknown-linux-gnu cme.ts",
"dist_macos_x86_64": "deno task dist_macos_x86_64_cmt ; deno task dist_macos_x86_64_cme",
"dist_macos_x86_64_cmt": "deno compile --allow-read --allow-write --allow-run --allow-env --output dist/bin/cmt --target x86_64-apple-darwin cmt.ts",
"dist_macos_x86_64_cme": "deno compile --allow-env --allow-read --allow-write --allow-run --output dist/bin/cme --target x86_64-apple-darwin cme.ts",
"dist_macos_aarch64": "deno task dist_macos_aarch64_cmt ; deno task dist_macos_aarch64_cme",
"dist_macos_aarch64_cmt": "deno compile --allow-read --allow-write --allow-run --allow-env --output dist/bin/cmt --target aarch64-apple-darwin cmt.ts",
"dist_macos_aarch64_cme": "deno compile --allow-env --allow-read --allow-write --allow-run --output dist/bin/cme --target aarch64-apple-darwin cme.ts",
"dist_windows_x86_64": "deno task dist_windows_x86_64_cmt ; deno task dist_windows_x86_64_cme",
"dist_windows_x86_64_cmt": "deno compile --allow-read --allow-write --allow-run --allow-env --output dist/bin/cmt.exe --target x86_64-pc-windows-msvc cmt.ts",
"dist_windows_x86_64_cme": "deno compile --allow-env --allow-read --allow-write --allow-run --output dist/bin/cme.exe --target x86_64-pc-windows-msvc cme.ts",
"dist_windows_aarch64": "deno task dist_windows_aarch64_cmt ; deno task dist_windows_aarch64_cme",
"dist_windows_aarch64_cmt": "deno compile --allow-read --allow-write --allow-run --allow-env --output dist/bin/cmt.exe --target aarch64-pc-windows-msvc cmt.ts",
"dist_windows_aarch64_cme": "deno compile --allow-env --allow-read --allow-write --allow-run --output dist/bin/cme.exe --target aarch64-pc-windows-msvc cme.ts",
"test": "deno task codemeta_test.ts ; deno task person_or_organization_test.ts ; deno task transform_test.ts",
"editor_test.ts": "deno test --allow-env --allow-run --allow-read --allow-write test/editor_test.ts",
"codemeta_test.ts": "deno test test/codemeta_test.ts --allow-import --allow-read",
"person_or_organization_test.ts": "deno test --allow-read test/person_or_organization_test.ts",
"transform_test.ts": "deno test --allow-read --allow-run test/transform_test.ts",
"test-all": "deno test --reload --coverage --allow-net --allow-import --allow-env --allow-run --allow-read --allow-write"
},
"imports": {
"@caltechlibrary/metadatatools": "jsr:@caltechlibrary/metadatatools@^0.0.6",
"@libs/markdown": "jsr:@libs/markdown@^2.0.2",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/cli": "jsr:@std/cli@^1.0.21",
"@std/path": "jsr:@std/path@^1.1.1",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"handlebars": "npm:handlebars@^4.7.8"
},
"lint": {
"exclude": [
"dist/",
"man/",
"pagefind/",
"ancillary/",
"presentations/"
]
},
"check": {
"exclude": [
"dist/",
"man/",
"pagefind/",
"ancillary/",
"presentations/"
]
},
"publish": {
"exclude": [
"dist/",
"man/",
"pagefind/",
"ancillary/",
"presentations/"
]
}
}