forked from spacebudz/lucid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
15 lines (15 loc) · 824 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"tasks": {
"build": "deno run --allow-env --allow-write --allow-read --allow-net --allow-run build.ts",
"build:core": "cd src/core/libs/cardano_multiplatform_lib && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/a0fec73985b0f0a9120b5077e292963d513795d4/main.ts --out ./; cd ../cardano_message_signing && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/a0fec73985b0f0a9120b5077e292963d513795d4/main.ts --out ./",
"publish": "deno task build && deno task test && npm publish dist",
"test": "deno test --allow-env --allow-read --allow-net tests",
"test:core": "cd src/core/libs/cardano_multiplatform_lib && cargo test; cd ../cardano_message_signing && cargo test"
},
"lint": {
"files": {
"include": ["src/"],
"exclude": ["src/core/"]
}
}
}