-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdeno.json
More file actions
31 lines (31 loc) · 839 Bytes
/
deno.json
File metadata and controls
31 lines (31 loc) · 839 Bytes
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
{
"tasks": {
"docs:gen": "npx documentation readme src/serpapi.ts --section=Functions --shallow && deno fmt",
"test": "ENV_TYPE=local deno test tests/ --allow-env --allow-read --allow-net --fail-fast",
"test:watch": "deno task test --watch",
"test:cov": "rm -rf cov_profile && deno task test --coverage=cov_profile && deno coverage cov_profile",
"test:ci": "deno test tests/ --allow-env --allow-read --allow-net",
"npm": "deno run -A scripts/build_npm.ts"
},
"fmt": {
"exclude": ["npm/", "examples/node", "smoke_tests/"]
},
"lint": {
"files": {
"exclude": ["npm/", "examples/node", "smoke_tests/"]
}
},
"test": {
"files": {
"include": ["tests/"]
}
},
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"deno.ns"
]
},
"lock": false
}