forked from auth0/node-oauth2-jwt-bearer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "express-oauth2-jwt-bearer",
"description": "Authentication middleware for Express.js that validates JWT bearer access tokens.",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest test --coverage",
"lint": "eslint --fix --ext .ts ./src",
"prebuild": "rimraf dist",
"build": "rollup -c"
},
"files": [
"dist"
],
"author": "Auth0 <[email protected]>",
"homepage": "https://github.com/auth0/node-oauth2-jwt-bearer/tree/main/packages/express-oauth2-jwt-bearer",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.1",
"@tsconfig/node12": "^1.0.9",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^14.18.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"express": "^4.17.1",
"got": "^11.8.5",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"nock": "^13.2.1",
"prettier": "~2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"jose": "^4.3.7"
},
"engines": {
"node": "^12.19.0 || ^14.15.0 || ^16.13.0"
}
}