-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "lambda-authorizers",
"version": "1.0.0",
"private": true,
"description": "AWS lambda authorizers.",
"scripts": {
"test": "jest",
"lint": "eslint 'src/**/*.js'",
"lint:format": "npm run lint -- --fix",
"sls:debug": "serverless print"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstandfm/lambda-authorizers.git"
},
"author": "Daniël Illouz <[email protected]> (https://www.danillouz.dev/)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/upstandfm/lambda-authorizers/issues"
},
"homepage": "https://github.com/upstandfm/lambda-authorizers#readme",
"lint-staged": {
"src/**/*.{js,json,md}": "npm run lint:format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"serverless": "^1.62.0"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.2"
}
}