-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 911 Bytes
/
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
{
"name": "express-oauth-jwt",
"version": "2.0.1",
"description": "Middleware for Express to secure endpoints with OAuth JWT Bearer tokens",
"homepage": "https://github.com/curityio/express-oauth-jwt",
"repository": "curityio/express-oauth-jwt",
"keywords": [
"oauth",
"jwt",
"jwks",
"jws",
"express",
"oauth2"
],
"main": "lib/index.js",
"types": "types/index.d.ts",
"directories": {
"lib": "lib",
"test": "test",
"example": "example"
},
"scripts": {
"test": "ava",
"example": "node example/server.js"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"author": "Curity AB",
"license": "Apache-2.0",
"dependencies": {
"jose": "^4.14.4"
},
"devDependencies": {
"express": "^4.18.2",
"@types/express": "^4.17.17",
"ava": "^4.3.3",
"sinon": "^14.0.1"
},
"engines": {
"node": ">=10.13.0"
}
}