-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "jwt-lite-2024",
"version": "2.0.0",
"description": "A lightweight npm library to handle jwt tokens",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sugamkuber/jwt-lite.git"
},
"keywords": [
"javascript",
"jwt",
"typescript",
"auth",
"type-safe",
"jwt-token",
"jwt-authentication",
"json-web-token"
],
"author": "sugam kuber",
"license": "MIT",
"bugs": {
"url": "https://github.com/sugamkuber/jwt-lite/issues"
},
"homepage": "https://github.com/sugamkuber/jwt-lite#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node"
},
"files": [
"dist"
]
}