-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 888 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 888 Bytes
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
{
"name": "easy-jwt-auth",
"version": "1.0.8",
"description": "A package to help you deal with jsonwebtoken easily!",
"repository": {
"type": "git",
"url": "git+https://github.com/imabhinavdev/easy-jwt-auth.git"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"homepage": "https://imabhinavdev.github.io/easy-jwt-auth/",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c"
},
"keywords": [
"easy-jwt-auth"
],
"type": "module",
"author": "Abhinav Singh (imabhinav.dev)",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"minimatch": "^10.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.18.1"
}
}