-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "@kinde-oss/kinde-node-auth-utils",
"version": "0.0.7",
"description": "Kinde JWT verification utilities",
"author": {
"name": "Kinde",
"email": "[email protected]",
"url": "https://kinde.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kinde-oss/kinde-node-auth-utils"
},
"bugs": "https://github.com/kinde-oss/kinde-node-auth-utils",
"homepage": "https://kinde.com",
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.28.0",
"base64url": "^3.0.1",
"jwk-to-pem": "^2.0.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-json": "^4.1.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"rollup": "^2.70.0"
},
"keywords": [
"Kinde",
"login",
"json web token",
"JWT",
"API authentication"
],
"files": [
"dist"
],
"private": false
}