-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "jwt-keys-generator-api",
"version": "1.1.2",
"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": "[email protected]:BackendStack21/jwt-keys-generator-api.git"
},
"keywords": [
"jwt",
"keys",
"signing",
"crypto",
"openssl"
],
"author": "Rolando Santamaria Maso <[email protected]>",
"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": "^4.9.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"axios": "^1.2.2",
"chai": "^4.3.7",
"jsonwebtoken": "^9.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}