forked from lenkan/deno-amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
33 lines (33 loc) · 1.19 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
{
"name": "@nashaddams/amqp",
"version": "1.1.0",
"exports": "./mod.ts",
"tasks": {
"cache": "deno install --lock deno.lock",
"test": "deno test src",
"test:mod": "deno test -A --unsafely-ignore-certificate-errors=127.0.0.1 test/",
"codegen": "deno task codegen:codec && deno task codegen:types && deno task codegen:constants",
"codegen:codec": "deno run codegen/generate_codec.ts | deno fmt - > src/amqp_codec.ts",
"codegen:types": "deno run codegen/generate_types.ts | deno fmt - > src/amqp_types.ts",
"codegen:constants": "deno run codegen/generate_constants.ts | deno fmt - > src/amqp_constants.ts",
"download:spec": "deno run -W=codegen -N=raw.githubusercontent.com,www.rabbitmq.com codegen/download_spec.ts | deno fmt - > codegen/amqp-rabbitmq-0.9.1.json"
},
"imports": {
"@std/io/buffer": "jsr:@std/io@0.225.0/buffer",
"@std/io/write-all": "jsr:@std/io@0.225.0/write-all",
"@std/io/types": "jsr:@std/io@0.225.0/types",
"@std/streams": "jsr:@std/streams@1.0.8"
},
"publish": {
"include": [
"mod.ts",
"src/**/*.ts",
"LICENSE",
"README.md"
],
"exclude": [
"src/**/*_test.ts"
]
},
"lock": false
}