-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "purejwt",
"version": "0.1.9",
"description": "PureJWT is a lightweight, standalone library for JSON Web Token (JWT) creation, verification, and manipulation. Designed with ease-of-use and security in mind, it removes reliance on third-party libraries, granting developers increased control and transparency over their web token operations. From generating public-private keys to verifying token signatures, PureJWT handles it all in a minimal, straightforward manner.",
"main": "purejwt.js",
"scripts": {
"test": "mocha test.js"
},
"author": "Jon Paul Miles",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codingfriend1/purejwt"
},
"bugs": {
"url": "https://github.com/codingfriend1/purejwt/issues"
},
"homepage": "https://github.com/codingfriend1/purejwt#readme",
"keywords": [
"JWT",
"Tokens",
"JSON Web Tokens",
"Token Generation",
"Token Verification",
"Public-Private Key",
"Cryptography",
"Web Security",
"Node.js",
"Standalone",
"Lightweight",
"Server-side",
"Authentication",
"Authorization",
"Signature Verification",
"Encryption",
"Hashing",
"Asynchronous Algorithms",
"Synchronous Algorithms",
"Web Development",
"Secure Communication"
],
"devDependencies": {
"chai": "^4.3.7",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"fast-jwt": "^3.1.1",
"mocha": "^10.2.0",
"supertest": "^6.3.3"
}
}