forked from andyburke/autonomous.contact
feature: add a map
This commit is contained in:
parent
19afb7f9fa
commit
32ed2dfd33
23 changed files with 29839 additions and 130 deletions
30
deno.json
30
deno.json
|
|
@ -11,11 +11,15 @@
|
|||
"test": "DENO_ENV=test FSDB_ROOT=$PWD/tests/data/$(date --iso-8601=seconds) SERVERUS_ROOT=$PWD/public SERVERUS_PUT_PATHS_ALLOWED=./files SERVERUS_DELETE_PATHS_ALLOWED=./files deno test --allow-env --allow-read --allow-write --allow-net --allow-import --trace-leaks --fail-fast tests/"
|
||||
},
|
||||
"test": {
|
||||
"exclude": ["tests/data/"]
|
||||
"exclude": [
|
||||
"tests/data/"
|
||||
]
|
||||
},
|
||||
"compilerOptions": {},
|
||||
"fmt": {
|
||||
"include": ["**/*.ts"],
|
||||
"include": [
|
||||
"**/*.ts"
|
||||
],
|
||||
"options": {
|
||||
"useTabs": true,
|
||||
"lineWidth": 180,
|
||||
|
|
@ -25,22 +29,28 @@
|
|||
}
|
||||
},
|
||||
"lint": {
|
||||
"include": ["**/*.ts"],
|
||||
"include": [
|
||||
"**/*.ts"
|
||||
],
|
||||
"rules": {
|
||||
"tags": ["recommended"],
|
||||
"exclude": ["no-explicit-any"]
|
||||
"tags": [
|
||||
"recommended"
|
||||
],
|
||||
"exclude": [
|
||||
"no-explicit-any"
|
||||
]
|
||||
}
|
||||
},
|
||||
"imports": {
|
||||
"@andyburke/fsdb": "jsr:@andyburke/fsdb@^1.2.4",
|
||||
"@andyburke/lurid": "jsr:@andyburke/lurid@^0.2.0",
|
||||
"@andyburke/serverus": "jsr:@andyburke/serverus@^0.13.0",
|
||||
"@andyburke/serverus": "jsr:@andyburke/serverus@^0.15.0",
|
||||
"@da/bcrypt": "jsr:@da/bcrypt@^1.0.1",
|
||||
"@std/assert": "jsr:@std/assert@^1.0.15",
|
||||
"@std/assert": "jsr:@std/assert@^1.0.16",
|
||||
"@std/encoding": "jsr:@std/encoding@^1.0.10",
|
||||
"@std/fs": "jsr:@std/fs@^1.0.19",
|
||||
"@std/http": "jsr:@std/http@^1.0.21",
|
||||
"@std/fs": "jsr:@std/fs@^1.0.21",
|
||||
"@std/http": "jsr:@std/http@^1.0.23",
|
||||
"@std/media-types": "jsr:@std/media-types@^1.1.0",
|
||||
"@std/path": "jsr:@std/path@^1.1.2"
|
||||
"@std/path": "jsr:@std/path@^1.1.4"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue