-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.03 KB
/
package.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
{
"name": "@aimoda/random-id-hmac-bech32m",
"version": "0.0.9",
"description": "A utility library for generating and verifying random IDs with HMAC in Bech32m format",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/aimoda/random-id-hmac-bech32m.git"
},
"keywords": [
"random",
"random ID",
"random IDs",
"tokens",
"token",
"HMAC",
"Bech32m",
"utility",
"library",
"crypto",
"secure",
"sha-512",
"sha-1",
"sha512",
"sha1"
],
"author": "ai.moda <npm@ai.moda>",
"license": "BSD-4-Clause",
"dependencies": {
"bech32": "^2.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230228.0",
"@types/jest": "^27.0.1",
"jest": "^27.0.6",
"ts-jest": "^29.0.3"
},
"publishConfig": {
"access": "public"
},
"publish": {
"access": "public"
}
}