-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 2.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "middy-middleware-jwt-auth",
"version": "6.1.0",
"description": "A middy JSON web token authorization middleware inspired by express-jwt.",
"homepage": "",
"license": "MIT",
"author": {
"name": "Daniel Bartholomae",
"email": "[email protected]",
"url": ""
},
"files": [
"lib"
],
"main": "./lib/index.js",
"keywords": [
"middy",
"middleware",
"jwt",
"json web token"
],
"types": "lib/index.d.ts",
"engines": {
"npm": ">= 4.0.0"
},
"private": false,
"dependencies": {
"debug": "^4.1.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"tslib": "^2.0.1"
},
"peerDependencies": {
"@middy/core": ">=2.0.0 < 6.0.0"
},
"directories": {
"docs": "docs",
"example": "examples"
},
"scripts": {
"build": "rimraf ./lib && tsc --project tsconfig.build.json",
"docs": "typedoc",
"pretest": "npm run build",
"release": "semantic-release",
"start": "cd test && serverless offline",
"test": "npm run check-style && npm run lint && npm run test:unit && npm run test:integration && pkg-ok",
"test:integration": "concurrently --kill-others --success first \"cd test && serverless offline\" \"wait-on http://localhost:3000/dev/status && jest -c jest.integration.config.js\"",
"test:unit": "jest",
"check-style": "prettier --check .",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@middy/core": "^5.2.3",
"@middy/http-error-handler": "^5.2.3",
"@middy/http-header-normalizer": "^5.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/aws-lambda": "^8.10.132",
"@types/debug": "^4.1.7",
"@types/http-errors": "^2.0.4",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.7",
"@types/supertest": "^6.0.2",
"codecov": "^3.8.3",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^9.1.0",
"jest": "^29.7.0",
"moment": "^2.30.1",
"pkg-ok": "^3.0.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.0",
"serverless": "^3.38.0",
"serverless-offline": "^13.3.3",
"serverless-webpack": "^5.13.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"typescript-eslint": "^7.7.1",
"wait-on": "^7.2.0",
"webpack": "^5.90.0"
},
"repository": "[email protected]:dbartholomae/middy-middleware-jwt-auth.git"
}