-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
52 lines (51 loc) · 1.07 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
50
51
52
{
"imports": {
"assert": "https://deno.land/[email protected]/assert/mod.ts",
"dotenv": "https://deno.land/[email protected]/dotenv/load.ts",
"flags": "https://deno.land/[email protected]/flags/mod.ts"
},
"exclude": [
"**/node_modules/",
"**/out/"
],
"lint": {
"include": [],
"exclude": [],
"rules": {
"tags": [
"recommended"
],
"exclude": [],
"include": []
}
},
"fmt": {
"include": [
"lib/",
"scripts/"
],
"exclude": [],
"useTabs": true,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": false,
"proseWrap": "preserve",
"singleQuote": true
},
"nodeModulesDir": true,
"vendor": false,
"tasks": {
"clean": "rm -r ./npm ; rm -r ./static/out/*",
"npm": "deno run --allow-all ./scripts/build-npm.js",
"test:config": "deno test --allow-read --allow-env --allow-net --filter \"config: \"",
"test:word": "deno test --allow-read --allow-env --allow-net --filter \"word/\"",
"test:words": "deno test --allow-read --allow-env --allow-net --filter \"words/\""
},
"test": {
"include": [
"./lib/tests/*.js"
]
},
"bench": {},
"lock": true
}