-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
41
42
43
44
45
{
"name": "jwt-keys-generator-api",
"version": "1.1.4",
"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": "^6.0.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"axios": "^1.16.1",
"chai": "^6.2.2",
"jsonwebtoken": "^9.0.3",
"mocha": "^11.7.6",
"nyc": "^18.0.0"
},
"overrides": {
"diff": "^9.0.0",
"serialize-javascript": "^7.0.5",
"uuid": "^14.0.0"
}
}