-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathdeno.json
More file actions
25 lines (25 loc) · 1.22 KB
/
deno.json
File metadata and controls
25 lines (25 loc) · 1.22 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
{
"tasks": {
"test": "deno test --allow-read --no-check internal/distribution-tests/src/deno.test.ts"
},
"imports": {
"@otplib/core": "./packages/core/dist/index.js",
"@otplib/hotp": "./packages/hotp/dist/index.js",
"@otplib/totp": "./packages/totp/dist/index.js",
"@otplib/uri": "./packages/uri/dist/index.js",
"otplib": "./packages/otplib/dist/index.js",
"@otplib/plugin-crypto-noble": "./packages/plugin-crypto-noble/dist/index.js",
"@otplib/plugin-crypto-node": "./packages/plugin-crypto-node/dist/index.js",
"@otplib/plugin-crypto-web": "./packages/plugin-crypto-web/dist/index.js",
"@otplib/plugin-base32-scure": "./packages/plugin-base32-scure/dist/index.js",
"@repo/testing": "./internal/testing/src/index.ts",
"@noble/hashes/hmac.js": "npm:@noble/hashes@^2.0.1/hmac.js",
"@noble/hashes/legacy.js": "npm:@noble/hashes@^2.0.1/legacy.js",
"@noble/hashes/sha2.js": "npm:@noble/hashes@^2.0.1/sha2.js",
"@noble/hashes/utils.js": "npm:@noble/hashes@^2.0.1/utils.js",
"@scure/base": "npm:@scure/base@^2.0.0",
"@std/expect": "https://deno.land/[email protected]/expect/mod.ts",
"@std/testing/bdd": "https://deno.land/[email protected]/testing/bdd.ts"
},
"nodeModulesDir": "auto"
}