-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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": "@digicatapult/tsoa-oauth-express",
"version": "0.1.75",
"description": "Authentication handler for TSOA using OAuth2 JWT tokens",
"main": "build/index.js",
"type": "commonjs",
"exports": {
"import": "./build/index.mjs",
"require": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"check": "npm run example:build && tsc -p ./tsconfig.check.json",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --config ./mocharc.json ./src/**/*.test.ts",
"depcheck": "depcheck",
"lint": "prettier -c ./src",
"lint:fix": "npm run lint -- -w",
"example:build": "tsoa spec-and-routes -c ./example/tsoa.json",
"example": "npm run example:build && node --import=@digicatapult/tsimp/import ./example/index.ts"
},
"author": "Digital Catapult",
"license": "Apache-2.0",
"peerDependencies": {
"express": "^4.21.1"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.8",
"chai": "^5.1.2",
"depcheck": "^1.4.7",
"mocha": "^10.8.2",
"mock-jwks": "^3.2.2",
"prettier": "^3.4.1",
"prettier-plugin-organize-imports": "^4.1.0",
"@digicatapult/tsimp": "^2.0.12",
"tsoa": "^6.5.1",
"typescript": "^5.7.2"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0"
}
}