-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "jwt-keys-generator-api",
"version": "1.1.3",
"description": "A simple and secure JSON Web Token (JWT) signing/verification keys generator that uses OpenSSL.",
"main": "index.js",
"private": true,
"scripts": {
"test": "npx nyc --check-coverage --lines 85 node ./node_modules/mocha/bin/mocha test/*.test.js",
"format": "npx standard --fix"
},
"repository": {
"type": "git",
"url": "git@github.com:BackendStack21/jwt-keys-generator-api.git"
},
"keywords": [
"jwt",
"keys",
"signing",
"crypto",
"openssl"
],
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BackendStack21/jwt-keys-generator-api/issues"
},
"homepage": "https://github.com/BackendStack21/jwt-keys-generator-api#readme",
"dependencies": {
"async-openssl": "1.0.3",
"restana": "^5.0.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"axios": "^1.7.9",
"chai": "^4.3.7",
"jsonwebtoken": "^9.0.2",
"mocha": "^11.1.0",
"nyc": "^17.1.0"
}
}