-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
deno.json
49 lines (44 loc) · 1.38 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
42
43
44
45
46
47
48
49
{
"name": "@db/sqlite",
"version": "0.12.0",
"github": "https://github.com/denodrivers/sqlite3",
"exports": "./mod.ts",
"exclude": [
"sqlite",
"scripts"
],
"tasks": {
"test": "deno test --unstable-ffi -A test/test.ts",
"build": "deno run -A scripts/build.ts",
"bench-deno": "deno run -A --unstable-ffi bench/bench_deno.js 50 1000000",
"bench-deno-ffi": "deno run -A --unstable-ffi bench/bench_deno_ffi.js 50 1000000",
"bench-deno-wasm": "deno run -A --unstable-ffi bench/bench_deno_wasm.js 50 1000000",
"bench-node": "node bench/bench_node.js 50 1000000",
"bench-bun": "bun run bench/bench_bun.js 50 1000000",
"bench-bun-ffi": "bun run bench/bench_bun_ffi.js 50 1000000",
"bench-c": "./bench/bench 50 1000000",
"bench-python": "python ./bench/bench_python.py",
"bench:northwind": "deno bench -A --unstable-ffi bench/northwind/deno.js",
"bench-wasm:northwind": "deno run -A --unstable-ffi bench/northwind/deno_wasm.js",
"bench-node:northwind": "node bench/northwind/node.mjs",
"bench-bun:northwind": "bun run bench/northwind/bun.js"
},
"fmt": {
"exclude": [
"sqlite"
]
},
"lint": {
"rules": {
"exclude": [
"camelcase",
"no-explicit-any"
],
"include": [
"explicit-function-return-type",
"eqeqeq",
"explicit-module-boundary-types"
]
}
}
}