-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.1 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
49
50
51
52
53
54
{
"name": "@apoyo/jwt",
"version": "0.2.0",
"description": "Utils and abstractions focused around JWTs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"sideEffects": false,
"author": "Sascha Braun",
"license": "MIT",
"tags": [
"utils",
"jwt"
],
"keywords": [
"utils",
"jwt"
],
"repository": {
"type": "git",
"url": "https://github.com/neoxia/apoyo"
},
"homepage": "https://github.com/neoxia/apoyo/tree/master/packages/jwt",
"scripts": {
"test": "jest --runInBand --passWithNoTests",
"build": "tsup"
},
"devDependencies": {
"@apoyo/std": "^0.0.15",
"@types/jest": "^26.0.23",
"@types/node": "^16.18.0",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"ts-node": "^8.0.2",
"tsup": "^6.1.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@apoyo/std": "^0.0.15"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.1",
"jsonwebtoken": "^9.0.0"
}
}