-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
53 lines (53 loc) · 2.39 KB
/
deno.json
File metadata and controls
53 lines (53 loc) · 2.39 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@donb/utils",
"version": "0.1.0",
"license": "MIT",
"exports": {
".": "./src/mod.ts",
"./arrays": "./src/arrays/mod.ts",
"./arrays/best-match": "./src/arrays/BestMatch.ts",
"./arrays/find-string-best-match": "./src/arrays/findStringBestMatch.ts",
"./arrays/find-max-digit-sequence": "./src/arrays/findMaxDigitSequence.ts",
"./arrays/match": "./src/arrays/match.ts",
"./arrays/sort": "./src/arrays/sort.ts",
"./fs": "./src/fs/mod.ts",
"./fs/file-extension": "./src/fs/FileExtension.ts",
"./fs/is-valid-dir-entry": "./src/fs/isValidDirEntry.ts",
"./fs/read-dir-sync-with-types": "./src/fs/readDirSyncWithTypes.ts",
"./fs/read-dir-with-types": "./src/fs/readDirWithTypes.ts",
"./numbers": "./src/numbers/mod.ts",
"./numbers/to-padded": "./src/numbers/toPadded.ts",
"./propchecker": "./src/propchecker/mod.ts",
"./propchecker/is-non-nullable": "./src/propchecker/isNonNullable.ts",
"./propchecker/is-of-type": "./src/propchecker/isOfType.ts",
"./propchecker/property": "./src/propchecker/Property.ts",
"./propchecker/property-params": "./src/propchecker/PropertyParams.ts",
"./propchecker/property-required-type-error": "./src/propchecker/PropertyRequiredTypeError.ts",
"./propchecker/property-type-error": "./src/propchecker/PropertyTypeError.ts",
"./propchecker/value-found": "./src/propchecker/ValueFound.ts",
"./strings": "./src/strings/mod.ts",
"./strings/match-chars": "./src/strings/matchChars.ts",
"./strings/match-chars-unique": "./src/strings/matchCharsUnique.ts",
"./strings/match-substrings": "./src/strings/matchSubstrings.ts",
"./strings/stringify-all": "./src/strings/stringifyAll.ts",
"./types": "./src/types/mod.ts",
"./types/class": "./src/types/Class.ts",
"./types/constructor": "./src/types/Constructor.ts",
"./types/iterables-with-callbacks": "./src/types/IterablesWithCallbacks.ts",
"./types/key": "./src/types/Key.ts",
"./types/primitive-types": "./src/types/PrimitiveTypes.ts",
"./types/type": "./src/types/Type.ts",
"./types/value": "./src/types/Value.ts"
},
"publish": {
"include": ["src", "LICENSE", "README.md"]
},
"tasks": {
"test": "deno test --coverage -R=tests/fs/dir",
"doc": "deno doc --html --name=@donb/utils ./src/**/mod.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.17",
"@std/path": "jsr:@std/path@^1.1.4"
}
}