-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.04 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
46
47
48
49
{
"name": "jwtz",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"keywords": [
"jwt",
"authentication",
"refresh-token",
"rotation",
"security",
"nodejs"
],
"author": "Albin N J",
"repository": {
"type": "git",
"url": "https://github.com/iamalbinnj/jwtZ"
},
"bugs": {
"url": "https://github.com/iamalbinnj/jwtZ/issues"
},
"discussion": "https://github.com/iamalbinnj/jwtZ/discussions",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"jsonwebtoken": "^9.0.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.2.3",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}