-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
41 lines (41 loc) · 1.52 KB
/
deno.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
{
"name": "@molt/action",
"version": "1.0.2",
"exports": "./src/main.ts",
"publish": {
"include": [
"README.md",
"LICENSE",
"src/*.ts"
],
"exclude": [
"src/*_test.ts"
]
},
"imports": {
"@actions/core": "npm:@actions/core@^1.10.1",
"@actions/github": "npm:@actions/github@^6.0.0",
"@core/match": "jsr:@core/match@^0.3.1",
"@core/unknownutil": "jsr:@core/unknownutil@^4.0.0",
"@molt/core": "jsr:@molt/core@^0.19.8",
"@molt/integration": "jsr:@molt/integration@^0.19.0",
"@molt/lib": "jsr:@molt/lib@^0.19.0",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/collections": "jsr:@std/collections@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/jsonc": "jsr:@std/jsonc@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/semver": "jsr:@std/semver@^1.0.0",
"dedent": "npm:dedent@^1.5.3"
},
"tasks": {
"act": "act -j integration",
"bump": "deno run --allow-read=. --allow-write=./deno.json,./action.yml --allow-run=git ./tools/bump.ts",
"cache": "deno cache ./src/*.ts",
"check": "deno check **/*.ts",
"pre-commit": "deno fmt && deno lint && deno task check && deno task test",
"test": "deno test --allow-env --allow-read --allow-write=. --allow-net --allow-run=deno --env --no-check --unstable-kv",
"update": "deno run --unstable-kv --allow-env --allow-read --allow-write --allow-net --allow-run=git,deno jsr:@molt/cli",
"update:commit": "deno task -q update --commit --pre-commit=check,test --prefix 'chore:'"
}
}