-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.35 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.35 KB
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
{
"name": "@amzn/custom-authorizer",
"version": "4.0.2",
"description": "This lambda function is used as a custom REQUEST authorizer for APIs",
"main": "rest-handler.ts",
"scripts": {
"test": "jest --coverage --silent --verbose",
"test-debug": "jest --coverage",
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf node_modules",
"clean-dev": "rm -rf node_modules && npm i --omit=dev",
"code-linter-js": "./node_modules/eslint/bin/eslint.js lambda --ext .js",
"code-linter-ts": "./node_modules/eslint/bin/eslint.js bin lib --ext .ts",
"code-linter": "npm run code-linter-ts && npm run code-linter-js",
"code-formatter": "prettier --config ../../../.prettierrc.yml --ignore-path ../../../.prettierignore --write '**/*.{js,ts,json,css,md}'"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/solutions"
},
"license": "Apache-2.0",
"dependencies": {
"aws-jwt-verify": "^4.0.1",
"jwt-decode": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}