-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathdeno.json
More file actions
29 lines (29 loc) · 1.03 KB
/
Copy pathdeno.json
File metadata and controls
29 lines (29 loc) · 1.03 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
{
"tasks": {
"docs:gen": "npx documentation readme src/serpapi.ts --section=Functions --shallow && deno fmt",
"test": "deno test tests/ --allow-env --allow-read --allow-write --allow-net",
"test:watch": "deno task test --watch",
"test:cov": "rm -rf cov_profile && deno task test --coverage=cov_profile && deno coverage cov_profile",
"npm": "deno run -A scripts/build_npm.ts"
},
"imports": {
"@deno/dnt": "https://deno.land/x/dnt@0.40.0/mod.ts",
"@std/dotenv": "https://deno.land/std@0.173.0/dotenv/mod.ts",
"@std/testing/asserts": "https://deno.land/std@0.170.0/testing/asserts.ts",
"@std/testing/bdd": "https://deno.land/std@0.170.0/testing/bdd.ts",
"@std/testing/mock": "https://deno.land/std@0.170.0/testing/mock.ts"
},
"fmt": {
"exclude": ["npm/", "examples/node", "smoke_tests/"]
},
"lint": {
"exclude": ["npm/", "examples/node", "smoke_tests/"]
},
"test": {
"include": ["tests/"]
},
"compilerOptions": {
"lib": ["dom", "dom.iterable", "deno.ns"]
},
"lock": false
}