-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
21 lines (20 loc) · 935 Bytes
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// std
export * as qs from 'https://deno.land/[email protected]/node/querystring.ts'
export * as path from 'https://deno.land/[email protected]/path/mod.ts'
export { Sha1 } from 'https://deno.land/[email protected]/hash/sha1.ts'
export { Md5 } from 'https://deno.land/[email protected]/hash/md5.ts'
export { Tar } from 'https://deno.land/[email protected]/archive/tar.ts'
// third party
import Ask from 'https://raw.githubusercontent.com/acathur/ask/1.0.5/mod.ts'
import minimatch from 'https://deno.land/x/[email protected]/index.js'
import getUsername from 'https://deno.land/x/[email protected]/mod.ts'
export * as semver from 'https://deno.land/x/[email protected]/mod.ts'
export { Command } from 'https://cdn.depjs.com/[email protected]/mod.ts'
export { exec } from 'https://cdn.depjs.com/[email protected]/mod.ts'
export { getMac } from 'https://cdn.depjs.com/[email protected]/mod.ts'
export { Store } from 'https://cdn.depjs.com/[email protected]/mod.ts'
export {
Ask,
getUsername,
minimatch
}