-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 939 Bytes
/
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
{
"name": "@mokuteki/jwt",
"version": "1.0.1",
"description": "Generate and decode JSON Web Tokens using symmetric or asymmetric hashing algorithms",
"main": "jwt.js",
"types": "types/jwt.d.ts",
"scripts": {
"test": "node --test test/suits/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mokuteki225/jwt.git"
},
"author": "Vladyslav Kondratiuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/mokuteki225/jwt/issues"
},
"homepage": "https://github.com/mokuteki225/jwt#readme",
"devDependencies": {
"@types/node": "^18.13.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"jwt",
"jsonwebtoken",
"hashing",
"hs256",
"rs256",
"cryptography"
]
}