-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 984 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 984 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
36
37
38
39
40
41
42
{
"name": "@wasc/jwt-middleware",
"version": "1.0.0",
"description": "Decodes and verifies the current an attached JWT Token and provides the result to the request context",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"author": "Nicolai Schmid <nicolai@schmid.uno>",
"license": "MIT",
"private": false,
"scripts": {
"bump": "standard-version",
"build": "rollup -c",
"dev": "rollup -c -w",
"format": "wasc-tools format",
"lint": "wasc-tools lint",
"count": "wasc-tools count"
},
"files": [
"dist",
"README.md",
"docs"
],
"release": {
"branches": [
"main"
]
},
"dependencies": {
"cookie": "^0.4.0",
"errs": "^0.3.2",
"jsonwebtoken": "^8.2.0",
"node-fetch": "^2.6.0",
"node-jose": "^1.1.3",
"pino": "^7.0.0"
},
"devDependencies": {
"@wasc/tools": "5.13.0",
"rollup": "2.38.5",
"rollup-plugin-commonjs": "10.1.0",
"standard-version": "9.1.0"
}
}